forked from odpi/egeria
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Sample Configurations.postman_collection.json
542 lines (542 loc) · 17 KB
/
Sample Configurations.postman_collection.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
{
"info": {
"_postman_id": "47c559f1-5ce0-4bc9-a887-be6315059a61",
"name": "Sample Configurations",
"description": "This postman collection creates the sample-configs included in the omag-server-platform assembly.",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "28623075"
},
"item": [
{
"name": "Set up the plain text configuration store",
"item": [
{
"name": "Set Configuration Document Store Connection",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"class\": \"Connection\",\n \"connectorType\": {\n \"class\": \"ConnectorType\",\n \"connectorProviderClassName\": \"org.odpi.openmetadata.adapters.adminservices.configurationstore.file.FileBasedServerConfigStoreProvider\"\n },\n \"endpoint\": {\n \"class\": \"Endpoint\",\n \"address\": \"data/servers/{0}/config/{0}.config\"\n }\n}"
},
"url": {
"raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/stores/connection",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"admin-services",
"users",
"{{adminUserId}}",
"stores",
"connection"
]
},
"description": "Overrides the default connector that stores the configuration documents in a plain text file.\nThe request body is a Connection object that is used to create and configure the connector.\nThis call is preconfigured to switch the store to using the encrypted configuration document store."
},
"response": []
}
],
"description": "This command is run immediately after the platform is started to set up the plain text configuration store. The amin is to distribute the sample config in plain text. The configurations will be encrypted the first time they are loaded in the platform."
},
{
"name": "Configure simple-metadata-store",
"item": [
{
"name": "Set local server user Id",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/simple-metadata-store/server-user-id?id=simplemdsnpa",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"admin-services",
"users",
"{{adminUserId}}",
"servers",
"simple-metadata-store",
"server-user-id"
],
"query": [
{
"key": "id",
"value": "simplemdsnpa"
}
]
},
"description": "Set up the user Id that this server should use on open metadata requests when it is processing events (and consequently there is no end user id to use)."
},
"response": []
},
{
"name": "Enable the in-memory repository",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/simple-metadata-store/local-repository/mode/in-memory-repository",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"admin-services",
"users",
"{{adminUserId}}",
"servers",
"simple-metadata-store",
"local-repository",
"mode",
"in-memory-repository"
]
},
"description": "Set up the local reposiotry to use the in-memory implementation."
},
"response": []
},
{
"name": "Enable the Open Metadata Access Services (OMASs)",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/simple-metadata-store/access-services/no-topics",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"admin-services",
"users",
"{{adminUserId}}",
"servers",
"simple-metadata-store",
"access-services",
"no-topics"
]
},
"description": "Turn on a specific registered Open Metadata Access Services (OMAS).\n\nChange the value of the {{access-service}} variable in the environment to be the URL version of the name. Typically this is done by taking the access service name, dropping \"OMAS\", change to lower-case and link two words with a dash \"-\". For example, Asset Owner OMAS, would have a url name of asset-owner."
},
"response": []
},
{
"name": "Get simple-metadata-store's configuration document",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/simple-metadata-store/configuration",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"admin-services",
"users",
"{{adminUserId}}",
"servers",
"simple-metadata-store",
"configuration"
]
},
"description": "Retrieve the configuration document for the named server."
},
"response": []
}
],
"description": "This folder contains the commands to configure the Metadata Access Store called simple-metadata-store. This version of the server is configured without event support."
},
{
"name": "Configure active-metadata-store - with kafka",
"item": [
{
"name": "Set local server user Id",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/active-metadata-store/server-user-id?id=activemdsnpa",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"admin-services",
"users",
"{{adminUserId}}",
"servers",
"active-metadata-store",
"server-user-id"
],
"query": [
{
"key": "id",
"value": "activemdsnpa"
}
]
},
"description": "Set up the user Id that this server should use on open metadata requests when it is processing events (and consequently there is no end user id to use)."
},
"response": []
},
{
"name": "Set up event bus",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"producer\": {\n \"bootstrap.servers\": \"{{kafkaep}}\"\n },\n \"consumer\":{\n \"bootstrap.servers\": \"{{kafkaep}}\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/active-metadata-store/event-bus",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"admin-services",
"users",
"{{adminUserId}}",
"servers",
"active-metadata-store",
"event-bus"
]
},
"description": "Set up the common properties needed to call your event bus. These properties are passed in the request body.\nThis request just sets up the defaults that will be incorporated into any future configuration that includes an event bus topic."
},
"response": []
},
{
"name": "Enable the in-memory repository",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/active-metadata-store/local-repository/mode/in-memory-repository",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"admin-services",
"users",
"{{adminUserId}}",
"servers",
"active-metadata-store",
"local-repository",
"mode",
"in-memory-repository"
]
},
"description": "Set up the local reposiotry to use the in-memory implementation."
},
"response": []
},
{
"name": "Enable the Open Metadata Access Services (OMASs) with topics",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/active-metadata-store/access-services",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"admin-services",
"users",
"{{adminUserId}}",
"servers",
"active-metadata-store",
"access-services"
]
},
"description": "Turn on a specific registered Open Metadata Access Services (OMAS).\n\nChange the value of the {{access-service}} variable in the environment to be the URL version of the name. Typically this is done by taking the access service name, dropping \"OMAS\", change to lower-case and link two words with a dash \"-\". For example, Asset Owner OMAS, would have a url name of asset-owner."
},
"response": []
},
{
"name": "Get active-metadata-store's configuration document",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/active-metadata-store/configuration",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"admin-services",
"users",
"{{adminUserId}}",
"servers",
"active-metadata-store",
"configuration"
]
},
"description": "Retrieve the configuration document for the named server."
},
"response": []
}
],
"description": "This folder contains the commands to configure the Metadata Access Store called active-metadata-store. This version of the server is configured with event support that relies on Apache Kafka."
},
{
"name": "Configure integration-daemon server",
"item": [
{
"name": "Set local server user Id",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/integration-daemon/server-user-id?id=intgdaemonnpa",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"admin-services",
"users",
"{{adminUserId}}",
"servers",
"integration-daemon",
"server-user-id"
],
"query": [
{
"key": "id",
"value": "intgdaemonnpa"
}
]
},
"description": "Set up the user Id that this server should use on open metadata requests when it is processing events (and consequently there is no end user id to use)."
},
"response": []
},
{
"name": "Configure the Files Integrator OMIS",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"class\": \"IntegrationServiceRequestBody\",\n \"omagserverPlatformRootURL\": \"{{baseURL}}\",\n \"omagserverName\": \"active-metadata-store\",\n \"integrationConnectorConfigs\": [\n {\n \"class\": \"IntegrationConnectorConfig\",\n \"connectorName\": \"FilesCataloguer\",\n \"connectorUserId\": \"filecatgnpa\",\n \"connection\": {\n \"class\": \"Connection\",\n \"connectorType\": {\n \"class\": \"ConnectorType\",\n \"connectorProviderClassName\": \"org.odpi.openmetadata.adapters.connectors.integration.basicfiles.DataFilesMonitorIntegrationProvider\"\n },\n \"endpoint\": {\n \"class\": \"Endpoint\",\n \"address\": \"../opt/sample-data/data-files\"\n }\n },\n \"metadataSourceQualifiedName\": \"FileSystem:sample-files\",\n \"refreshTimeInterval\": \"15\",\n \"usesBlockingCalls\": \"false\",\n \"permittedSynchronization\": \"FROM_THIRD_PARTY\"\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/integration-daemon/integration-services/files-integrator",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"admin-services",
"users",
"{{adminUserId}}",
"servers",
"integration-daemon",
"integration-services",
"files-integrator"
]
},
"description": "Add details of the metadata server to call and the connectors to run."
},
"response": []
},
{
"name": "Get integration-daemon's configuration document",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/servers/integration-daemon/configuration",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"admin-services",
"users",
"{{adminUserId}}",
"servers",
"integration-daemon",
"configuration"
]
},
"description": "Retrieve the configuration document for the named server."
},
"response": []
}
],
"description": "This folder describes how to set up the nanny server. This is an integration daemon and runs the nanny connectors."
},
{
"name": "Start Servers",
"item": [
{
"name": "Start simple-metadata-store server - using stored configuration",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "{{baseURL}}/open-metadata/platform-services/users/{{adminUserId}}/server-platform/servers/simple-metadata-store/instance",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"platform-services",
"users",
"{{adminUserId}}",
"server-platform",
"servers",
"simple-metadata-store",
"instance"
]
},
"description": "Activate a server on the OMAG Server Platform. Use the configuration document found in the configuration document store."
},
"response": []
},
{
"name": "Start active-metadata-store server - using stored configuration",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "{{baseURL}}/open-metadata/platform-services/users/{{adminUserId}}/server-platform/servers/active-metadata-store/instance",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"platform-services",
"users",
"{{adminUserId}}",
"server-platform",
"servers",
"active-metadata-store",
"instance"
]
},
"description": "Activate a server on the OMAG Server Platform. Use the configuration document found in the configuration document store."
},
"response": []
},
{
"name": "Start integration-daemon server - using stored configuration",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": ""
},
"url": {
"raw": "{{baseURL}}/open-metadata/platform-services/users/{{adminUserId}}/server-platform/servers/integration-daemon/instance",
"host": [
"{{baseURL}}"
],
"path": [
"open-metadata",
"platform-services",
"users",
"{{adminUserId}}",
"server-platform",
"servers",
"integration-daemon",
"instance"
]
},
"description": "Activate a server on the OMAG Server Platform. Use the configuration document found in the configuration document store."
},
"response": []
},
{
"name": "Get integration-daemon status",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseURL}}/servers/integration-daemon/open-metadata/integration-daemon/users/{{user}}/status",
"host": [
"{{baseURL}}"
],
"path": [
"servers",
"integration-daemon",
"open-metadata",
"integration-daemon",
"users",
"{{user}}",
"status"
]
},
"description": "Retrieves the status of the connectors running in the Integration Daemon"
},
"response": []
}
],
"description": "This folder contains the requests to start up the sample servers."
}
]
}