@itentialopensource/adapter-infoblox 1.9.3 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AUTH.md +39 -0
- package/BROKER.md +199 -0
- package/CALLS.md +169 -0
- package/CHANGELOG.md +55 -52
- package/CODE_OF_CONDUCT.md +12 -17
- package/CONTRIBUTING.md +88 -74
- package/ENHANCE.md +69 -0
- package/PROPERTIES.md +641 -0
- package/README.md +225 -502
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +11 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +1261 -149
- package/adapterBase.js +1022 -246
- package/entities/.generic/action.json +110 -5
- package/entities/.generic/schema.json +6 -1
- package/entities/DNSProperties/action.json +1 -1
- package/entities/DNSProperties/mockdatafiles/getGridDnsData.json +3 -0
- package/entities/ExtensibleAttributes/action.json +63 -0
- package/entities/ExtensibleAttributes/schema.json +4 -1
- package/entities/NetworkViewsAndDNSViews/action.json +63 -0
- package/entities/NetworkViewsAndDNSViews/schema.json +4 -1
- package/entities/Networks/action.json +42 -0
- package/entities/Networks/requestSchema.json +3 -1
- package/entities/Networks/responseSchema.json +3 -1
- package/entities/Services/action.json +21 -0
- package/entities/Services/schema.json +1 -0
- package/error.json +12 -0
- package/package.json +20 -13
- package/pronghorn.json +1201 -500
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +436 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +10 -0
- package/report/updateReport1646675873230.json +95 -0
- package/report/updateReport1653911824054.json +120 -0
- package/sampleProperties.json +94 -2
- package/test/integration/adapterTestBasicGet.js +2 -2
- package/test/integration/adapterTestIntegration.js +390 -191
- package/test/unit/adapterBaseTestUnit.js +35 -27
- package/test/unit/adapterTestUnit.js +1112 -214
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/basicGet.js +1 -14
- package/utils/entitiesToDB.js +179 -0
- package/utils/modify.js +1 -1
- package/utils/packModificationScript.js +1 -1
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +3 -0
- package/utils/removeHooks.js +20 -0
- package/utils/tbScript.js +43 -22
- package/utils/tbUtils.js +126 -29
- package/utils/testRunner.js +16 -16
- package/utils/troubleshootingAdapter.js +2 -26
package/pronghorn.json
CHANGED
|
@@ -9,384 +9,648 @@
|
|
|
9
9
|
"pronghorn_admin"
|
|
10
10
|
],
|
|
11
11
|
"methods": [
|
|
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
|
-
|
|
12
|
+
{
|
|
13
|
+
"name": "iapUpdateAdapterConfiguration",
|
|
14
|
+
"summary": "Updates the adapter configuration",
|
|
15
|
+
"description": "Updates the adapter configuration file with the provided changes",
|
|
16
|
+
"input": [
|
|
17
|
+
{
|
|
18
|
+
"name": "configFile",
|
|
19
|
+
"type": "string",
|
|
20
|
+
"info": "The name of the file to change",
|
|
21
|
+
"required": true,
|
|
22
|
+
"schema": {
|
|
23
|
+
"title": "configFile",
|
|
24
|
+
"type": "string"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "changes",
|
|
29
|
+
"type": "object",
|
|
30
|
+
"info": "JSON object containing the configuration changes",
|
|
31
|
+
"required": true,
|
|
32
|
+
"schema": {
|
|
33
|
+
"title": "changes",
|
|
34
|
+
"type": "object"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "entity",
|
|
39
|
+
"type": "string",
|
|
40
|
+
"info": "The entity in which the changes are being made",
|
|
41
|
+
"required": false,
|
|
42
|
+
"schema": {
|
|
43
|
+
"title": "entity",
|
|
44
|
+
"type": "string"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "type",
|
|
49
|
+
"type": "string",
|
|
50
|
+
"info": "The type of file to change - action, schema, or mock",
|
|
51
|
+
"required": false,
|
|
52
|
+
"schema": {
|
|
53
|
+
"title": "type",
|
|
54
|
+
"type": "string"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "action",
|
|
59
|
+
"type": "string",
|
|
60
|
+
"info": "The action to be changed",
|
|
61
|
+
"required": false,
|
|
62
|
+
"schema": {
|
|
63
|
+
"title": "action",
|
|
64
|
+
"type": "string"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
"output": {
|
|
69
|
+
"name": "result",
|
|
70
|
+
"type": "object",
|
|
71
|
+
"description": "A JSON Object containing status, code and the result",
|
|
72
|
+
"schema": {
|
|
73
|
+
"title": "result",
|
|
74
|
+
"type": "object"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"roles": [
|
|
78
|
+
"admin"
|
|
79
|
+
],
|
|
80
|
+
"route": {
|
|
81
|
+
"verb": "POST",
|
|
82
|
+
"path": "/iapUpdateAdapterConfiguration"
|
|
83
|
+
},
|
|
84
|
+
"task": true
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "iapFindAdapterPath",
|
|
88
|
+
"summary": "Provides the ability to see if a particular API path is supported by the adapter",
|
|
89
|
+
"description": "Provides the ability to see if a particular API path is supported by the adapter",
|
|
90
|
+
"input": [{
|
|
91
|
+
"name": "apiPath",
|
|
92
|
+
"type": "string",
|
|
93
|
+
"info": "The API Path you want to check - make sure to not include base path and version",
|
|
94
|
+
"description": "The API Path you want to check - make sure to not include base path and version",
|
|
95
|
+
"schema": {
|
|
96
|
+
"title": "apiPath",
|
|
97
|
+
"type": "string"
|
|
98
|
+
},
|
|
99
|
+
"required": true
|
|
100
|
+
}],
|
|
101
|
+
"output": {
|
|
102
|
+
"name": "result",
|
|
103
|
+
"type": "object",
|
|
104
|
+
"description": "A JSON Object containing the result",
|
|
105
|
+
"schema": {
|
|
106
|
+
"title": "result",
|
|
107
|
+
"type": "object"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"roles": [
|
|
111
|
+
"admin"
|
|
112
|
+
],
|
|
113
|
+
"route": {
|
|
114
|
+
"verb": "POST",
|
|
115
|
+
"path": "/iapFindAdapterPath"
|
|
116
|
+
},
|
|
117
|
+
"task": true
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "iapSuspendAdapter",
|
|
121
|
+
"summary": "Suspends the adapter",
|
|
122
|
+
"description": "Suspends the adapter",
|
|
123
|
+
"input": [{
|
|
124
|
+
"name": "mode",
|
|
125
|
+
"type": "enum",
|
|
126
|
+
"enumerals": ["pause", "error"],
|
|
127
|
+
"info": "How incoming requests are handled. Defaults to 'pause'",
|
|
128
|
+
"description": "How incoming requests are handled. Defaults to 'pause'",
|
|
129
|
+
"schema": {
|
|
130
|
+
"title": "mode",
|
|
131
|
+
"type": "string"
|
|
132
|
+
},
|
|
133
|
+
"required": false
|
|
134
|
+
}],
|
|
135
|
+
"output": {
|
|
136
|
+
"name": "result",
|
|
137
|
+
"type": "object",
|
|
138
|
+
"description": "A JSON Object containing the adapter suspended status",
|
|
139
|
+
"schema": {
|
|
140
|
+
"title": "result",
|
|
141
|
+
"type": "object"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"roles": [
|
|
145
|
+
"admin"
|
|
146
|
+
],
|
|
147
|
+
"route": {
|
|
148
|
+
"verb": "POST",
|
|
149
|
+
"path": "/iapSuspendAdapter"
|
|
150
|
+
},
|
|
151
|
+
"task": true
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"name": "iapUnsuspendAdapter",
|
|
155
|
+
"summary": "Unsuspends the adapter",
|
|
156
|
+
"description": "Unsuspends the adapter",
|
|
157
|
+
"input": [],
|
|
158
|
+
"output": {
|
|
159
|
+
"name": "result",
|
|
160
|
+
"type": "object",
|
|
161
|
+
"description": "A JSON Object containing the adapter suspended status",
|
|
162
|
+
"schema": {
|
|
163
|
+
"title": "result",
|
|
164
|
+
"type": "object"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"roles": [
|
|
168
|
+
"admin"
|
|
169
|
+
],
|
|
170
|
+
"route": {
|
|
171
|
+
"verb": "POST",
|
|
172
|
+
"path": "/iapUnsuspendAdapter"
|
|
173
|
+
},
|
|
174
|
+
"task": true
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "iapGetAdapterQueue",
|
|
178
|
+
"summary": "Return the requests that are waiting in the queue if throttling is enabled",
|
|
179
|
+
"description": "Return the requests that are waiting in the queue if throttling is enabled",
|
|
180
|
+
"input": [],
|
|
181
|
+
"output": {
|
|
182
|
+
"name": "result",
|
|
183
|
+
"type": "object",
|
|
184
|
+
"description": "A JSON Object containing the adapter queue",
|
|
185
|
+
"schema": {
|
|
186
|
+
"title": "result",
|
|
187
|
+
"type": "object"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"roles": [
|
|
191
|
+
"admin"
|
|
192
|
+
],
|
|
193
|
+
"route": {
|
|
194
|
+
"verb": "POST",
|
|
195
|
+
"path": "/iapGetAdapterQueue"
|
|
196
|
+
},
|
|
197
|
+
"task": true
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"name": "iapTroubleshootAdapter",
|
|
201
|
+
"summary": "Runs troubleshoot script for adapter",
|
|
202
|
+
"description": "Runs troubleshoot script for adapter",
|
|
203
|
+
"input": [
|
|
204
|
+
{
|
|
205
|
+
"name": "props",
|
|
206
|
+
"type": "object",
|
|
207
|
+
"info": "Object containing configuration, healthcheck and auth properties {'connProps':{'host': 'api.service.com', 'base_path': '/', 'protocol': 'http', 'port': 443, 'version': 'v1'},'healthCheckEndpoint': '/healthcheck', 'auth': {'auth_method': 'no authentication', 'username': 'username', 'password': 'password'}}",
|
|
208
|
+
"required": true,
|
|
209
|
+
"schema": {
|
|
210
|
+
"title": "props",
|
|
211
|
+
"type": "object"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"name": "persistFlag",
|
|
216
|
+
"type": "boolean",
|
|
217
|
+
"info": "Whether the input properties should be saved",
|
|
218
|
+
"required": true
|
|
219
|
+
}
|
|
220
|
+
],
|
|
221
|
+
"output": {
|
|
222
|
+
"name": "result",
|
|
223
|
+
"type": "object",
|
|
224
|
+
"description": "A JSON Object containing the test results",
|
|
225
|
+
"schema": {
|
|
226
|
+
"title": "result",
|
|
227
|
+
"type": "object"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"roles": [
|
|
231
|
+
"admin"
|
|
232
|
+
],
|
|
233
|
+
"route": {
|
|
234
|
+
"verb": "POST",
|
|
235
|
+
"path": "/iapTroubleshootAdapter"
|
|
236
|
+
},
|
|
237
|
+
"task": true
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"name": "iapRunAdapterHealthcheck",
|
|
241
|
+
"summary": "Runs healthcheck script for adapter",
|
|
242
|
+
"description": "Runs healthcheck script for adapter",
|
|
243
|
+
"input": [],
|
|
244
|
+
"output": {
|
|
245
|
+
"name": "result",
|
|
246
|
+
"type": "boolean",
|
|
247
|
+
"description": "Whether healthcheck passed or failed"
|
|
248
|
+
},
|
|
249
|
+
"roles": [
|
|
250
|
+
"admin"
|
|
251
|
+
],
|
|
252
|
+
"route": {
|
|
253
|
+
"verb": "POST",
|
|
254
|
+
"path": "/iapRunAdapterHealthcheck"
|
|
255
|
+
},
|
|
256
|
+
"task": true
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"name": "iapRunAdapterConnectivity",
|
|
260
|
+
"summary": "Runs connectivity check script for adapter",
|
|
261
|
+
"description": "Runs connectivity check script for adapter",
|
|
262
|
+
"input": [],
|
|
263
|
+
"output": {
|
|
264
|
+
"name": "result",
|
|
265
|
+
"type": "object",
|
|
266
|
+
"description": "A JSON Object containing the test results",
|
|
267
|
+
"schema": {
|
|
268
|
+
"title": "result",
|
|
269
|
+
"type": "object"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"roles": [
|
|
273
|
+
"admin"
|
|
274
|
+
],
|
|
275
|
+
"route": {
|
|
276
|
+
"verb": "POST",
|
|
277
|
+
"path": "/iapRunAdapterConnectivity"
|
|
278
|
+
},
|
|
279
|
+
"task": true
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"name": "iapRunAdapterBasicGet",
|
|
283
|
+
"summary": "Runs basicGet script for adapter",
|
|
284
|
+
"description": "Runs basicGet script for adapter",
|
|
285
|
+
"input": [],
|
|
286
|
+
"output": {
|
|
287
|
+
"name": "result",
|
|
288
|
+
"type": "object",
|
|
289
|
+
"description": "A JSON Object containing the test results",
|
|
290
|
+
"schema": {
|
|
291
|
+
"title": "result",
|
|
292
|
+
"type": "object"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"roles": [
|
|
296
|
+
"admin"
|
|
297
|
+
],
|
|
298
|
+
"route": {
|
|
299
|
+
"verb": "POST",
|
|
300
|
+
"path": "/iapRunAdapterBasicGet"
|
|
301
|
+
},
|
|
302
|
+
"task": true
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"name": "iapMoveAdapterEntitiesToDB",
|
|
306
|
+
"summary": "Moves entities from an adapter into the IAP database",
|
|
307
|
+
"description": "Moves entities from an adapter into the IAP database",
|
|
308
|
+
"input": [],
|
|
309
|
+
"output": {
|
|
310
|
+
"name": "res",
|
|
311
|
+
"type": "object",
|
|
312
|
+
"description": "A JSON Object containing status, code and the response from the mongo transaction",
|
|
313
|
+
"schema": {
|
|
314
|
+
"title": "res",
|
|
315
|
+
"type": "object"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
"roles": [
|
|
319
|
+
"admin"
|
|
320
|
+
],
|
|
321
|
+
"route": {
|
|
322
|
+
"verb": "POST",
|
|
323
|
+
"path": "/iapMoveAdapterEntitiesToDB"
|
|
324
|
+
},
|
|
325
|
+
"task": true
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"name": "genericAdapterRequest",
|
|
329
|
+
"summary": "Makes the requested generic call",
|
|
330
|
+
"description": "Makes the requested generic call",
|
|
331
|
+
"input": [
|
|
332
|
+
{
|
|
333
|
+
"name": "uriPath",
|
|
334
|
+
"type": "string",
|
|
335
|
+
"info": "the path of the api call - do not include the host, port, base path or version",
|
|
336
|
+
"description": "the path of the api call",
|
|
337
|
+
"schema": {
|
|
338
|
+
"title": "uriPath",
|
|
339
|
+
"type": "string"
|
|
340
|
+
},
|
|
341
|
+
"required": true
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"name": "restMethod",
|
|
345
|
+
"type": "string",
|
|
346
|
+
"info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
347
|
+
"description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
348
|
+
"schema": {
|
|
349
|
+
"title": "restMethod",
|
|
350
|
+
"type": "string"
|
|
351
|
+
},
|
|
352
|
+
"required": true
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"name": "queryData",
|
|
356
|
+
"type": "object",
|
|
357
|
+
"info": "the query parameters to be put on the url (optional)",
|
|
358
|
+
"description": "the query parameters to be put on the url (optional)",
|
|
359
|
+
"schema": {
|
|
360
|
+
"title": "queryData",
|
|
361
|
+
"type": "object"
|
|
362
|
+
},
|
|
363
|
+
"required": false
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"name": "requestBody",
|
|
367
|
+
"type": "object",
|
|
368
|
+
"info": "the payload to be sent with the request (optional)",
|
|
369
|
+
"description": "the payload to be sent with the request (optional)",
|
|
370
|
+
"schema": {
|
|
371
|
+
"title": "requestBody",
|
|
372
|
+
"type": "object"
|
|
373
|
+
},
|
|
374
|
+
"required": false
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"name": "addlHeaders",
|
|
378
|
+
"type": "object",
|
|
379
|
+
"info": "additional headers to be put on the call (optional)",
|
|
380
|
+
"description": "additional headers to be put on the call (optional)",
|
|
381
|
+
"schema": {
|
|
382
|
+
"title": "addlHeaders",
|
|
383
|
+
"type": "object"
|
|
384
|
+
},
|
|
385
|
+
"required": false
|
|
386
|
+
}
|
|
387
|
+
],
|
|
388
|
+
"output": {
|
|
389
|
+
"name": "result",
|
|
390
|
+
"type": "object",
|
|
391
|
+
"description": "A JSON Object containing status, code and the result",
|
|
392
|
+
"schema": {
|
|
393
|
+
"title": "result",
|
|
394
|
+
"type": "object"
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
"roles": [
|
|
398
|
+
"admin"
|
|
399
|
+
],
|
|
400
|
+
"route": {
|
|
401
|
+
"verb": "POST",
|
|
402
|
+
"path": "/genericAdapterRequest"
|
|
403
|
+
},
|
|
404
|
+
"task": true
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"name": "genericAdapterRequestNoBasePath",
|
|
408
|
+
"summary": "Makes the requested generic call with no base path or version",
|
|
409
|
+
"description": "Makes the requested generic call with no base path or version",
|
|
410
|
+
"input": [
|
|
411
|
+
{
|
|
412
|
+
"name": "uriPath",
|
|
413
|
+
"type": "string",
|
|
414
|
+
"info": "the path of the api call - do not include the host, port, base path or version",
|
|
415
|
+
"description": "the path of the api call",
|
|
416
|
+
"schema": {
|
|
417
|
+
"title": "uriPath",
|
|
418
|
+
"type": "string"
|
|
419
|
+
},
|
|
420
|
+
"required": true
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"name": "restMethod",
|
|
424
|
+
"type": "string",
|
|
425
|
+
"info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
426
|
+
"description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
427
|
+
"schema": {
|
|
428
|
+
"title": "restMethod",
|
|
429
|
+
"type": "string"
|
|
430
|
+
},
|
|
431
|
+
"required": true
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"name": "queryData",
|
|
435
|
+
"type": "object",
|
|
436
|
+
"info": "the query parameters to be put on the url (optional)",
|
|
437
|
+
"description": "the query parameters to be put on the url (optional)",
|
|
438
|
+
"schema": {
|
|
439
|
+
"title": "queryData",
|
|
440
|
+
"type": "object"
|
|
441
|
+
},
|
|
442
|
+
"required": false
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"name": "requestBody",
|
|
446
|
+
"type": "object",
|
|
447
|
+
"info": "the payload to be sent with the request (optional)",
|
|
448
|
+
"description": "the payload to be sent with the request (optional)",
|
|
449
|
+
"schema": {
|
|
450
|
+
"title": "requestBody",
|
|
451
|
+
"type": "object"
|
|
452
|
+
},
|
|
453
|
+
"required": false
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"name": "addlHeaders",
|
|
457
|
+
"type": "object",
|
|
458
|
+
"info": "additional headers to be put on the call (optional)",
|
|
459
|
+
"description": "additional headers to be put on the call (optional)",
|
|
460
|
+
"schema": {
|
|
461
|
+
"title": "addlHeaders",
|
|
462
|
+
"type": "object"
|
|
463
|
+
},
|
|
464
|
+
"required": false
|
|
465
|
+
}
|
|
466
|
+
],
|
|
467
|
+
"output": {
|
|
468
|
+
"name": "result",
|
|
469
|
+
"type": "object",
|
|
470
|
+
"description": "A JSON Object containing status, code and the result",
|
|
471
|
+
"schema": {
|
|
472
|
+
"title": "result",
|
|
473
|
+
"type": "object"
|
|
474
|
+
}
|
|
475
|
+
},
|
|
476
|
+
"roles": [
|
|
477
|
+
"admin"
|
|
478
|
+
],
|
|
479
|
+
"route": {
|
|
480
|
+
"verb": "POST",
|
|
481
|
+
"path": "/genericAdapterRequestNoBasePath"
|
|
482
|
+
},
|
|
483
|
+
"task": true
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"name": "getDevice",
|
|
487
|
+
"summary": "Get the Appliance",
|
|
488
|
+
"description": "Get the Appliance",
|
|
489
|
+
"input": [
|
|
490
|
+
{
|
|
491
|
+
"name": "deviceName",
|
|
492
|
+
"type": "string",
|
|
493
|
+
"info": "An Appliance Device Name",
|
|
494
|
+
"required": true,
|
|
495
|
+
"schema": {
|
|
496
|
+
"title": "deviceName",
|
|
497
|
+
"type": "string"
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
],
|
|
501
|
+
"output": {
|
|
502
|
+
"name": "result",
|
|
503
|
+
"type": "object",
|
|
504
|
+
"description": "A JSON Object containing status, code and the result",
|
|
505
|
+
"schema": {
|
|
506
|
+
"title": "result",
|
|
507
|
+
"type": "object"
|
|
508
|
+
}
|
|
509
|
+
},
|
|
510
|
+
"roles": [
|
|
511
|
+
"admin"
|
|
512
|
+
],
|
|
513
|
+
"route": {
|
|
514
|
+
"verb": "POST",
|
|
515
|
+
"path": "/getDevice"
|
|
516
|
+
},
|
|
517
|
+
"task": false
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"name": "getDevicesFiltered",
|
|
521
|
+
"summary": "Get Appliances that match the filter",
|
|
522
|
+
"description": "Get Appliances that match the filter",
|
|
523
|
+
"input": [
|
|
524
|
+
{
|
|
525
|
+
"name": "options",
|
|
526
|
+
"type": "object",
|
|
527
|
+
"info": "options - e.g. { 'start': 1, 'limit': 20, 'filter': { 'name': 'abc123' } }",
|
|
528
|
+
"required": true,
|
|
529
|
+
"schema": {
|
|
530
|
+
"title": "options",
|
|
531
|
+
"type": "object"
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
],
|
|
535
|
+
"output": {
|
|
536
|
+
"name": "result",
|
|
537
|
+
"type": "array",
|
|
538
|
+
"description": "A JSON Object containing status, code and the result",
|
|
539
|
+
"schema": {
|
|
540
|
+
"title": "result",
|
|
541
|
+
"type": "array"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
"roles": [
|
|
545
|
+
"admin"
|
|
546
|
+
],
|
|
547
|
+
"route": {
|
|
548
|
+
"verb": "POST",
|
|
549
|
+
"path": "/getDevicesFiltered"
|
|
550
|
+
},
|
|
551
|
+
"task": false
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"name": "isAlive",
|
|
555
|
+
"summary": "Checks the status for the provided Appliance",
|
|
556
|
+
"description": "Checks the status for the provided Appliance",
|
|
557
|
+
"input": [
|
|
558
|
+
{
|
|
559
|
+
"name": "deviceName",
|
|
560
|
+
"type": "string",
|
|
561
|
+
"info": "An Appliance Device Name",
|
|
562
|
+
"required": true,
|
|
563
|
+
"schema": {
|
|
564
|
+
"title": "deviceName",
|
|
565
|
+
"type": "string"
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
],
|
|
569
|
+
"output": {
|
|
570
|
+
"name": "result",
|
|
571
|
+
"type": "boolean",
|
|
572
|
+
"description": "A JSON Object containing status, code and the result",
|
|
573
|
+
"schema": {
|
|
574
|
+
"title": "result",
|
|
575
|
+
"type": "boolean"
|
|
576
|
+
}
|
|
577
|
+
},
|
|
578
|
+
"roles": [
|
|
579
|
+
"admin"
|
|
580
|
+
],
|
|
581
|
+
"route": {
|
|
582
|
+
"verb": "POST",
|
|
583
|
+
"path": "/isAlive"
|
|
584
|
+
},
|
|
585
|
+
"task": false
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"name": "getConfig",
|
|
589
|
+
"summary": "Gets a config for the provided Appliance",
|
|
590
|
+
"description": "Gets a config for the provided Appliance",
|
|
591
|
+
"input": [
|
|
592
|
+
{
|
|
593
|
+
"name": "deviceName",
|
|
594
|
+
"type": "string",
|
|
595
|
+
"info": "An Appliance Device Name",
|
|
596
|
+
"required": true,
|
|
597
|
+
"schema": {
|
|
598
|
+
"title": "deviceName",
|
|
599
|
+
"type": "string"
|
|
600
|
+
}
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"name": "format",
|
|
604
|
+
"type": "string",
|
|
605
|
+
"info": "The format to be returned - this is ignored as we always return json",
|
|
606
|
+
"required": false,
|
|
607
|
+
"schema": {
|
|
608
|
+
"title": "format",
|
|
609
|
+
"type": "string"
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
],
|
|
613
|
+
"output": {
|
|
614
|
+
"name": "result",
|
|
615
|
+
"type": "object",
|
|
616
|
+
"description": "A JSON Object containing status, code and the result",
|
|
617
|
+
"schema": {
|
|
618
|
+
"title": "result",
|
|
619
|
+
"type": "object"
|
|
620
|
+
}
|
|
621
|
+
},
|
|
622
|
+
"roles": [
|
|
623
|
+
"admin"
|
|
624
|
+
],
|
|
625
|
+
"route": {
|
|
626
|
+
"verb": "POST",
|
|
627
|
+
"path": "/getConfig"
|
|
628
|
+
},
|
|
629
|
+
"task": false
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"name": "iapGetDeviceCount",
|
|
633
|
+
"summary": "Gets a device count from the system",
|
|
634
|
+
"description": "Gets a device count from the system",
|
|
635
|
+
"input": [],
|
|
636
|
+
"output": {
|
|
637
|
+
"name": "result",
|
|
638
|
+
"type": "object",
|
|
639
|
+
"description": "A JSON Object containing status, code and the result",
|
|
640
|
+
"schema": {
|
|
641
|
+
"title": "result",
|
|
642
|
+
"type": "object"
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
"roles": [
|
|
646
|
+
"admin"
|
|
647
|
+
],
|
|
648
|
+
"route": {
|
|
649
|
+
"verb": "POST",
|
|
650
|
+
"path": "/iapGetDeviceCount"
|
|
651
|
+
},
|
|
652
|
+
"task": false
|
|
653
|
+
},
|
|
390
654
|
{
|
|
391
655
|
"name": "createNetwork",
|
|
392
656
|
"summary": "createNetwork",
|
|
@@ -1647,12 +1911,107 @@
|
|
|
1647
1911
|
"description": "verifyContainerCapacity",
|
|
1648
1912
|
"input": [
|
|
1649
1913
|
{
|
|
1650
|
-
"type": "array",
|
|
1651
|
-
"name": "containerList",
|
|
1652
|
-
"description": "containerList",
|
|
1914
|
+
"type": "array",
|
|
1915
|
+
"name": "containerList",
|
|
1916
|
+
"description": "containerList",
|
|
1917
|
+
"schema": {
|
|
1918
|
+
"title": "containerList",
|
|
1919
|
+
"type": "array"
|
|
1920
|
+
}
|
|
1921
|
+
}
|
|
1922
|
+
],
|
|
1923
|
+
"output": {
|
|
1924
|
+
"type": "object",
|
|
1925
|
+
"name": "result",
|
|
1926
|
+
"description": "",
|
|
1927
|
+
"schema": {
|
|
1928
|
+
"title": "result",
|
|
1929
|
+
"type": "object"
|
|
1930
|
+
}
|
|
1931
|
+
},
|
|
1932
|
+
"roles": [
|
|
1933
|
+
"admin",
|
|
1934
|
+
"pronghorn_admin"
|
|
1935
|
+
],
|
|
1936
|
+
"route": {
|
|
1937
|
+
"verb": "POST",
|
|
1938
|
+
"path": "/verifyContainerCapacity"
|
|
1939
|
+
},
|
|
1940
|
+
"task": true
|
|
1941
|
+
},
|
|
1942
|
+
{
|
|
1943
|
+
"name": "modifyNetworkBlock",
|
|
1944
|
+
"summary": "modifyNetworkBlock",
|
|
1945
|
+
"description": "modifyNetworkBlock will modify the comment in the network block",
|
|
1946
|
+
"input": [
|
|
1947
|
+
{
|
|
1948
|
+
"type": "string",
|
|
1949
|
+
"name": "networkIP",
|
|
1950
|
+
"description": "Network IP of the block",
|
|
1951
|
+
"schema": {
|
|
1952
|
+
"title": "networkIP",
|
|
1953
|
+
"type": "string"
|
|
1954
|
+
}
|
|
1955
|
+
},
|
|
1956
|
+
{
|
|
1957
|
+
"type": "string",
|
|
1958
|
+
"name": "comment",
|
|
1959
|
+
"description": "updated comment on the network block",
|
|
1960
|
+
"schema": {
|
|
1961
|
+
"title": "comment",
|
|
1962
|
+
"type": "string"
|
|
1963
|
+
}
|
|
1964
|
+
}
|
|
1965
|
+
],
|
|
1966
|
+
"output": {
|
|
1967
|
+
"type": "object",
|
|
1968
|
+
"name": "result",
|
|
1969
|
+
"description": "",
|
|
1970
|
+
"schema": {
|
|
1971
|
+
"title": "result",
|
|
1972
|
+
"type": "object"
|
|
1973
|
+
}
|
|
1974
|
+
},
|
|
1975
|
+
"roles": [
|
|
1976
|
+
"admin",
|
|
1977
|
+
"pronghorn_admin"
|
|
1978
|
+
],
|
|
1979
|
+
"route": {
|
|
1980
|
+
"verb": "POST",
|
|
1981
|
+
"path": "/modifyNetworkBlock"
|
|
1982
|
+
},
|
|
1983
|
+
"task": true
|
|
1984
|
+
},
|
|
1985
|
+
{
|
|
1986
|
+
"name": "modifyIPAddress",
|
|
1987
|
+
"summary": "modifyIPAddress",
|
|
1988
|
+
"description": "modifyIPAddress will modify the ip address",
|
|
1989
|
+
"input": [
|
|
1990
|
+
{
|
|
1991
|
+
"type": "string",
|
|
1992
|
+
"name": "IPAddress",
|
|
1993
|
+
"description": "Target ip-address",
|
|
1994
|
+
"schema": {
|
|
1995
|
+
"title": "IPAddress",
|
|
1996
|
+
"type": "string"
|
|
1997
|
+
}
|
|
1998
|
+
},
|
|
1999
|
+
{
|
|
2000
|
+
"type": "string",
|
|
2001
|
+
"name": "modifiedHostName",
|
|
2002
|
+
"description": "updated comment on the ip-address",
|
|
2003
|
+
"schema": {
|
|
2004
|
+
"title": "modifiedHostName",
|
|
2005
|
+
"type": "string"
|
|
2006
|
+
}
|
|
2007
|
+
},
|
|
2008
|
+
{
|
|
2009
|
+
"type": "string",
|
|
2010
|
+
"name": "comment",
|
|
2011
|
+
"description": "updated comment on the ip-address",
|
|
1653
2012
|
"schema": {
|
|
1654
|
-
"title": "
|
|
1655
|
-
"type": "
|
|
2013
|
+
"title": "comment",
|
|
2014
|
+
"type": "string"
|
|
1656
2015
|
}
|
|
1657
2016
|
}
|
|
1658
2017
|
],
|
|
@@ -1671,30 +2030,21 @@
|
|
|
1671
2030
|
],
|
|
1672
2031
|
"route": {
|
|
1673
2032
|
"verb": "POST",
|
|
1674
|
-
"path": "/
|
|
2033
|
+
"path": "/modifyIPAddress"
|
|
1675
2034
|
},
|
|
1676
2035
|
"task": true
|
|
1677
2036
|
},
|
|
1678
2037
|
{
|
|
1679
|
-
"name": "
|
|
1680
|
-
"summary": "
|
|
1681
|
-
"description": "
|
|
2038
|
+
"name": "deleteNetworkContainerByNetworkKey",
|
|
2039
|
+
"summary": "deleteNetworkContainerByNetworkKey",
|
|
2040
|
+
"description": "deleteNetworkContainerByNetworkKey will delete the network container from the system",
|
|
1682
2041
|
"input": [
|
|
1683
2042
|
{
|
|
1684
2043
|
"type": "string",
|
|
1685
|
-
"name": "
|
|
1686
|
-
"description": "
|
|
1687
|
-
"schema": {
|
|
1688
|
-
"title": "networkIP",
|
|
1689
|
-
"type": "string"
|
|
1690
|
-
}
|
|
1691
|
-
},
|
|
1692
|
-
{
|
|
1693
|
-
"type": "string",
|
|
1694
|
-
"name": "comment",
|
|
1695
|
-
"description": "updated comment on the network block",
|
|
2044
|
+
"name": "networkId",
|
|
2045
|
+
"description": "The network key of the registered network block",
|
|
1696
2046
|
"schema": {
|
|
1697
|
-
"title": "
|
|
2047
|
+
"title": "networkId",
|
|
1698
2048
|
"type": "string"
|
|
1699
2049
|
}
|
|
1700
2050
|
}
|
|
@@ -1714,40 +2064,49 @@
|
|
|
1714
2064
|
],
|
|
1715
2065
|
"route": {
|
|
1716
2066
|
"verb": "POST",
|
|
1717
|
-
"path": "/
|
|
2067
|
+
"path": "/deleteHostRecordByHostName"
|
|
1718
2068
|
},
|
|
1719
2069
|
"task": true
|
|
1720
2070
|
},
|
|
1721
2071
|
{
|
|
1722
|
-
"name": "
|
|
1723
|
-
"summary": "
|
|
1724
|
-
"description": "
|
|
2072
|
+
"name": "getNetworkContainerNextNetworkIps",
|
|
2073
|
+
"summary": "This function will get the next network ips from the container",
|
|
2074
|
+
"description": "This function will get the next network ips from the container",
|
|
1725
2075
|
"input": [
|
|
1726
2076
|
{
|
|
2077
|
+
"name": "networkId",
|
|
1727
2078
|
"type": "string",
|
|
1728
|
-
"
|
|
1729
|
-
"description": "Target ip-address",
|
|
2079
|
+
"description": "The network key of the registered network block",
|
|
1730
2080
|
"schema": {
|
|
1731
|
-
"title": "
|
|
2081
|
+
"title": "networkId",
|
|
1732
2082
|
"type": "string"
|
|
1733
2083
|
}
|
|
1734
2084
|
},
|
|
1735
2085
|
{
|
|
2086
|
+
"name": "containerId",
|
|
1736
2087
|
"type": "string",
|
|
1737
|
-
"
|
|
1738
|
-
"description": "updated comment on the ip-address",
|
|
2088
|
+
"description": "The container key of the registered network container",
|
|
1739
2089
|
"schema": {
|
|
1740
|
-
"title": "
|
|
2090
|
+
"title": "containerId",
|
|
1741
2091
|
"type": "string"
|
|
1742
2092
|
}
|
|
1743
2093
|
},
|
|
1744
2094
|
{
|
|
1745
|
-
"
|
|
1746
|
-
"
|
|
1747
|
-
"description": "
|
|
2095
|
+
"name": "body",
|
|
2096
|
+
"type": "object",
|
|
2097
|
+
"description": "Body Param",
|
|
1748
2098
|
"schema": {
|
|
1749
|
-
"title": "
|
|
1750
|
-
"type": "
|
|
2099
|
+
"title": "body",
|
|
2100
|
+
"type": "object"
|
|
2101
|
+
}
|
|
2102
|
+
},
|
|
2103
|
+
{
|
|
2104
|
+
"name": "query",
|
|
2105
|
+
"type": "object",
|
|
2106
|
+
"description": "Query Param",
|
|
2107
|
+
"schema": {
|
|
2108
|
+
"title": "query",
|
|
2109
|
+
"type": "object"
|
|
1751
2110
|
}
|
|
1752
2111
|
}
|
|
1753
2112
|
],
|
|
@@ -1766,23 +2125,50 @@
|
|
|
1766
2125
|
],
|
|
1767
2126
|
"route": {
|
|
1768
2127
|
"verb": "POST",
|
|
1769
|
-
"path": "/
|
|
2128
|
+
"path": "/getNetworkContainerNextNetworkIps"
|
|
1770
2129
|
},
|
|
1771
2130
|
"task": true
|
|
1772
2131
|
},
|
|
1773
2132
|
{
|
|
1774
|
-
"name": "
|
|
1775
|
-
"summary": "
|
|
1776
|
-
"description": "
|
|
2133
|
+
"name": "getIpv6NetworkContainerNextNetworkIps",
|
|
2134
|
+
"summary": "This function will get the next network ips from the container",
|
|
2135
|
+
"description": "This function will get the next network ips from the container",
|
|
1777
2136
|
"input": [
|
|
1778
2137
|
{
|
|
1779
|
-
"type": "string",
|
|
1780
2138
|
"name": "networkId",
|
|
2139
|
+
"type": "string",
|
|
1781
2140
|
"description": "The network key of the registered network block",
|
|
1782
2141
|
"schema": {
|
|
1783
2142
|
"title": "networkId",
|
|
1784
2143
|
"type": "string"
|
|
1785
2144
|
}
|
|
2145
|
+
},
|
|
2146
|
+
{
|
|
2147
|
+
"name": "containerId",
|
|
2148
|
+
"type": "string",
|
|
2149
|
+
"description": "The container key of the registered network container",
|
|
2150
|
+
"schema": {
|
|
2151
|
+
"title": "containerId",
|
|
2152
|
+
"type": "string"
|
|
2153
|
+
}
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
"name": "body",
|
|
2157
|
+
"type": "object",
|
|
2158
|
+
"description": "Body Param",
|
|
2159
|
+
"schema": {
|
|
2160
|
+
"title": "body",
|
|
2161
|
+
"type": "object"
|
|
2162
|
+
}
|
|
2163
|
+
},
|
|
2164
|
+
{
|
|
2165
|
+
"name": "query",
|
|
2166
|
+
"type": "object",
|
|
2167
|
+
"description": "Query Param",
|
|
2168
|
+
"schema": {
|
|
2169
|
+
"title": "query",
|
|
2170
|
+
"type": "object"
|
|
2171
|
+
}
|
|
1786
2172
|
}
|
|
1787
2173
|
],
|
|
1788
2174
|
"output": {
|
|
@@ -1800,7 +2186,7 @@
|
|
|
1800
2186
|
],
|
|
1801
2187
|
"route": {
|
|
1802
2188
|
"verb": "POST",
|
|
1803
|
-
"path": "/
|
|
2189
|
+
"path": "/getIpv6NetworkContainerNextNetworkIps"
|
|
1804
2190
|
},
|
|
1805
2191
|
"task": true
|
|
1806
2192
|
},
|
|
@@ -3652,23 +4038,194 @@
|
|
|
3652
4038
|
"admin"
|
|
3653
4039
|
],
|
|
3654
4040
|
"route": {
|
|
3655
|
-
"verb": "POST",
|
|
3656
|
-
"path": "/getRangeByExtensibleAttribute"
|
|
4041
|
+
"verb": "POST",
|
|
4042
|
+
"path": "/getRangeByExtensibleAttribute"
|
|
4043
|
+
},
|
|
4044
|
+
"task": true
|
|
4045
|
+
},
|
|
4046
|
+
{
|
|
4047
|
+
"name": "createRange",
|
|
4048
|
+
"summary": "Creates (POST) Range",
|
|
4049
|
+
"description": "Creates a DHCP range",
|
|
4050
|
+
"input": [
|
|
4051
|
+
{
|
|
4052
|
+
"name": "body",
|
|
4053
|
+
"type": "object",
|
|
4054
|
+
"info": "",
|
|
4055
|
+
"required": true,
|
|
4056
|
+
"schema": {
|
|
4057
|
+
"title": "body",
|
|
4058
|
+
"type": "object"
|
|
4059
|
+
}
|
|
4060
|
+
}
|
|
4061
|
+
],
|
|
4062
|
+
"output": {
|
|
4063
|
+
"name": "result",
|
|
4064
|
+
"type": "object",
|
|
4065
|
+
"description": "A JSON Object containing status, code and the result",
|
|
4066
|
+
"schema": {
|
|
4067
|
+
"title": "result",
|
|
4068
|
+
"type": "object"
|
|
4069
|
+
}
|
|
4070
|
+
},
|
|
4071
|
+
"roles": [
|
|
4072
|
+
"admin"
|
|
4073
|
+
],
|
|
4074
|
+
"route": {
|
|
4075
|
+
"verb": "POST",
|
|
4076
|
+
"path": "/createRange"
|
|
4077
|
+
},
|
|
4078
|
+
"task": true
|
|
4079
|
+
},
|
|
4080
|
+
{
|
|
4081
|
+
"name": "getLeaseByIpAddress",
|
|
4082
|
+
"summary": "GET Lease by IP address",
|
|
4083
|
+
"description": "Fetches DHCP lease of machine, e.g. with IP address '172.26.1.250'",
|
|
4084
|
+
"input": [
|
|
4085
|
+
{
|
|
4086
|
+
"name": "address",
|
|
4087
|
+
"type": "string",
|
|
4088
|
+
"info": "",
|
|
4089
|
+
"required": true,
|
|
4090
|
+
"schema": {
|
|
4091
|
+
"title": "address",
|
|
4092
|
+
"type": "string"
|
|
4093
|
+
}
|
|
4094
|
+
}
|
|
4095
|
+
],
|
|
4096
|
+
"output": {
|
|
4097
|
+
"name": "result",
|
|
4098
|
+
"type": "object",
|
|
4099
|
+
"description": "A JSON Object containing status, code and the result",
|
|
4100
|
+
"schema": {
|
|
4101
|
+
"title": "result",
|
|
4102
|
+
"type": "object"
|
|
4103
|
+
}
|
|
4104
|
+
},
|
|
4105
|
+
"roles": [
|
|
4106
|
+
"admin"
|
|
4107
|
+
],
|
|
4108
|
+
"route": {
|
|
4109
|
+
"verb": "POST",
|
|
4110
|
+
"path": "/getLeaseByIpAddress"
|
|
4111
|
+
},
|
|
4112
|
+
"task": true
|
|
4113
|
+
},
|
|
4114
|
+
{
|
|
4115
|
+
"name": "getMemberDhcp",
|
|
4116
|
+
"summary": "GET member:dhcp",
|
|
4117
|
+
"description": "Fetches the member DHCP properties",
|
|
4118
|
+
"input": [],
|
|
4119
|
+
"output": {
|
|
4120
|
+
"name": "result",
|
|
4121
|
+
"type": "object",
|
|
4122
|
+
"description": "A JSON Object containing status, code and the result",
|
|
4123
|
+
"schema": {
|
|
4124
|
+
"title": "result",
|
|
4125
|
+
"type": "object"
|
|
4126
|
+
}
|
|
4127
|
+
},
|
|
4128
|
+
"roles": [
|
|
4129
|
+
"admin"
|
|
4130
|
+
],
|
|
4131
|
+
"route": {
|
|
4132
|
+
"verb": "GET",
|
|
4133
|
+
"path": "/getMemberDhcp"
|
|
4134
|
+
},
|
|
4135
|
+
"task": true
|
|
4136
|
+
},
|
|
4137
|
+
{
|
|
4138
|
+
"name": "getIpAddressUsingSearch",
|
|
4139
|
+
"summary": "GET IP address using search",
|
|
4140
|
+
"description": "Fetches details of an IP address, e.g. '172.26.1.100' using the search object",
|
|
4141
|
+
"input": [
|
|
4142
|
+
{
|
|
4143
|
+
"name": "address",
|
|
4144
|
+
"type": "string",
|
|
4145
|
+
"info": "",
|
|
4146
|
+
"required": true,
|
|
4147
|
+
"schema": {
|
|
4148
|
+
"title": "address",
|
|
4149
|
+
"type": "string"
|
|
4150
|
+
}
|
|
4151
|
+
}
|
|
4152
|
+
],
|
|
4153
|
+
"output": {
|
|
4154
|
+
"name": "result",
|
|
4155
|
+
"type": "object",
|
|
4156
|
+
"description": "A JSON Object containing status, code and the result",
|
|
4157
|
+
"schema": {
|
|
4158
|
+
"title": "result",
|
|
4159
|
+
"type": "object"
|
|
4160
|
+
}
|
|
4161
|
+
},
|
|
4162
|
+
"roles": [
|
|
4163
|
+
"admin"
|
|
4164
|
+
],
|
|
4165
|
+
"route": {
|
|
4166
|
+
"verb": "POST",
|
|
4167
|
+
"path": "/getIpAddressUsingSearch"
|
|
4168
|
+
},
|
|
4169
|
+
"task": true
|
|
4170
|
+
},
|
|
4171
|
+
{
|
|
4172
|
+
"name": "getDnsView",
|
|
4173
|
+
"summary": "GET DNS view",
|
|
4174
|
+
"description": "Fetches all DNS views in your environment",
|
|
4175
|
+
"input": [],
|
|
4176
|
+
"output": {
|
|
4177
|
+
"name": "result",
|
|
4178
|
+
"type": "object",
|
|
4179
|
+
"description": "A JSON Object containing status, code and the result",
|
|
4180
|
+
"schema": {
|
|
4181
|
+
"title": "result",
|
|
4182
|
+
"type": "object"
|
|
4183
|
+
}
|
|
4184
|
+
},
|
|
4185
|
+
"roles": [
|
|
4186
|
+
"admin"
|
|
4187
|
+
],
|
|
4188
|
+
"route": {
|
|
4189
|
+
"verb": "GET",
|
|
4190
|
+
"path": "/getDnsView"
|
|
4191
|
+
},
|
|
4192
|
+
"task": true
|
|
4193
|
+
},
|
|
4194
|
+
{
|
|
4195
|
+
"name": "getNetworkView",
|
|
4196
|
+
"summary": "GET Network view",
|
|
4197
|
+
"description": "Fetches all network views in your environment",
|
|
4198
|
+
"input": [],
|
|
4199
|
+
"output": {
|
|
4200
|
+
"name": "result",
|
|
4201
|
+
"type": "object",
|
|
4202
|
+
"description": "A JSON Object containing status, code and the result",
|
|
4203
|
+
"schema": {
|
|
4204
|
+
"title": "result",
|
|
4205
|
+
"type": "object"
|
|
4206
|
+
}
|
|
4207
|
+
},
|
|
4208
|
+
"roles": [
|
|
4209
|
+
"admin"
|
|
4210
|
+
],
|
|
4211
|
+
"route": {
|
|
4212
|
+
"verb": "GET",
|
|
4213
|
+
"path": "/getNetworkView"
|
|
3657
4214
|
},
|
|
3658
4215
|
"task": true
|
|
3659
4216
|
},
|
|
3660
4217
|
{
|
|
3661
|
-
"name": "
|
|
3662
|
-
"summary": "
|
|
3663
|
-
"description": "
|
|
4218
|
+
"name": "getNetworkViewWithQuery",
|
|
4219
|
+
"summary": "GET Network view with Query Param",
|
|
4220
|
+
"description": "Fetches all network views in your environment with Query Param",
|
|
3664
4221
|
"input": [
|
|
3665
4222
|
{
|
|
3666
|
-
"name": "
|
|
4223
|
+
"name": "query",
|
|
3667
4224
|
"type": "object",
|
|
3668
4225
|
"info": "",
|
|
3669
4226
|
"required": true,
|
|
3670
4227
|
"schema": {
|
|
3671
|
-
"title": "
|
|
4228
|
+
"title": "query",
|
|
3672
4229
|
"type": "object"
|
|
3673
4230
|
}
|
|
3674
4231
|
}
|
|
@@ -3687,23 +4244,23 @@
|
|
|
3687
4244
|
],
|
|
3688
4245
|
"route": {
|
|
3689
4246
|
"verb": "POST",
|
|
3690
|
-
"path": "/
|
|
4247
|
+
"path": "/getNetworkViewWithQuery"
|
|
3691
4248
|
},
|
|
3692
4249
|
"task": true
|
|
3693
4250
|
},
|
|
3694
4251
|
{
|
|
3695
|
-
"name": "
|
|
3696
|
-
"summary": "
|
|
3697
|
-
"description": "
|
|
4252
|
+
"name": "createNetworkView",
|
|
4253
|
+
"summary": "Creates (POST) Network View",
|
|
4254
|
+
"description": "Creates a network view",
|
|
3698
4255
|
"input": [
|
|
3699
4256
|
{
|
|
3700
|
-
"name": "
|
|
3701
|
-
"type": "
|
|
4257
|
+
"name": "body",
|
|
4258
|
+
"type": "object",
|
|
3702
4259
|
"info": "",
|
|
3703
4260
|
"required": true,
|
|
3704
4261
|
"schema": {
|
|
3705
|
-
"title": "
|
|
3706
|
-
"type": "
|
|
4262
|
+
"title": "body",
|
|
4263
|
+
"type": "object"
|
|
3707
4264
|
}
|
|
3708
4265
|
}
|
|
3709
4266
|
],
|
|
@@ -3721,47 +4278,34 @@
|
|
|
3721
4278
|
],
|
|
3722
4279
|
"route": {
|
|
3723
4280
|
"verb": "POST",
|
|
3724
|
-
"path": "/
|
|
3725
|
-
},
|
|
3726
|
-
"task": true
|
|
3727
|
-
},
|
|
3728
|
-
{
|
|
3729
|
-
"name": "getMemberDhcp",
|
|
3730
|
-
"summary": "GET member:dhcp",
|
|
3731
|
-
"description": "Fetches the member DHCP properties",
|
|
3732
|
-
"input": [],
|
|
3733
|
-
"output": {
|
|
3734
|
-
"name": "result",
|
|
3735
|
-
"type": "object",
|
|
3736
|
-
"description": "A JSON Object containing status, code and the result",
|
|
3737
|
-
"schema": {
|
|
3738
|
-
"title": "result",
|
|
3739
|
-
"type": "object"
|
|
3740
|
-
}
|
|
3741
|
-
},
|
|
3742
|
-
"roles": [
|
|
3743
|
-
"admin"
|
|
3744
|
-
],
|
|
3745
|
-
"route": {
|
|
3746
|
-
"verb": "GET",
|
|
3747
|
-
"path": "/getMemberDhcp"
|
|
4281
|
+
"path": "/createNetworkView"
|
|
3748
4282
|
},
|
|
3749
4283
|
"task": true
|
|
3750
4284
|
},
|
|
3751
4285
|
{
|
|
3752
|
-
"name": "
|
|
3753
|
-
"summary": "GET
|
|
3754
|
-
"description": "Fetches
|
|
4286
|
+
"name": "getNetworkViewById",
|
|
4287
|
+
"summary": "GET Network view by id",
|
|
4288
|
+
"description": "Fetches network views in your environment by id",
|
|
3755
4289
|
"input": [
|
|
3756
4290
|
{
|
|
3757
|
-
"name": "
|
|
4291
|
+
"name": "viewId",
|
|
3758
4292
|
"type": "string",
|
|
3759
4293
|
"info": "",
|
|
3760
4294
|
"required": true,
|
|
3761
4295
|
"schema": {
|
|
3762
|
-
"title": "
|
|
4296
|
+
"title": "viewId",
|
|
3763
4297
|
"type": "string"
|
|
3764
4298
|
}
|
|
4299
|
+
},
|
|
4300
|
+
{
|
|
4301
|
+
"name": "query",
|
|
4302
|
+
"type": "object",
|
|
4303
|
+
"info": "",
|
|
4304
|
+
"required": true,
|
|
4305
|
+
"schema": {
|
|
4306
|
+
"title": "query",
|
|
4307
|
+
"type": "object"
|
|
4308
|
+
}
|
|
3765
4309
|
}
|
|
3766
4310
|
],
|
|
3767
4311
|
"output": {
|
|
@@ -3778,38 +4322,26 @@
|
|
|
3778
4322
|
],
|
|
3779
4323
|
"route": {
|
|
3780
4324
|
"verb": "POST",
|
|
3781
|
-
"path": "/
|
|
4325
|
+
"path": "/getNetworkViewById"
|
|
3782
4326
|
},
|
|
3783
4327
|
"task": true
|
|
3784
4328
|
},
|
|
3785
4329
|
{
|
|
3786
|
-
"name": "
|
|
3787
|
-
"summary": "
|
|
3788
|
-
"description": "
|
|
3789
|
-
"input": [
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
"
|
|
3796
|
-
|
|
4330
|
+
"name": "updateNetworkView",
|
|
4331
|
+
"summary": "Update Network view",
|
|
4332
|
+
"description": "Update network views in your environment",
|
|
4333
|
+
"input": [
|
|
4334
|
+
{
|
|
4335
|
+
"name": "viewId",
|
|
4336
|
+
"type": "string",
|
|
4337
|
+
"info": "",
|
|
4338
|
+
"required": true,
|
|
4339
|
+
"schema": {
|
|
4340
|
+
"title": "viewId",
|
|
4341
|
+
"type": "string"
|
|
4342
|
+
}
|
|
3797
4343
|
}
|
|
3798
|
-
},
|
|
3799
|
-
"roles": [
|
|
3800
|
-
"admin"
|
|
3801
4344
|
],
|
|
3802
|
-
"route": {
|
|
3803
|
-
"verb": "GET",
|
|
3804
|
-
"path": "/getDnsView"
|
|
3805
|
-
},
|
|
3806
|
-
"task": true
|
|
3807
|
-
},
|
|
3808
|
-
{
|
|
3809
|
-
"name": "getNetworkView",
|
|
3810
|
-
"summary": "GET Network view",
|
|
3811
|
-
"description": "Fetches all network views in your environment",
|
|
3812
|
-
"input": [],
|
|
3813
4345
|
"output": {
|
|
3814
4346
|
"name": "result",
|
|
3815
4347
|
"type": "object",
|
|
@@ -3823,24 +4355,24 @@
|
|
|
3823
4355
|
"admin"
|
|
3824
4356
|
],
|
|
3825
4357
|
"route": {
|
|
3826
|
-
"verb": "
|
|
3827
|
-
"path": "/
|
|
4358
|
+
"verb": "POST",
|
|
4359
|
+
"path": "/updateNetworkView"
|
|
3828
4360
|
},
|
|
3829
4361
|
"task": true
|
|
3830
4362
|
},
|
|
3831
4363
|
{
|
|
3832
|
-
"name": "
|
|
3833
|
-
"summary": "
|
|
3834
|
-
"description": "
|
|
4364
|
+
"name": "deleteNetworkView",
|
|
4365
|
+
"summary": "Delete Network view",
|
|
4366
|
+
"description": "Delete network views in your environment",
|
|
3835
4367
|
"input": [
|
|
3836
4368
|
{
|
|
3837
|
-
"name": "
|
|
3838
|
-
"type": "
|
|
4369
|
+
"name": "viewId",
|
|
4370
|
+
"type": "string",
|
|
3839
4371
|
"info": "",
|
|
3840
4372
|
"required": true,
|
|
3841
4373
|
"schema": {
|
|
3842
|
-
"title": "
|
|
3843
|
-
"type": "
|
|
4374
|
+
"title": "viewId",
|
|
4375
|
+
"type": "string"
|
|
3844
4376
|
}
|
|
3845
4377
|
}
|
|
3846
4378
|
],
|
|
@@ -3858,7 +4390,7 @@
|
|
|
3858
4390
|
],
|
|
3859
4391
|
"route": {
|
|
3860
4392
|
"verb": "POST",
|
|
3861
|
-
"path": "/
|
|
4393
|
+
"path": "/deleteNetworkView"
|
|
3862
4394
|
},
|
|
3863
4395
|
"task": true
|
|
3864
4396
|
},
|
|
@@ -4010,6 +4542,29 @@
|
|
|
4010
4542
|
},
|
|
4011
4543
|
"task": true
|
|
4012
4544
|
},
|
|
4545
|
+
{
|
|
4546
|
+
"name": "getGridStatus",
|
|
4547
|
+
"summary": "GET grid status",
|
|
4548
|
+
"description": "Fetches the status in the grid",
|
|
4549
|
+
"input": [],
|
|
4550
|
+
"output": {
|
|
4551
|
+
"name": "result",
|
|
4552
|
+
"type": "object",
|
|
4553
|
+
"description": "A JSON Object containing status, code and the result",
|
|
4554
|
+
"schema": {
|
|
4555
|
+
"title": "result",
|
|
4556
|
+
"type": "object"
|
|
4557
|
+
}
|
|
4558
|
+
},
|
|
4559
|
+
"roles": [
|
|
4560
|
+
"admin"
|
|
4561
|
+
],
|
|
4562
|
+
"route": {
|
|
4563
|
+
"verb": "GET",
|
|
4564
|
+
"path": "/getGridStatus"
|
|
4565
|
+
},
|
|
4566
|
+
"task": true
|
|
4567
|
+
},
|
|
4013
4568
|
{
|
|
4014
4569
|
"name": "getGridPendingChanges",
|
|
4015
4570
|
"summary": "GET grid pending changes",
|
|
@@ -4215,6 +4770,40 @@
|
|
|
4215
4770
|
},
|
|
4216
4771
|
"task": true
|
|
4217
4772
|
},
|
|
4773
|
+
{
|
|
4774
|
+
"name": "getExtensibleAttributeDefinitionWithQuery",
|
|
4775
|
+
"summary": "GET Extensible Attribute definition With Query Params",
|
|
4776
|
+
"description": "Fetches the EA definition With Query Params",
|
|
4777
|
+
"input": [
|
|
4778
|
+
{
|
|
4779
|
+
"name": "query",
|
|
4780
|
+
"type": "object",
|
|
4781
|
+
"info": "",
|
|
4782
|
+
"required": true,
|
|
4783
|
+
"schema": {
|
|
4784
|
+
"title": "query",
|
|
4785
|
+
"type": "object"
|
|
4786
|
+
}
|
|
4787
|
+
}
|
|
4788
|
+
],
|
|
4789
|
+
"output": {
|
|
4790
|
+
"name": "result",
|
|
4791
|
+
"type": "object",
|
|
4792
|
+
"description": "A JSON Object containing status, code and the result",
|
|
4793
|
+
"schema": {
|
|
4794
|
+
"title": "result",
|
|
4795
|
+
"type": "object"
|
|
4796
|
+
}
|
|
4797
|
+
},
|
|
4798
|
+
"roles": [
|
|
4799
|
+
"admin"
|
|
4800
|
+
],
|
|
4801
|
+
"route": {
|
|
4802
|
+
"verb": "POST",
|
|
4803
|
+
"path": "/getExtensibleAttributeDefinitionWithQuery"
|
|
4804
|
+
},
|
|
4805
|
+
"task": true
|
|
4806
|
+
},
|
|
4218
4807
|
{
|
|
4219
4808
|
"name": "createExtensibleAttributeDefinition",
|
|
4220
4809
|
"summary": "Creates (POST) Extensible Attribute Definition",
|
|
@@ -4249,6 +4838,118 @@
|
|
|
4249
4838
|
},
|
|
4250
4839
|
"task": true
|
|
4251
4840
|
},
|
|
4841
|
+
{
|
|
4842
|
+
"name": "getExtensibleAttributeDefinitionById",
|
|
4843
|
+
"summary": "GET Extensible Attribute definition By Id",
|
|
4844
|
+
"description": "Fetches the EA definition With By Id",
|
|
4845
|
+
"input": [
|
|
4846
|
+
{
|
|
4847
|
+
"name": "eaId",
|
|
4848
|
+
"type": "string",
|
|
4849
|
+
"info": "",
|
|
4850
|
+
"required": true,
|
|
4851
|
+
"schema": {
|
|
4852
|
+
"title": "eaId",
|
|
4853
|
+
"type": "string"
|
|
4854
|
+
}
|
|
4855
|
+
},
|
|
4856
|
+
{
|
|
4857
|
+
"name": "query",
|
|
4858
|
+
"type": "object",
|
|
4859
|
+
"info": "",
|
|
4860
|
+
"required": true,
|
|
4861
|
+
"schema": {
|
|
4862
|
+
"title": "query",
|
|
4863
|
+
"type": "object"
|
|
4864
|
+
}
|
|
4865
|
+
}
|
|
4866
|
+
],
|
|
4867
|
+
"output": {
|
|
4868
|
+
"name": "result",
|
|
4869
|
+
"type": "object",
|
|
4870
|
+
"description": "A JSON Object containing status, code and the result",
|
|
4871
|
+
"schema": {
|
|
4872
|
+
"title": "result",
|
|
4873
|
+
"type": "object"
|
|
4874
|
+
}
|
|
4875
|
+
},
|
|
4876
|
+
"roles": [
|
|
4877
|
+
"admin"
|
|
4878
|
+
],
|
|
4879
|
+
"route": {
|
|
4880
|
+
"verb": "POST",
|
|
4881
|
+
"path": "/getExtensibleAttributeDefinitionById"
|
|
4882
|
+
},
|
|
4883
|
+
"task": true
|
|
4884
|
+
},
|
|
4885
|
+
{
|
|
4886
|
+
"name": "updateExtensibleAttributeDefinition",
|
|
4887
|
+
"summary": "Update Extensible Attribute definition",
|
|
4888
|
+
"description": "Update the EA definition",
|
|
4889
|
+
"input": [
|
|
4890
|
+
{
|
|
4891
|
+
"name": "eaId",
|
|
4892
|
+
"type": "string",
|
|
4893
|
+
"info": "",
|
|
4894
|
+
"required": true,
|
|
4895
|
+
"schema": {
|
|
4896
|
+
"title": "eaId",
|
|
4897
|
+
"type": "string"
|
|
4898
|
+
}
|
|
4899
|
+
}
|
|
4900
|
+
],
|
|
4901
|
+
"output": {
|
|
4902
|
+
"name": "result",
|
|
4903
|
+
"type": "object",
|
|
4904
|
+
"description": "A JSON Object containing status, code and the result",
|
|
4905
|
+
"schema": {
|
|
4906
|
+
"title": "result",
|
|
4907
|
+
"type": "object"
|
|
4908
|
+
}
|
|
4909
|
+
},
|
|
4910
|
+
"roles": [
|
|
4911
|
+
"admin"
|
|
4912
|
+
],
|
|
4913
|
+
"route": {
|
|
4914
|
+
"verb": "POST",
|
|
4915
|
+
"path": "/updateExtensibleAttributeDefinition"
|
|
4916
|
+
},
|
|
4917
|
+
"task": true
|
|
4918
|
+
},
|
|
4919
|
+
{
|
|
4920
|
+
"name": "deleteExtensibleAttributeDefinition",
|
|
4921
|
+
"summary": "Delete Extensible Attribute definition",
|
|
4922
|
+
"description": "Delete the EA definition",
|
|
4923
|
+
"input": [
|
|
4924
|
+
{
|
|
4925
|
+
"name": "eaId",
|
|
4926
|
+
"type": "string",
|
|
4927
|
+
"info": "",
|
|
4928
|
+
"required": true,
|
|
4929
|
+
"schema": {
|
|
4930
|
+
"title": "eaId",
|
|
4931
|
+
"type": "string"
|
|
4932
|
+
}
|
|
4933
|
+
}
|
|
4934
|
+
],
|
|
4935
|
+
"output": {
|
|
4936
|
+
"name": "result",
|
|
4937
|
+
"type": "object",
|
|
4938
|
+
"description": "A JSON Object containing status, code and the result",
|
|
4939
|
+
"schema": {
|
|
4940
|
+
"title": "result",
|
|
4941
|
+
"type": "object"
|
|
4942
|
+
}
|
|
4943
|
+
},
|
|
4944
|
+
"roles": [
|
|
4945
|
+
"admin"
|
|
4946
|
+
],
|
|
4947
|
+
"route": {
|
|
4948
|
+
"verb": "POST",
|
|
4949
|
+
"path": "/deleteExtensibleAttributeDefinition"
|
|
4950
|
+
},
|
|
4951
|
+
"task": true
|
|
4952
|
+
},
|
|
4252
4953
|
{
|
|
4253
4954
|
"name": "extractObjectTypeFromObjectReference",
|
|
4254
4955
|
"summary": "extractObjectTypeFromObjectReference",
|