@itentialopensource/adapter-infoblox 1.9.1 → 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/.eslintignore +1 -0
- package/.eslintrc.js +12 -12
- package/AUTH.md +39 -0
- package/BROKER.md +199 -0
- package/CALLS.md +169 -0
- package/CHANGELOG.md +68 -49
- 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 +244 -392
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +11 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +5177 -2074
- package/adapterBase.js +1330 -49
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- 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 +49 -7
- package/entities/Networks/requestSchema.json +3 -1
- package/entities/Networks/responseSchema.json +3 -1
- package/entities/Records/action.json +7 -7
- package/entities/Services/action.json +22 -1
- package/entities/Services/schema.json +1 -0
- package/entities/Zones/action.json +3 -3
- package/error.json +12 -0
- package/package.json +47 -23
- package/pronghorn.json +1079 -0
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +505 -11
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +10 -0
- package/report/updateReport1594212087590.json +95 -0
- package/report/updateReport1615140322137.json +95 -0
- package/report/updateReport1646675873230.json +95 -0
- package/report/updateReport1653911824054.json +120 -0
- package/sampleProperties.json +110 -6
- package/test/integration/adapterTestBasicGet.js +85 -0
- package/test/integration/adapterTestConnectivity.js +93 -0
- package/test/integration/adapterTestIntegration.js +390 -181
- package/test/unit/adapterBaseTestUnit.js +949 -0
- package/test/unit/adapterTestUnit.js +1181 -272
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +0 -1
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +179 -0
- package/utils/findPath.js +74 -0
- package/utils/modify.js +154 -0
- 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 +184 -0
- package/utils/tbUtils.js +469 -0
- package/utils/testRunner.js +16 -16
- package/utils/troubleshootingAdapter.js +190 -0
package/pronghorn.json
CHANGED
|
@@ -9,6 +9,648 @@
|
|
|
9
9
|
"pronghorn_admin"
|
|
10
10
|
],
|
|
11
11
|
"methods": [
|
|
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
|
+
},
|
|
12
654
|
{
|
|
13
655
|
"name": "createNetwork",
|
|
14
656
|
"summary": "createNetwork",
|
|
@@ -1426,6 +2068,128 @@
|
|
|
1426
2068
|
},
|
|
1427
2069
|
"task": true
|
|
1428
2070
|
},
|
|
2071
|
+
{
|
|
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",
|
|
2075
|
+
"input": [
|
|
2076
|
+
{
|
|
2077
|
+
"name": "networkId",
|
|
2078
|
+
"type": "string",
|
|
2079
|
+
"description": "The network key of the registered network block",
|
|
2080
|
+
"schema": {
|
|
2081
|
+
"title": "networkId",
|
|
2082
|
+
"type": "string"
|
|
2083
|
+
}
|
|
2084
|
+
},
|
|
2085
|
+
{
|
|
2086
|
+
"name": "containerId",
|
|
2087
|
+
"type": "string",
|
|
2088
|
+
"description": "The container key of the registered network container",
|
|
2089
|
+
"schema": {
|
|
2090
|
+
"title": "containerId",
|
|
2091
|
+
"type": "string"
|
|
2092
|
+
}
|
|
2093
|
+
},
|
|
2094
|
+
{
|
|
2095
|
+
"name": "body",
|
|
2096
|
+
"type": "object",
|
|
2097
|
+
"description": "Body Param",
|
|
2098
|
+
"schema": {
|
|
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"
|
|
2110
|
+
}
|
|
2111
|
+
}
|
|
2112
|
+
],
|
|
2113
|
+
"output": {
|
|
2114
|
+
"type": "object",
|
|
2115
|
+
"name": "result",
|
|
2116
|
+
"description": "",
|
|
2117
|
+
"schema": {
|
|
2118
|
+
"title": "result",
|
|
2119
|
+
"type": "object"
|
|
2120
|
+
}
|
|
2121
|
+
},
|
|
2122
|
+
"roles": [
|
|
2123
|
+
"admin",
|
|
2124
|
+
"pronghorn_admin"
|
|
2125
|
+
],
|
|
2126
|
+
"route": {
|
|
2127
|
+
"verb": "POST",
|
|
2128
|
+
"path": "/getNetworkContainerNextNetworkIps"
|
|
2129
|
+
},
|
|
2130
|
+
"task": true
|
|
2131
|
+
},
|
|
2132
|
+
{
|
|
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",
|
|
2136
|
+
"input": [
|
|
2137
|
+
{
|
|
2138
|
+
"name": "networkId",
|
|
2139
|
+
"type": "string",
|
|
2140
|
+
"description": "The network key of the registered network block",
|
|
2141
|
+
"schema": {
|
|
2142
|
+
"title": "networkId",
|
|
2143
|
+
"type": "string"
|
|
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
|
+
}
|
|
2172
|
+
}
|
|
2173
|
+
],
|
|
2174
|
+
"output": {
|
|
2175
|
+
"type": "object",
|
|
2176
|
+
"name": "result",
|
|
2177
|
+
"description": "",
|
|
2178
|
+
"schema": {
|
|
2179
|
+
"title": "result",
|
|
2180
|
+
"type": "object"
|
|
2181
|
+
}
|
|
2182
|
+
},
|
|
2183
|
+
"roles": [
|
|
2184
|
+
"admin",
|
|
2185
|
+
"pronghorn_admin"
|
|
2186
|
+
],
|
|
2187
|
+
"route": {
|
|
2188
|
+
"verb": "POST",
|
|
2189
|
+
"path": "/getIpv6NetworkContainerNextNetworkIps"
|
|
2190
|
+
},
|
|
2191
|
+
"task": true
|
|
2192
|
+
},
|
|
1429
2193
|
{
|
|
1430
2194
|
"name": "getForwardZones",
|
|
1431
2195
|
"summary": "GET Forward Zones",
|
|
@@ -3450,6 +4214,40 @@
|
|
|
3450
4214
|
},
|
|
3451
4215
|
"task": true
|
|
3452
4216
|
},
|
|
4217
|
+
{
|
|
4218
|
+
"name": "getNetworkViewWithQuery",
|
|
4219
|
+
"summary": "GET Network view with Query Param",
|
|
4220
|
+
"description": "Fetches all network views in your environment with Query Param",
|
|
4221
|
+
"input": [
|
|
4222
|
+
{
|
|
4223
|
+
"name": "query",
|
|
4224
|
+
"type": "object",
|
|
4225
|
+
"info": "",
|
|
4226
|
+
"required": true,
|
|
4227
|
+
"schema": {
|
|
4228
|
+
"title": "query",
|
|
4229
|
+
"type": "object"
|
|
4230
|
+
}
|
|
4231
|
+
}
|
|
4232
|
+
],
|
|
4233
|
+
"output": {
|
|
4234
|
+
"name": "result",
|
|
4235
|
+
"type": "object",
|
|
4236
|
+
"description": "A JSON Object containing status, code and the result",
|
|
4237
|
+
"schema": {
|
|
4238
|
+
"title": "result",
|
|
4239
|
+
"type": "object"
|
|
4240
|
+
}
|
|
4241
|
+
},
|
|
4242
|
+
"roles": [
|
|
4243
|
+
"admin"
|
|
4244
|
+
],
|
|
4245
|
+
"route": {
|
|
4246
|
+
"verb": "POST",
|
|
4247
|
+
"path": "/getNetworkViewWithQuery"
|
|
4248
|
+
},
|
|
4249
|
+
"task": true
|
|
4250
|
+
},
|
|
3453
4251
|
{
|
|
3454
4252
|
"name": "createNetworkView",
|
|
3455
4253
|
"summary": "Creates (POST) Network View",
|
|
@@ -3484,6 +4282,118 @@
|
|
|
3484
4282
|
},
|
|
3485
4283
|
"task": true
|
|
3486
4284
|
},
|
|
4285
|
+
{
|
|
4286
|
+
"name": "getNetworkViewById",
|
|
4287
|
+
"summary": "GET Network view by id",
|
|
4288
|
+
"description": "Fetches network views in your environment by id",
|
|
4289
|
+
"input": [
|
|
4290
|
+
{
|
|
4291
|
+
"name": "viewId",
|
|
4292
|
+
"type": "string",
|
|
4293
|
+
"info": "",
|
|
4294
|
+
"required": true,
|
|
4295
|
+
"schema": {
|
|
4296
|
+
"title": "viewId",
|
|
4297
|
+
"type": "string"
|
|
4298
|
+
}
|
|
4299
|
+
},
|
|
4300
|
+
{
|
|
4301
|
+
"name": "query",
|
|
4302
|
+
"type": "object",
|
|
4303
|
+
"info": "",
|
|
4304
|
+
"required": true,
|
|
4305
|
+
"schema": {
|
|
4306
|
+
"title": "query",
|
|
4307
|
+
"type": "object"
|
|
4308
|
+
}
|
|
4309
|
+
}
|
|
4310
|
+
],
|
|
4311
|
+
"output": {
|
|
4312
|
+
"name": "result",
|
|
4313
|
+
"type": "object",
|
|
4314
|
+
"description": "A JSON Object containing status, code and the result",
|
|
4315
|
+
"schema": {
|
|
4316
|
+
"title": "result",
|
|
4317
|
+
"type": "object"
|
|
4318
|
+
}
|
|
4319
|
+
},
|
|
4320
|
+
"roles": [
|
|
4321
|
+
"admin"
|
|
4322
|
+
],
|
|
4323
|
+
"route": {
|
|
4324
|
+
"verb": "POST",
|
|
4325
|
+
"path": "/getNetworkViewById"
|
|
4326
|
+
},
|
|
4327
|
+
"task": true
|
|
4328
|
+
},
|
|
4329
|
+
{
|
|
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
|
+
}
|
|
4343
|
+
}
|
|
4344
|
+
],
|
|
4345
|
+
"output": {
|
|
4346
|
+
"name": "result",
|
|
4347
|
+
"type": "object",
|
|
4348
|
+
"description": "A JSON Object containing status, code and the result",
|
|
4349
|
+
"schema": {
|
|
4350
|
+
"title": "result",
|
|
4351
|
+
"type": "object"
|
|
4352
|
+
}
|
|
4353
|
+
},
|
|
4354
|
+
"roles": [
|
|
4355
|
+
"admin"
|
|
4356
|
+
],
|
|
4357
|
+
"route": {
|
|
4358
|
+
"verb": "POST",
|
|
4359
|
+
"path": "/updateNetworkView"
|
|
4360
|
+
},
|
|
4361
|
+
"task": true
|
|
4362
|
+
},
|
|
4363
|
+
{
|
|
4364
|
+
"name": "deleteNetworkView",
|
|
4365
|
+
"summary": "Delete Network view",
|
|
4366
|
+
"description": "Delete network views in your environment",
|
|
4367
|
+
"input": [
|
|
4368
|
+
{
|
|
4369
|
+
"name": "viewId",
|
|
4370
|
+
"type": "string",
|
|
4371
|
+
"info": "",
|
|
4372
|
+
"required": true,
|
|
4373
|
+
"schema": {
|
|
4374
|
+
"title": "viewId",
|
|
4375
|
+
"type": "string"
|
|
4376
|
+
}
|
|
4377
|
+
}
|
|
4378
|
+
],
|
|
4379
|
+
"output": {
|
|
4380
|
+
"name": "result",
|
|
4381
|
+
"type": "object",
|
|
4382
|
+
"description": "A JSON Object containing status, code and the result",
|
|
4383
|
+
"schema": {
|
|
4384
|
+
"title": "result",
|
|
4385
|
+
"type": "object"
|
|
4386
|
+
}
|
|
4387
|
+
},
|
|
4388
|
+
"roles": [
|
|
4389
|
+
"admin"
|
|
4390
|
+
],
|
|
4391
|
+
"route": {
|
|
4392
|
+
"verb": "POST",
|
|
4393
|
+
"path": "/deleteNetworkView"
|
|
4394
|
+
},
|
|
4395
|
+
"task": true
|
|
4396
|
+
},
|
|
3487
4397
|
{
|
|
3488
4398
|
"name": "getFixedAddressMac",
|
|
3489
4399
|
"summary": "GET Fixed address MAC",
|
|
@@ -3632,6 +4542,29 @@
|
|
|
3632
4542
|
},
|
|
3633
4543
|
"task": true
|
|
3634
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
|
+
},
|
|
3635
4568
|
{
|
|
3636
4569
|
"name": "getGridPendingChanges",
|
|
3637
4570
|
"summary": "GET grid pending changes",
|
|
@@ -3837,6 +4770,40 @@
|
|
|
3837
4770
|
},
|
|
3838
4771
|
"task": true
|
|
3839
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
|
+
},
|
|
3840
4807
|
{
|
|
3841
4808
|
"name": "createExtensibleAttributeDefinition",
|
|
3842
4809
|
"summary": "Creates (POST) Extensible Attribute Definition",
|
|
@@ -3871,6 +4838,118 @@
|
|
|
3871
4838
|
},
|
|
3872
4839
|
"task": true
|
|
3873
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
|
+
},
|
|
3874
4953
|
{
|
|
3875
4954
|
"name": "extractObjectTypeFromObjectReference",
|
|
3876
4955
|
"summary": "extractObjectTypeFromObjectReference",
|