@itentialopensource/adapter-paragon_pathfinder 1.2.8 → 1.3.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 +0 -1
- package/.jshintrc +3 -0
- package/CALLS.md +144 -212
- package/CHANGELOG.md +8 -0
- package/CONTRIBUTING.md +1 -160
- package/ENHANCE.md +2 -2
- package/README.md +31 -22
- package/adapter.js +163 -334
- package/adapterBase.js +538 -873
- package/changelogs/changelog.md +96 -0
- package/metadata.json +47 -0
- package/package.json +22 -25
- package/pronghorn.json +474 -209
- package/propertiesSchema.json +451 -39
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +69945 -0
- package/report/adapter-openapi.yaml +74294 -0
- package/report/adapterInfo.json +8 -8
- package/report/updateReport1691507543487.json +120 -0
- package/report/updateReport1692202561721.json +120 -0
- package/report/updateReport1694461665971.json +120 -0
- package/report/updateReport1698420920735.json +120 -0
- package/sampleProperties.json +63 -2
- package/test/integration/adapterTestBasicGet.js +1 -1
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +130 -2
- package/test/unit/adapterBaseTestUnit.js +388 -315
- package/test/unit/adapterTestUnit.js +306 -109
- package/utils/adapterInfo.js +1 -1
- package/utils/addAuth.js +1 -1
- package/utils/artifactize.js +1 -1
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +1 -0
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +71 -23
- package/utils/modify.js +13 -15
- package/utils/packModificationScript.js +1 -1
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +3 -10
- package/utils/tbUtils.js +2 -3
- package/utils/testRunner.js +1 -1
- package/utils/troubleshootingAdapter.js +1 -3
- package/workflows/README.md +0 -3
package/pronghorn.json
CHANGED
|
@@ -62,47 +62,22 @@
|
|
|
62
62
|
"title": "action",
|
|
63
63
|
"type": "string"
|
|
64
64
|
}
|
|
65
|
-
}
|
|
66
|
-
],
|
|
67
|
-
"output": {
|
|
68
|
-
"name": "result",
|
|
69
|
-
"type": "object",
|
|
70
|
-
"description": "A JSON Object containing status, code and the result",
|
|
71
|
-
"schema": {
|
|
72
|
-
"title": "result",
|
|
73
|
-
"type": "object"
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
|
-
"roles": [
|
|
77
|
-
"admin"
|
|
78
|
-
],
|
|
79
|
-
"route": {
|
|
80
|
-
"verb": "POST",
|
|
81
|
-
"path": "/iapUpdateAdapterConfiguration"
|
|
82
|
-
},
|
|
83
|
-
"task": true
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"name": "iapFindAdapterPath",
|
|
87
|
-
"summary": "Provides the ability to see if a particular API path is supported by the adapter",
|
|
88
|
-
"description": "Provides the ability to see if a particular API path is supported by the adapter",
|
|
89
|
-
"input": [
|
|
65
|
+
},
|
|
90
66
|
{
|
|
91
|
-
"name": "
|
|
92
|
-
"type": "
|
|
93
|
-
"info": "
|
|
94
|
-
"
|
|
67
|
+
"name" : "replace",
|
|
68
|
+
"type": "boolean",
|
|
69
|
+
"info": "True to replace entire mock data, false to merge/append",
|
|
70
|
+
"required": false,
|
|
95
71
|
"schema": {
|
|
96
|
-
"title": "
|
|
97
|
-
"type": "
|
|
98
|
-
}
|
|
99
|
-
"required": true
|
|
72
|
+
"title": "replace",
|
|
73
|
+
"type" : "boolean"
|
|
74
|
+
}
|
|
100
75
|
}
|
|
101
76
|
],
|
|
102
77
|
"output": {
|
|
103
78
|
"name": "result",
|
|
104
79
|
"type": "object",
|
|
105
|
-
"description": "A JSON Object containing the result",
|
|
80
|
+
"description": "A JSON Object containing status, code and the result",
|
|
106
81
|
"schema": {
|
|
107
82
|
"title": "result",
|
|
108
83
|
"type": "object"
|
|
@@ -113,7 +88,7 @@
|
|
|
113
88
|
],
|
|
114
89
|
"route": {
|
|
115
90
|
"verb": "POST",
|
|
116
|
-
"path": "/
|
|
91
|
+
"path": "/iapUpdateAdapterConfiguration"
|
|
117
92
|
},
|
|
118
93
|
"task": true
|
|
119
94
|
},
|
|
@@ -202,6 +177,41 @@
|
|
|
202
177
|
},
|
|
203
178
|
"task": true
|
|
204
179
|
},
|
|
180
|
+
{
|
|
181
|
+
"name": "iapFindAdapterPath",
|
|
182
|
+
"summary": "Provides the ability to see if a particular API path is supported by the adapter",
|
|
183
|
+
"description": "Provides the ability to see if a particular API path is supported by the adapter",
|
|
184
|
+
"input": [
|
|
185
|
+
{
|
|
186
|
+
"name": "apiPath",
|
|
187
|
+
"type": "string",
|
|
188
|
+
"info": "The API Path you want to check - make sure to not include base path and version",
|
|
189
|
+
"description": "The API Path you want to check - make sure to not include base path and version",
|
|
190
|
+
"schema": {
|
|
191
|
+
"title": "apiPath",
|
|
192
|
+
"type": "string"
|
|
193
|
+
},
|
|
194
|
+
"required": true
|
|
195
|
+
}
|
|
196
|
+
],
|
|
197
|
+
"output": {
|
|
198
|
+
"name": "result",
|
|
199
|
+
"type": "object",
|
|
200
|
+
"description": "A JSON Object containing the result",
|
|
201
|
+
"schema": {
|
|
202
|
+
"title": "result",
|
|
203
|
+
"type": "object"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
"roles": [
|
|
207
|
+
"admin"
|
|
208
|
+
],
|
|
209
|
+
"route": {
|
|
210
|
+
"verb": "POST",
|
|
211
|
+
"path": "/iapFindAdapterPath"
|
|
212
|
+
},
|
|
213
|
+
"task": true
|
|
214
|
+
},
|
|
205
215
|
{
|
|
206
216
|
"name": "iapTroubleshootAdapter",
|
|
207
217
|
"summary": "Runs troubleshoot script for adapter",
|
|
@@ -221,7 +231,11 @@
|
|
|
221
231
|
"name": "persistFlag",
|
|
222
232
|
"type": "boolean",
|
|
223
233
|
"info": "Whether the input properties should be saved",
|
|
224
|
-
"required": true
|
|
234
|
+
"required": true,
|
|
235
|
+
"schema": {
|
|
236
|
+
"title": "persistFlag",
|
|
237
|
+
"type": "boolean"
|
|
238
|
+
}
|
|
225
239
|
}
|
|
226
240
|
],
|
|
227
241
|
"output": {
|
|
@@ -250,7 +264,11 @@
|
|
|
250
264
|
"output": {
|
|
251
265
|
"name": "result",
|
|
252
266
|
"type": "boolean",
|
|
253
|
-
"description": "Whether healthcheck passed or failed"
|
|
267
|
+
"description": "Whether healthcheck passed or failed",
|
|
268
|
+
"schema": {
|
|
269
|
+
"title": "result",
|
|
270
|
+
"type": "boolean"
|
|
271
|
+
}
|
|
254
272
|
},
|
|
255
273
|
"roles": [
|
|
256
274
|
"admin"
|
|
@@ -331,64 +349,85 @@
|
|
|
331
349
|
"task": true
|
|
332
350
|
},
|
|
333
351
|
{
|
|
334
|
-
"name": "
|
|
335
|
-
"summary": "
|
|
336
|
-
"description": "
|
|
352
|
+
"name": "iapDeactivateTasks",
|
|
353
|
+
"summary": "Deactivate the inputted tasks",
|
|
354
|
+
"description": "Deactivate the inputted tasks",
|
|
337
355
|
"input": [
|
|
338
356
|
{
|
|
339
|
-
"name": "
|
|
340
|
-
"type": "
|
|
341
|
-
"
|
|
342
|
-
"description": "the path of the api call",
|
|
343
|
-
"schema": {
|
|
344
|
-
"title": "uriPath",
|
|
345
|
-
"type": "string"
|
|
346
|
-
},
|
|
347
|
-
"required": true
|
|
348
|
-
},
|
|
349
|
-
{
|
|
350
|
-
"name": "restMethod",
|
|
351
|
-
"type": "string",
|
|
352
|
-
"info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
353
|
-
"description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
354
|
-
"schema": {
|
|
355
|
-
"title": "restMethod",
|
|
356
|
-
"type": "string"
|
|
357
|
-
},
|
|
358
|
-
"required": true
|
|
359
|
-
},
|
|
360
|
-
{
|
|
361
|
-
"name": "queryData",
|
|
362
|
-
"type": "object",
|
|
363
|
-
"info": "the query parameters to be put on the url (optional)",
|
|
364
|
-
"description": "the query parameters to be put on the url (optional)",
|
|
357
|
+
"name": "tasks",
|
|
358
|
+
"type": "array",
|
|
359
|
+
"description": "Tasks to deactivate",
|
|
365
360
|
"schema": {
|
|
366
|
-
"title": "
|
|
367
|
-
"type": "
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
|
|
361
|
+
"title": "tasks",
|
|
362
|
+
"type": "array"
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
],
|
|
366
|
+
"output": {
|
|
367
|
+
"name": "result",
|
|
368
|
+
"type": "object",
|
|
369
|
+
"description": "A JSON Object containing success status",
|
|
370
|
+
"schema": {
|
|
371
|
+
"title": "result",
|
|
372
|
+
"type": "object"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"roles": [
|
|
376
|
+
"admin"
|
|
377
|
+
],
|
|
378
|
+
"route": {
|
|
379
|
+
"verb": "POST",
|
|
380
|
+
"path": "/iapDeactivateTasks"
|
|
381
|
+
},
|
|
382
|
+
"task": true
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"name": "iapActivateTasks",
|
|
386
|
+
"summary": "Activate the inputted tasks",
|
|
387
|
+
"description": "activate the inputted tasks",
|
|
388
|
+
"input": [
|
|
371
389
|
{
|
|
372
|
-
"name": "
|
|
373
|
-
"type": "
|
|
374
|
-
"
|
|
375
|
-
"description": "the payload to be sent with the request (optional)",
|
|
390
|
+
"name": "tasks",
|
|
391
|
+
"type": "array",
|
|
392
|
+
"description": "Tasks to activate",
|
|
376
393
|
"schema": {
|
|
377
|
-
"title": "
|
|
378
|
-
"type": "
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
|
|
394
|
+
"title": "tasks",
|
|
395
|
+
"type": "array"
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
],
|
|
399
|
+
"output": {
|
|
400
|
+
"name": "result",
|
|
401
|
+
"type": "object",
|
|
402
|
+
"description": "A JSON Object containing success status",
|
|
403
|
+
"schema": {
|
|
404
|
+
"title": "result",
|
|
405
|
+
"type": "object"
|
|
406
|
+
}
|
|
407
|
+
},
|
|
408
|
+
"roles": [
|
|
409
|
+
"admin"
|
|
410
|
+
],
|
|
411
|
+
"route": {
|
|
412
|
+
"verb": "POST",
|
|
413
|
+
"path": "/iapActivateTasks"
|
|
414
|
+
},
|
|
415
|
+
"task": true
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"name": "iapPopulateEntityCache",
|
|
419
|
+
"summary": "Populate the cache for the given entities",
|
|
420
|
+
"description": "Populate the cache for the given entities",
|
|
421
|
+
"input": [
|
|
382
422
|
{
|
|
383
|
-
"name": "
|
|
384
|
-
"type": "
|
|
385
|
-
"info": "
|
|
386
|
-
"
|
|
423
|
+
"name": "entityTypes",
|
|
424
|
+
"type": "array",
|
|
425
|
+
"info": "the entity type(s) to populate",
|
|
426
|
+
"required": true,
|
|
387
427
|
"schema": {
|
|
388
|
-
"title": "
|
|
389
|
-
"type": "
|
|
390
|
-
}
|
|
391
|
-
"required": false
|
|
428
|
+
"title": "entityTypes",
|
|
429
|
+
"type": "array"
|
|
430
|
+
}
|
|
392
431
|
}
|
|
393
432
|
],
|
|
394
433
|
"output": {
|
|
@@ -405,69 +444,34 @@
|
|
|
405
444
|
],
|
|
406
445
|
"route": {
|
|
407
446
|
"verb": "POST",
|
|
408
|
-
"path": "/
|
|
447
|
+
"path": "/iapPopulateEntityCache"
|
|
409
448
|
},
|
|
410
449
|
"task": true
|
|
411
450
|
},
|
|
412
451
|
{
|
|
413
|
-
"name": "
|
|
414
|
-
"summary": "
|
|
415
|
-
"description": "
|
|
452
|
+
"name": "iapRetrieveEntitiesCache",
|
|
453
|
+
"summary": "Retrieves data from cache for specified entity type",
|
|
454
|
+
"description": "Retrieves data from cache for specified entity type",
|
|
416
455
|
"input": [
|
|
417
456
|
{
|
|
418
|
-
"name": "
|
|
419
|
-
"type": "string",
|
|
420
|
-
"info": "the path of the api call - do not include the host, port, base path or version",
|
|
421
|
-
"description": "the path of the api call",
|
|
422
|
-
"schema": {
|
|
423
|
-
"title": "uriPath",
|
|
424
|
-
"type": "string"
|
|
425
|
-
},
|
|
426
|
-
"required": true
|
|
427
|
-
},
|
|
428
|
-
{
|
|
429
|
-
"name": "restMethod",
|
|
457
|
+
"name": "entityType",
|
|
430
458
|
"type": "string",
|
|
431
|
-
"info": "
|
|
432
|
-
"
|
|
459
|
+
"info": "entity of which to retrieve",
|
|
460
|
+
"required": true,
|
|
433
461
|
"schema": {
|
|
434
|
-
"title": "
|
|
462
|
+
"title": "entityType",
|
|
435
463
|
"type": "string"
|
|
436
|
-
}
|
|
437
|
-
"required": true
|
|
438
|
-
},
|
|
439
|
-
{
|
|
440
|
-
"name": "queryData",
|
|
441
|
-
"type": "object",
|
|
442
|
-
"info": "the query parameters to be put on the url (optional)",
|
|
443
|
-
"description": "the query parameters to be put on the url (optional)",
|
|
444
|
-
"schema": {
|
|
445
|
-
"title": "queryData",
|
|
446
|
-
"type": "object"
|
|
447
|
-
},
|
|
448
|
-
"required": false
|
|
449
|
-
},
|
|
450
|
-
{
|
|
451
|
-
"name": "requestBody",
|
|
452
|
-
"type": "object",
|
|
453
|
-
"info": "the payload to be sent with the request (optional)",
|
|
454
|
-
"description": "the payload to be sent with the request (optional)",
|
|
455
|
-
"schema": {
|
|
456
|
-
"title": "requestBody",
|
|
457
|
-
"type": "object"
|
|
458
|
-
},
|
|
459
|
-
"required": false
|
|
464
|
+
}
|
|
460
465
|
},
|
|
461
466
|
{
|
|
462
|
-
"name": "
|
|
467
|
+
"name": "options",
|
|
463
468
|
"type": "object",
|
|
464
|
-
"info": "
|
|
465
|
-
"
|
|
469
|
+
"info": "settings of which data to return and how to return it",
|
|
470
|
+
"required": false,
|
|
466
471
|
"schema": {
|
|
467
|
-
"title": "
|
|
472
|
+
"title": "options",
|
|
468
473
|
"type": "object"
|
|
469
|
-
}
|
|
470
|
-
"required": false
|
|
474
|
+
}
|
|
471
475
|
}
|
|
472
476
|
],
|
|
473
477
|
"output": {
|
|
@@ -484,7 +488,7 @@
|
|
|
484
488
|
],
|
|
485
489
|
"route": {
|
|
486
490
|
"verb": "POST",
|
|
487
|
-
"path": "/
|
|
491
|
+
"path": "/iapRetrieveEntitiesCache"
|
|
488
492
|
},
|
|
489
493
|
"task": true
|
|
490
494
|
},
|
|
@@ -520,7 +524,7 @@
|
|
|
520
524
|
"verb": "POST",
|
|
521
525
|
"path": "/getDevice"
|
|
522
526
|
},
|
|
523
|
-
"task":
|
|
527
|
+
"task": false
|
|
524
528
|
},
|
|
525
529
|
{
|
|
526
530
|
"name": "getDevicesFiltered",
|
|
@@ -554,7 +558,7 @@
|
|
|
554
558
|
"verb": "POST",
|
|
555
559
|
"path": "/getDevicesFiltered"
|
|
556
560
|
},
|
|
557
|
-
"task":
|
|
561
|
+
"task": false
|
|
558
562
|
},
|
|
559
563
|
{
|
|
560
564
|
"name": "isAlive",
|
|
@@ -588,7 +592,7 @@
|
|
|
588
592
|
"verb": "POST",
|
|
589
593
|
"path": "/isAlive"
|
|
590
594
|
},
|
|
591
|
-
"task":
|
|
595
|
+
"task": false
|
|
592
596
|
},
|
|
593
597
|
{
|
|
594
598
|
"name": "getConfig",
|
|
@@ -632,7 +636,7 @@
|
|
|
632
636
|
"verb": "POST",
|
|
633
637
|
"path": "/getConfig"
|
|
634
638
|
},
|
|
635
|
-
"task":
|
|
639
|
+
"task": false
|
|
636
640
|
},
|
|
637
641
|
{
|
|
638
642
|
"name": "iapGetDeviceCount",
|
|
@@ -655,6 +659,334 @@
|
|
|
655
659
|
"verb": "POST",
|
|
656
660
|
"path": "/iapGetDeviceCount"
|
|
657
661
|
},
|
|
662
|
+
"task": false
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"name": "iapExpandedGenericAdapterRequest",
|
|
666
|
+
"summary": "Makes the requested generic call with additional options",
|
|
667
|
+
"description": "Makes the requested generic call with additional options via metadata",
|
|
668
|
+
"input": [
|
|
669
|
+
{
|
|
670
|
+
"name": "metadata",
|
|
671
|
+
"type": "object",
|
|
672
|
+
"info": "metadata for the call (optional)",
|
|
673
|
+
"description": "metadata for the call - allows for many enhancements (optional)",
|
|
674
|
+
"schema": {
|
|
675
|
+
"title": "metadata",
|
|
676
|
+
"type": "object"
|
|
677
|
+
},
|
|
678
|
+
"required": false
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"name": "uriPath",
|
|
682
|
+
"type": "string",
|
|
683
|
+
"info": "the path of the api call - do not include the host, port, base path or version",
|
|
684
|
+
"description": "the path of the api call",
|
|
685
|
+
"schema": {
|
|
686
|
+
"title": "uriPath",
|
|
687
|
+
"type": "string"
|
|
688
|
+
},
|
|
689
|
+
"required": false
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"name": "restMethod",
|
|
693
|
+
"type": "string",
|
|
694
|
+
"info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
695
|
+
"description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
696
|
+
"schema": {
|
|
697
|
+
"title": "restMethod",
|
|
698
|
+
"type": "string"
|
|
699
|
+
},
|
|
700
|
+
"required": false
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"name": "pathVars",
|
|
704
|
+
"type": "object",
|
|
705
|
+
"info": "the parameters to be put within the url path (optional)",
|
|
706
|
+
"description": "the parameters to be put within the url path (optional)",
|
|
707
|
+
"schema": {
|
|
708
|
+
"title": "pathVars",
|
|
709
|
+
"type": "object"
|
|
710
|
+
},
|
|
711
|
+
"required": false
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
"name": "queryData",
|
|
715
|
+
"type": "object",
|
|
716
|
+
"info": "the query parameters to be put on the url (optional)",
|
|
717
|
+
"description": "the query parameters to be put on the url (optional)",
|
|
718
|
+
"schema": {
|
|
719
|
+
"title": "queryData",
|
|
720
|
+
"type": "object"
|
|
721
|
+
},
|
|
722
|
+
"required": false
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"name": "requestBody",
|
|
726
|
+
"type": "object",
|
|
727
|
+
"info": "the payload to be sent with the request (optional)",
|
|
728
|
+
"description": "the payload to be sent with the request (optional)",
|
|
729
|
+
"schema": {
|
|
730
|
+
"title": "requestBody",
|
|
731
|
+
"type": "object"
|
|
732
|
+
},
|
|
733
|
+
"required": false
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"name": "addlHeaders",
|
|
737
|
+
"type": "object",
|
|
738
|
+
"info": "additional headers to be put on the call (optional)",
|
|
739
|
+
"description": "additional headers to be put on the call (optional)",
|
|
740
|
+
"schema": {
|
|
741
|
+
"title": "addlHeaders",
|
|
742
|
+
"type": "object"
|
|
743
|
+
},
|
|
744
|
+
"required": false
|
|
745
|
+
}
|
|
746
|
+
],
|
|
747
|
+
"output": {
|
|
748
|
+
"name": "result",
|
|
749
|
+
"type": "object",
|
|
750
|
+
"description": "A JSON Object containing status, code and the result",
|
|
751
|
+
"schema": {
|
|
752
|
+
"title": "result",
|
|
753
|
+
"type": "object"
|
|
754
|
+
}
|
|
755
|
+
},
|
|
756
|
+
"roles": [
|
|
757
|
+
"admin"
|
|
758
|
+
],
|
|
759
|
+
"route": {
|
|
760
|
+
"verb": "POST",
|
|
761
|
+
"path": "/iapExpandedGenericAdapterRequest"
|
|
762
|
+
},
|
|
763
|
+
"task": true
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"name": "genericAdapterRequest",
|
|
767
|
+
"summary": "Makes the requested generic call",
|
|
768
|
+
"description": "Makes the requested generic call",
|
|
769
|
+
"input": [
|
|
770
|
+
{
|
|
771
|
+
"name": "uriPath",
|
|
772
|
+
"type": "string",
|
|
773
|
+
"info": "the path of the api call - do not include the host, port, base path or version",
|
|
774
|
+
"description": "the path of the api call",
|
|
775
|
+
"schema": {
|
|
776
|
+
"title": "uriPath",
|
|
777
|
+
"type": "string"
|
|
778
|
+
},
|
|
779
|
+
"required": true
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"name": "restMethod",
|
|
783
|
+
"type": "string",
|
|
784
|
+
"info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
785
|
+
"description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
786
|
+
"schema": {
|
|
787
|
+
"title": "restMethod",
|
|
788
|
+
"type": "string"
|
|
789
|
+
},
|
|
790
|
+
"required": true
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"name": "queryData",
|
|
794
|
+
"type": "object",
|
|
795
|
+
"info": "the query parameters to be put on the url (optional)",
|
|
796
|
+
"description": "the query parameters to be put on the url (optional)",
|
|
797
|
+
"schema": {
|
|
798
|
+
"title": "queryData",
|
|
799
|
+
"type": "object"
|
|
800
|
+
},
|
|
801
|
+
"required": false
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"name": "requestBody",
|
|
805
|
+
"type": "object",
|
|
806
|
+
"info": "the payload to be sent with the request (optional)",
|
|
807
|
+
"description": "the payload to be sent with the request (optional)",
|
|
808
|
+
"schema": {
|
|
809
|
+
"title": "requestBody",
|
|
810
|
+
"type": "object"
|
|
811
|
+
},
|
|
812
|
+
"required": false
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"name": "addlHeaders",
|
|
816
|
+
"type": "object",
|
|
817
|
+
"info": "additional headers to be put on the call (optional)",
|
|
818
|
+
"description": "additional headers to be put on the call (optional)",
|
|
819
|
+
"schema": {
|
|
820
|
+
"title": "addlHeaders",
|
|
821
|
+
"type": "object"
|
|
822
|
+
},
|
|
823
|
+
"required": false
|
|
824
|
+
}
|
|
825
|
+
],
|
|
826
|
+
"output": {
|
|
827
|
+
"name": "result",
|
|
828
|
+
"type": "object",
|
|
829
|
+
"description": "A JSON Object containing status, code and the result",
|
|
830
|
+
"schema": {
|
|
831
|
+
"title": "result",
|
|
832
|
+
"type": "object"
|
|
833
|
+
}
|
|
834
|
+
},
|
|
835
|
+
"roles": [
|
|
836
|
+
"admin"
|
|
837
|
+
],
|
|
838
|
+
"route": {
|
|
839
|
+
"verb": "POST",
|
|
840
|
+
"path": "/genericAdapterRequest"
|
|
841
|
+
},
|
|
842
|
+
"task": true
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"name": "genericAdapterRequestNoBasePath",
|
|
846
|
+
"summary": "Makes the requested generic call",
|
|
847
|
+
"description": "Makes the requested generic call",
|
|
848
|
+
"input": [
|
|
849
|
+
{
|
|
850
|
+
"name": "uriPath",
|
|
851
|
+
"type": "string",
|
|
852
|
+
"info": "the path of the api call - do not include the host, port, base path or version",
|
|
853
|
+
"description": "the path of the api call",
|
|
854
|
+
"schema": {
|
|
855
|
+
"title": "uriPath",
|
|
856
|
+
"type": "string"
|
|
857
|
+
},
|
|
858
|
+
"required": true
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"name": "restMethod",
|
|
862
|
+
"type": "string",
|
|
863
|
+
"info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
864
|
+
"description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
865
|
+
"schema": {
|
|
866
|
+
"title": "restMethod",
|
|
867
|
+
"type": "string"
|
|
868
|
+
},
|
|
869
|
+
"required": true
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"name": "queryData",
|
|
873
|
+
"type": "object",
|
|
874
|
+
"info": "the query parameters to be put on the url (optional)",
|
|
875
|
+
"description": "the query parameters to be put on the url (optional)",
|
|
876
|
+
"schema": {
|
|
877
|
+
"title": "queryData",
|
|
878
|
+
"type": "object"
|
|
879
|
+
},
|
|
880
|
+
"required": false
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"name": "requestBody",
|
|
884
|
+
"type": "object",
|
|
885
|
+
"info": "the payload to be sent with the request (optional)",
|
|
886
|
+
"description": "the payload to be sent with the request (optional)",
|
|
887
|
+
"schema": {
|
|
888
|
+
"title": "requestBody",
|
|
889
|
+
"type": "object"
|
|
890
|
+
},
|
|
891
|
+
"required": false
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"name": "addlHeaders",
|
|
895
|
+
"type": "object",
|
|
896
|
+
"info": "additional headers to be put on the call (optional)",
|
|
897
|
+
"description": "additional headers to be put on the call (optional)",
|
|
898
|
+
"schema": {
|
|
899
|
+
"title": "addlHeaders",
|
|
900
|
+
"type": "object"
|
|
901
|
+
},
|
|
902
|
+
"required": false
|
|
903
|
+
}
|
|
904
|
+
],
|
|
905
|
+
"output": {
|
|
906
|
+
"name": "result",
|
|
907
|
+
"type": "object",
|
|
908
|
+
"description": "A JSON Object containing status, code and the result",
|
|
909
|
+
"schema": {
|
|
910
|
+
"title": "result",
|
|
911
|
+
"type": "object"
|
|
912
|
+
}
|
|
913
|
+
},
|
|
914
|
+
"roles": [
|
|
915
|
+
"admin"
|
|
916
|
+
],
|
|
917
|
+
"route": {
|
|
918
|
+
"verb": "POST",
|
|
919
|
+
"path": "/genericAdapterRequestNoBasePath"
|
|
920
|
+
},
|
|
921
|
+
"task": true
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
"name": "iapRunAdapterLint",
|
|
925
|
+
"summary": "Run the adapter lint script to return the results",
|
|
926
|
+
"description": "Run the adapter lint script to return the results",
|
|
927
|
+
"input": [],
|
|
928
|
+
"output": {
|
|
929
|
+
"name": "result",
|
|
930
|
+
"type": "string",
|
|
931
|
+
"description": "A string containing the run results",
|
|
932
|
+
"schema": {
|
|
933
|
+
"title": "result",
|
|
934
|
+
"type": "string"
|
|
935
|
+
}
|
|
936
|
+
},
|
|
937
|
+
"roles": [
|
|
938
|
+
"admin"
|
|
939
|
+
],
|
|
940
|
+
"route": {
|
|
941
|
+
"verb": "GET",
|
|
942
|
+
"path": "/iapRunAdapterLint"
|
|
943
|
+
},
|
|
944
|
+
"task": true
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
"name": "iapRunAdapterTests",
|
|
948
|
+
"summary": "Run the adapter test scripts (baseunit and unit) to return the results",
|
|
949
|
+
"description": "Run the adapter test scripts (baseunit and unit) to return the results",
|
|
950
|
+
"input": [],
|
|
951
|
+
"output": {
|
|
952
|
+
"name": "result",
|
|
953
|
+
"type": "object",
|
|
954
|
+
"description": "A JSON Object containing status, code and the result",
|
|
955
|
+
"schema": {
|
|
956
|
+
"title": "result",
|
|
957
|
+
"type": "object"
|
|
958
|
+
}
|
|
959
|
+
},
|
|
960
|
+
"roles": [
|
|
961
|
+
"admin"
|
|
962
|
+
],
|
|
963
|
+
"route": {
|
|
964
|
+
"verb": "GET",
|
|
965
|
+
"path": "/iapRunAdapterTests"
|
|
966
|
+
},
|
|
967
|
+
"task": true
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"name": "iapGetAdapterInventory",
|
|
971
|
+
"summary": "Provide inventory information abbout the adapter",
|
|
972
|
+
"description": "Provide inventory information abbout the adapter",
|
|
973
|
+
"input": [],
|
|
974
|
+
"output": {
|
|
975
|
+
"name": "result",
|
|
976
|
+
"type": "object",
|
|
977
|
+
"description": "A JSON Object containing status, code and the result",
|
|
978
|
+
"schema": {
|
|
979
|
+
"title": "result",
|
|
980
|
+
"type": "object"
|
|
981
|
+
}
|
|
982
|
+
},
|
|
983
|
+
"roles": [
|
|
984
|
+
"admin"
|
|
985
|
+
],
|
|
986
|
+
"route": {
|
|
987
|
+
"verb": "GET",
|
|
988
|
+
"path": "/iapGetAdapterInventory"
|
|
989
|
+
},
|
|
658
990
|
"task": true
|
|
659
991
|
},
|
|
660
992
|
{
|
|
@@ -1193,7 +1525,6 @@
|
|
|
1193
1525
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
1194
1526
|
"maxLength": 255,
|
|
1195
1527
|
"minLength": 1,
|
|
1196
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
1197
1528
|
"type": "string"
|
|
1198
1529
|
},
|
|
1199
1530
|
"nodeType": {
|
|
@@ -1778,7 +2109,6 @@
|
|
|
1778
2109
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
1779
2110
|
"maxLength": 255,
|
|
1780
2111
|
"minLength": 1,
|
|
1781
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
1782
2112
|
"type": "string"
|
|
1783
2113
|
},
|
|
1784
2114
|
"nodeType": {
|
|
@@ -2275,7 +2605,6 @@
|
|
|
2275
2605
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
2276
2606
|
"maxLength": 255,
|
|
2277
2607
|
"minLength": 1,
|
|
2278
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
2279
2608
|
"type": "string"
|
|
2280
2609
|
},
|
|
2281
2610
|
"ipRole": {
|
|
@@ -2295,7 +2624,6 @@
|
|
|
2295
2624
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
2296
2625
|
"maxLength": 255,
|
|
2297
2626
|
"minLength": 1,
|
|
2298
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
2299
2627
|
"type": "string"
|
|
2300
2628
|
},
|
|
2301
2629
|
"nodeIndex": {
|
|
@@ -2962,7 +3290,6 @@
|
|
|
2962
3290
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
2963
3291
|
"maxLength": 255,
|
|
2964
3292
|
"minLength": 1,
|
|
2965
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
2966
3293
|
"type": "string"
|
|
2967
3294
|
},
|
|
2968
3295
|
"ipRole": {
|
|
@@ -2982,7 +3309,6 @@
|
|
|
2982
3309
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
2983
3310
|
"maxLength": 255,
|
|
2984
3311
|
"minLength": 1,
|
|
2985
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
2986
3312
|
"type": "string"
|
|
2987
3313
|
},
|
|
2988
3314
|
"nodeIndex": {
|
|
@@ -3933,7 +4259,6 @@
|
|
|
3933
4259
|
},
|
|
3934
4260
|
"name": {
|
|
3935
4261
|
"description": "object name, string without space, comma",
|
|
3936
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
3937
4262
|
"type": "string"
|
|
3938
4263
|
},
|
|
3939
4264
|
"node": {
|
|
@@ -4074,7 +4399,6 @@
|
|
|
4074
4399
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
4075
4400
|
"maxLength": 255,
|
|
4076
4401
|
"minLength": 1,
|
|
4077
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
4078
4402
|
"type": "string"
|
|
4079
4403
|
},
|
|
4080
4404
|
"layer": {
|
|
@@ -4093,7 +4417,6 @@
|
|
|
4093
4417
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
4094
4418
|
"maxLength": 255,
|
|
4095
4419
|
"minLength": 1,
|
|
4096
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
4097
4420
|
"type": "string"
|
|
4098
4421
|
},
|
|
4099
4422
|
"nodeIndex": {
|
|
@@ -4961,7 +5284,6 @@
|
|
|
4961
5284
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
4962
5285
|
"maxLength": 255,
|
|
4963
5286
|
"minLength": 1,
|
|
4964
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
4965
5287
|
"type": "string"
|
|
4966
5288
|
},
|
|
4967
5289
|
"layer": {
|
|
@@ -4980,7 +5302,6 @@
|
|
|
4980
5302
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
4981
5303
|
"maxLength": 255,
|
|
4982
5304
|
"minLength": 1,
|
|
4983
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
4984
5305
|
"type": "string"
|
|
4985
5306
|
},
|
|
4986
5307
|
"nodeIndex": {
|
|
@@ -5850,7 +6171,6 @@
|
|
|
5850
6171
|
},
|
|
5851
6172
|
"name": {
|
|
5852
6173
|
"description": "object name, string without space, comma",
|
|
5853
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
5854
6174
|
"type": "string"
|
|
5855
6175
|
},
|
|
5856
6176
|
"node": {
|
|
@@ -5991,7 +6311,6 @@
|
|
|
5991
6311
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
5992
6312
|
"maxLength": 255,
|
|
5993
6313
|
"minLength": 1,
|
|
5994
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
5995
6314
|
"type": "string"
|
|
5996
6315
|
},
|
|
5997
6316
|
"layer": {
|
|
@@ -6010,7 +6329,6 @@
|
|
|
6010
6329
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
6011
6330
|
"maxLength": 255,
|
|
6012
6331
|
"minLength": 1,
|
|
6013
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
6014
6332
|
"type": "string"
|
|
6015
6333
|
},
|
|
6016
6334
|
"nodeIndex": {
|
|
@@ -6878,7 +7196,6 @@
|
|
|
6878
7196
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
6879
7197
|
"maxLength": 255,
|
|
6880
7198
|
"minLength": 1,
|
|
6881
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
6882
7199
|
"type": "string"
|
|
6883
7200
|
},
|
|
6884
7201
|
"layer": {
|
|
@@ -6897,7 +7214,6 @@
|
|
|
6897
7214
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
6898
7215
|
"maxLength": 255,
|
|
6899
7216
|
"minLength": 1,
|
|
6900
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
6901
7217
|
"type": "string"
|
|
6902
7218
|
},
|
|
6903
7219
|
"nodeIndex": {
|
|
@@ -7625,7 +7941,6 @@
|
|
|
7625
7941
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
7626
7942
|
"maxLength": 255,
|
|
7627
7943
|
"minLength": 1,
|
|
7628
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
7629
7944
|
"type": "string"
|
|
7630
7945
|
},
|
|
7631
7946
|
"slices": {
|
|
@@ -8112,7 +8427,6 @@
|
|
|
8112
8427
|
},
|
|
8113
8428
|
"name": {
|
|
8114
8429
|
"description": "object name, string without space, comma",
|
|
8115
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
8116
8430
|
"type": "string"
|
|
8117
8431
|
},
|
|
8118
8432
|
"node": {
|
|
@@ -8253,7 +8567,6 @@
|
|
|
8253
8567
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
8254
8568
|
"maxLength": 255,
|
|
8255
8569
|
"minLength": 1,
|
|
8256
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
8257
8570
|
"type": "string"
|
|
8258
8571
|
},
|
|
8259
8572
|
"layer": {
|
|
@@ -8272,7 +8585,6 @@
|
|
|
8272
8585
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
8273
8586
|
"maxLength": 255,
|
|
8274
8587
|
"minLength": 1,
|
|
8275
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
8276
8588
|
"type": "string"
|
|
8277
8589
|
},
|
|
8278
8590
|
"nodeIndex": {
|
|
@@ -9140,7 +9452,6 @@
|
|
|
9140
9452
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
9141
9453
|
"maxLength": 255,
|
|
9142
9454
|
"minLength": 1,
|
|
9143
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
9144
9455
|
"type": "string"
|
|
9145
9456
|
},
|
|
9146
9457
|
"layer": {
|
|
@@ -9159,7 +9470,6 @@
|
|
|
9159
9470
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
9160
9471
|
"maxLength": 255,
|
|
9161
9472
|
"minLength": 1,
|
|
9162
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
9163
9473
|
"type": "string"
|
|
9164
9474
|
},
|
|
9165
9475
|
"nodeIndex": {
|
|
@@ -10029,7 +10339,6 @@
|
|
|
10029
10339
|
},
|
|
10030
10340
|
"name": {
|
|
10031
10341
|
"description": "object name, string without space, comma",
|
|
10032
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
10033
10342
|
"type": "string"
|
|
10034
10343
|
},
|
|
10035
10344
|
"node": {
|
|
@@ -10170,7 +10479,6 @@
|
|
|
10170
10479
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
10171
10480
|
"maxLength": 255,
|
|
10172
10481
|
"minLength": 1,
|
|
10173
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
10174
10482
|
"type": "string"
|
|
10175
10483
|
},
|
|
10176
10484
|
"layer": {
|
|
@@ -10189,7 +10497,6 @@
|
|
|
10189
10497
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
10190
10498
|
"maxLength": 255,
|
|
10191
10499
|
"minLength": 1,
|
|
10192
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
10193
10500
|
"type": "string"
|
|
10194
10501
|
},
|
|
10195
10502
|
"nodeIndex": {
|
|
@@ -11057,7 +11364,6 @@
|
|
|
11057
11364
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
11058
11365
|
"maxLength": 255,
|
|
11059
11366
|
"minLength": 1,
|
|
11060
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
11061
11367
|
"type": "string"
|
|
11062
11368
|
},
|
|
11063
11369
|
"layer": {
|
|
@@ -11076,7 +11382,6 @@
|
|
|
11076
11382
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
11077
11383
|
"maxLength": 255,
|
|
11078
11384
|
"minLength": 1,
|
|
11079
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
11080
11385
|
"type": "string"
|
|
11081
11386
|
},
|
|
11082
11387
|
"nodeIndex": {
|
|
@@ -11763,7 +12068,6 @@
|
|
|
11763
12068
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
11764
12069
|
"maxLength": 255,
|
|
11765
12070
|
"minLength": 1,
|
|
11766
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
11767
12071
|
"type": "string"
|
|
11768
12072
|
},
|
|
11769
12073
|
"interfaceSwitchingCapabilities": {
|
|
@@ -11815,7 +12119,6 @@
|
|
|
11815
12119
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
11816
12120
|
"maxLength": 255,
|
|
11817
12121
|
"minLength": 1,
|
|
11818
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
11819
12122
|
"type": "string"
|
|
11820
12123
|
},
|
|
11821
12124
|
"slices": {
|
|
@@ -12314,7 +12617,6 @@
|
|
|
12314
12617
|
},
|
|
12315
12618
|
"name": {
|
|
12316
12619
|
"description": "object name, string without space, comma",
|
|
12317
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
12318
12620
|
"type": "string"
|
|
12319
12621
|
},
|
|
12320
12622
|
"node": {
|
|
@@ -12455,7 +12757,6 @@
|
|
|
12455
12757
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
12456
12758
|
"maxLength": 255,
|
|
12457
12759
|
"minLength": 1,
|
|
12458
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
12459
12760
|
"type": "string"
|
|
12460
12761
|
},
|
|
12461
12762
|
"layer": {
|
|
@@ -12474,7 +12775,6 @@
|
|
|
12474
12775
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
12475
12776
|
"maxLength": 255,
|
|
12476
12777
|
"minLength": 1,
|
|
12477
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
12478
12778
|
"type": "string"
|
|
12479
12779
|
},
|
|
12480
12780
|
"nodeIndex": {
|
|
@@ -13386,7 +13686,6 @@
|
|
|
13386
13686
|
},
|
|
13387
13687
|
"name": {
|
|
13388
13688
|
"description": "object name, string without space, comma",
|
|
13389
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
13390
13689
|
"type": "string"
|
|
13391
13690
|
},
|
|
13392
13691
|
"node": {
|
|
@@ -13527,7 +13826,6 @@
|
|
|
13527
13826
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
13528
13827
|
"maxLength": 255,
|
|
13529
13828
|
"minLength": 1,
|
|
13530
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
13531
13829
|
"type": "string"
|
|
13532
13830
|
},
|
|
13533
13831
|
"layer": {
|
|
@@ -13546,7 +13844,6 @@
|
|
|
13546
13844
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
13547
13845
|
"maxLength": 255,
|
|
13548
13846
|
"minLength": 1,
|
|
13549
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
13550
13847
|
"type": "string"
|
|
13551
13848
|
},
|
|
13552
13849
|
"nodeIndex": {
|
|
@@ -14311,7 +14608,6 @@
|
|
|
14311
14608
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
14312
14609
|
"maxLength": 255,
|
|
14313
14610
|
"minLength": 1,
|
|
14314
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
14315
14611
|
"type": "string"
|
|
14316
14612
|
},
|
|
14317
14613
|
"linkIndex": {
|
|
@@ -14743,7 +15039,6 @@
|
|
|
14743
15039
|
},
|
|
14744
15040
|
"name": {
|
|
14745
15041
|
"description": "object name, string without space, comma",
|
|
14746
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
14747
15042
|
"type": "string"
|
|
14748
15043
|
},
|
|
14749
15044
|
"node": {
|
|
@@ -14884,7 +15179,6 @@
|
|
|
14884
15179
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
14885
15180
|
"maxLength": 255,
|
|
14886
15181
|
"minLength": 1,
|
|
14887
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
14888
15182
|
"type": "string"
|
|
14889
15183
|
},
|
|
14890
15184
|
"layer": {
|
|
@@ -14903,7 +15197,6 @@
|
|
|
14903
15197
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
14904
15198
|
"maxLength": 255,
|
|
14905
15199
|
"minLength": 1,
|
|
14906
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
14907
15200
|
"type": "string"
|
|
14908
15201
|
},
|
|
14909
15202
|
"nodeIndex": {
|
|
@@ -15771,7 +16064,6 @@
|
|
|
15771
16064
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
15772
16065
|
"maxLength": 255,
|
|
15773
16066
|
"minLength": 1,
|
|
15774
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
15775
16067
|
"type": "string"
|
|
15776
16068
|
},
|
|
15777
16069
|
"layer": {
|
|
@@ -15790,7 +16082,6 @@
|
|
|
15790
16082
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
15791
16083
|
"maxLength": 255,
|
|
15792
16084
|
"minLength": 1,
|
|
15793
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
15794
16085
|
"type": "string"
|
|
15795
16086
|
},
|
|
15796
16087
|
"nodeIndex": {
|
|
@@ -16660,7 +16951,6 @@
|
|
|
16660
16951
|
},
|
|
16661
16952
|
"name": {
|
|
16662
16953
|
"description": "object name, string without space, comma",
|
|
16663
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
16664
16954
|
"type": "string"
|
|
16665
16955
|
},
|
|
16666
16956
|
"node": {
|
|
@@ -16801,7 +17091,6 @@
|
|
|
16801
17091
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
16802
17092
|
"maxLength": 255,
|
|
16803
17093
|
"minLength": 1,
|
|
16804
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
16805
17094
|
"type": "string"
|
|
16806
17095
|
},
|
|
16807
17096
|
"layer": {
|
|
@@ -16820,7 +17109,6 @@
|
|
|
16820
17109
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
16821
17110
|
"maxLength": 255,
|
|
16822
17111
|
"minLength": 1,
|
|
16823
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
16824
17112
|
"type": "string"
|
|
16825
17113
|
},
|
|
16826
17114
|
"nodeIndex": {
|
|
@@ -17688,7 +17976,6 @@
|
|
|
17688
17976
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
17689
17977
|
"maxLength": 255,
|
|
17690
17978
|
"minLength": 1,
|
|
17691
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
17692
17979
|
"type": "string"
|
|
17693
17980
|
},
|
|
17694
17981
|
"layer": {
|
|
@@ -17707,7 +17994,6 @@
|
|
|
17707
17994
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
17708
17995
|
"maxLength": 255,
|
|
17709
17996
|
"minLength": 1,
|
|
17710
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
17711
17997
|
"type": "string"
|
|
17712
17998
|
},
|
|
17713
17999
|
"nodeIndex": {
|
|
@@ -18394,7 +18680,6 @@
|
|
|
18394
18680
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
18395
18681
|
"maxLength": 255,
|
|
18396
18682
|
"minLength": 1,
|
|
18397
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
18398
18683
|
"type": "string"
|
|
18399
18684
|
},
|
|
18400
18685
|
"interfaceSwitchingCapabilities": {
|
|
@@ -18446,7 +18731,6 @@
|
|
|
18446
18731
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
18447
18732
|
"maxLength": 255,
|
|
18448
18733
|
"minLength": 1,
|
|
18449
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
18450
18734
|
"type": "string"
|
|
18451
18735
|
},
|
|
18452
18736
|
"slices": {
|
|
@@ -19205,7 +19489,6 @@
|
|
|
19205
19489
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
19206
19490
|
"maxLength": 64,
|
|
19207
19491
|
"minLength": 1,
|
|
19208
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<\\/]*$",
|
|
19209
19492
|
"type": "string"
|
|
19210
19493
|
},
|
|
19211
19494
|
"frrLocalProtection": {
|
|
@@ -19982,7 +20265,6 @@
|
|
|
19982
20265
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
19983
20266
|
"maxLength": 64,
|
|
19984
20267
|
"minLength": 1,
|
|
19985
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<\\/]*$",
|
|
19986
20268
|
"type": "string"
|
|
19987
20269
|
},
|
|
19988
20270
|
"policy": {
|
|
@@ -20442,7 +20724,6 @@
|
|
|
20442
20724
|
},
|
|
20443
20725
|
"pathName": {
|
|
20444
20726
|
"description": "object name, string without space, comma",
|
|
20445
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
20446
20727
|
"type": "string"
|
|
20447
20728
|
},
|
|
20448
20729
|
"rro": {
|
|
@@ -20540,7 +20821,6 @@
|
|
|
20540
20821
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
20541
20822
|
"maxLength": 64,
|
|
20542
20823
|
"minLength": 1,
|
|
20543
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<\\/]*$",
|
|
20544
20824
|
"type": "string"
|
|
20545
20825
|
},
|
|
20546
20826
|
"operationalStatus": {},
|
|
@@ -21139,7 +21419,6 @@
|
|
|
21139
21419
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
21140
21420
|
"maxLength": 64,
|
|
21141
21421
|
"minLength": 1,
|
|
21142
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<\\/]*$",
|
|
21143
21422
|
"type": "string"
|
|
21144
21423
|
},
|
|
21145
21424
|
"policy": {
|
|
@@ -23170,7 +23449,6 @@
|
|
|
23170
23449
|
},
|
|
23171
23450
|
"name": {
|
|
23172
23451
|
"description": "object name for maintenance event name, string without space, comma",
|
|
23173
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<\\@\\/]*$",
|
|
23174
23452
|
"type": "string"
|
|
23175
23453
|
},
|
|
23176
23454
|
"noReoptimizationOnCompletion": {
|
|
@@ -23191,7 +23469,6 @@
|
|
|
23191
23469
|
},
|
|
23192
23470
|
"user": {
|
|
23193
23471
|
"description": "object name, string without space, comma",
|
|
23194
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
23195
23472
|
"type": "string"
|
|
23196
23473
|
}
|
|
23197
23474
|
},
|
|
@@ -23361,7 +23638,6 @@
|
|
|
23361
23638
|
},
|
|
23362
23639
|
"name": {
|
|
23363
23640
|
"description": "object name for maintenance event name, string without space, comma",
|
|
23364
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<\\@\\/]*$",
|
|
23365
23641
|
"type": "string"
|
|
23366
23642
|
},
|
|
23367
23643
|
"noReoptimizationOnCompletion": {
|
|
@@ -23393,7 +23669,6 @@
|
|
|
23393
23669
|
},
|
|
23394
23670
|
"user": {
|
|
23395
23671
|
"description": "object name, string without space, comma",
|
|
23396
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
23397
23672
|
"type": "string"
|
|
23398
23673
|
}
|
|
23399
23674
|
},
|
|
@@ -23561,7 +23836,6 @@
|
|
|
23561
23836
|
},
|
|
23562
23837
|
"name": {
|
|
23563
23838
|
"description": "object name, string without space, comma",
|
|
23564
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
23565
23839
|
"type": "string"
|
|
23566
23840
|
},
|
|
23567
23841
|
"source": {
|
|
@@ -23876,7 +24150,6 @@
|
|
|
23876
24150
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
23877
24151
|
"maxLength": 64,
|
|
23878
24152
|
"minLength": 1,
|
|
23879
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<\\/]*$",
|
|
23880
24153
|
"type": "string"
|
|
23881
24154
|
},
|
|
23882
24155
|
"provisioningType": {
|
|
@@ -24491,7 +24764,6 @@
|
|
|
24491
24764
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
24492
24765
|
"maxLength": 64,
|
|
24493
24766
|
"minLength": 1,
|
|
24494
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<\\/]*$",
|
|
24495
24767
|
"type": "string"
|
|
24496
24768
|
},
|
|
24497
24769
|
"provisioningType": {
|
|
@@ -25186,7 +25458,6 @@
|
|
|
25186
25458
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
25187
25459
|
"maxLength": 64,
|
|
25188
25460
|
"minLength": 1,
|
|
25189
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<\\/]*$",
|
|
25190
25461
|
"type": "string"
|
|
25191
25462
|
},
|
|
25192
25463
|
"provisioningType": {
|
|
@@ -25908,7 +26179,6 @@
|
|
|
25908
26179
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
25909
26180
|
"maxLength": 64,
|
|
25910
26181
|
"minLength": 1,
|
|
25911
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<\\/]*$",
|
|
25912
26182
|
"type": "string"
|
|
25913
26183
|
},
|
|
25914
26184
|
"plannedProperties": {
|
|
@@ -26418,7 +26688,6 @@
|
|
|
26418
26688
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
26419
26689
|
"maxLength": 64,
|
|
26420
26690
|
"minLength": 1,
|
|
26421
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<\\/]*$",
|
|
26422
26691
|
"type": "string"
|
|
26423
26692
|
},
|
|
26424
26693
|
"policy": {
|
|
@@ -29193,7 +29462,6 @@
|
|
|
29193
29462
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
29194
29463
|
"maxLength": 255,
|
|
29195
29464
|
"minLength": 1,
|
|
29196
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
29197
29465
|
"type": "string"
|
|
29198
29466
|
},
|
|
29199
29467
|
"layer": {
|
|
@@ -29212,7 +29480,6 @@
|
|
|
29212
29480
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
29213
29481
|
"maxLength": 255,
|
|
29214
29482
|
"minLength": 1,
|
|
29215
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
29216
29483
|
"type": "string"
|
|
29217
29484
|
},
|
|
29218
29485
|
"nodeIndex": {
|
|
@@ -29934,7 +30201,6 @@
|
|
|
29934
30201
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
29935
30202
|
"maxLength": 255,
|
|
29936
30203
|
"minLength": 1,
|
|
29937
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
29938
30204
|
"type": "string"
|
|
29939
30205
|
},
|
|
29940
30206
|
"layer": {
|
|
@@ -29953,7 +30219,6 @@
|
|
|
29953
30219
|
"description": "object name, string without space, comma, limited to 64 chars (repeated due to some validator handling of references)",
|
|
29954
30220
|
"maxLength": 255,
|
|
29955
30221
|
"minLength": 1,
|
|
29956
|
-
"pattern": "^[a-zA-Z0-9_\\-\\.\\:\\>\\<]*$",
|
|
29957
30222
|
"type": "string"
|
|
29958
30223
|
},
|
|
29959
30224
|
"nodeIndex": {
|