@itentialopensource/adapter-alkira 0.1.7 → 0.2.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/AUTH.md +8 -35
- package/CHANGELOG.md +8 -0
- package/CONTRIBUTING.md +1 -160
- package/ENHANCE.md +2 -2
- package/README.md +22 -17
- package/SYSTEMINFO.md +16 -3
- package/adapter.js +164 -334
- package/adapterBase.js +411 -913
- package/changelogs/changelog.md +56 -0
- package/metadata.json +101 -0
- package/package.json +22 -24
- package/pronghorn.json +586 -254
- package/propertiesSchema.json +380 -40
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +8 -8
- package/report/updateReport1691170238076.json +120 -0
- package/sampleProperties.json +82 -18
- 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 -313
- package/test/unit/adapterTestUnit.js +300 -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/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,8 +659,336 @@
|
|
|
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
|
+
},
|
|
658
763
|
"task": true
|
|
659
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
|
+
},
|
|
990
|
+
"task": true
|
|
991
|
+
},
|
|
660
992
|
{
|
|
661
993
|
"name": "loginUsersUsingPOST",
|
|
662
994
|
"summary": "loginUsersUsingPOST",
|
|
@@ -1038,7 +1370,7 @@
|
|
|
1038
1370
|
"name": {
|
|
1039
1371
|
"maxLength": 256,
|
|
1040
1372
|
"minLength": 1,
|
|
1041
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
1373
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
1042
1374
|
"type": "string",
|
|
1043
1375
|
"description": "The name of the segment. Segment names cannot contain any leading/trailing spaces however names are case sensitive as for all other names in the Alkira system. It is recommended that when choosing segment names mixed case names are not selected.",
|
|
1044
1376
|
"example": "rock"
|
|
@@ -1755,14 +2087,14 @@
|
|
|
1755
2087
|
"properties": {
|
|
1756
2088
|
"email": {
|
|
1757
2089
|
"maxLength": 256,
|
|
1758
|
-
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]
|
|
2090
|
+
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,}",
|
|
1759
2091
|
"type": "string",
|
|
1760
2092
|
"description": "The email address of the user",
|
|
1761
2093
|
"example": "john@abc.com"
|
|
1762
2094
|
},
|
|
1763
2095
|
"firstName": {
|
|
1764
2096
|
"maxLength": 64,
|
|
1765
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
2097
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
1766
2098
|
"type": "string",
|
|
1767
2099
|
"description": "First name of the user",
|
|
1768
2100
|
"example": "John"
|
|
@@ -1786,7 +2118,7 @@
|
|
|
1786
2118
|
},
|
|
1787
2119
|
"lastName": {
|
|
1788
2120
|
"maxLength": 64,
|
|
1789
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
2121
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
1790
2122
|
"type": "string",
|
|
1791
2123
|
"description": "Last name of the user",
|
|
1792
2124
|
"example": "Doe"
|
|
@@ -1900,14 +2232,14 @@
|
|
|
1900
2232
|
"properties": {
|
|
1901
2233
|
"email": {
|
|
1902
2234
|
"maxLength": 256,
|
|
1903
|
-
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]
|
|
2235
|
+
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,}",
|
|
1904
2236
|
"type": "string",
|
|
1905
2237
|
"description": "The email address of the user",
|
|
1906
2238
|
"example": "john@abc.com"
|
|
1907
2239
|
},
|
|
1908
2240
|
"firstName": {
|
|
1909
2241
|
"maxLength": 64,
|
|
1910
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
2242
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
1911
2243
|
"type": "string",
|
|
1912
2244
|
"description": "First name of the user",
|
|
1913
2245
|
"example": "John"
|
|
@@ -1931,7 +2263,7 @@
|
|
|
1931
2263
|
},
|
|
1932
2264
|
"lastName": {
|
|
1933
2265
|
"maxLength": 64,
|
|
1934
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
2266
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
1935
2267
|
"type": "string",
|
|
1936
2268
|
"description": "Last name of the user",
|
|
1937
2269
|
"example": "Doe"
|
|
@@ -2032,14 +2364,14 @@
|
|
|
2032
2364
|
"properties": {
|
|
2033
2365
|
"email": {
|
|
2034
2366
|
"maxLength": 256,
|
|
2035
|
-
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]
|
|
2367
|
+
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,}",
|
|
2036
2368
|
"type": "string",
|
|
2037
2369
|
"description": "The email address of the user",
|
|
2038
2370
|
"example": "john@abc.com"
|
|
2039
2371
|
},
|
|
2040
2372
|
"firstName": {
|
|
2041
2373
|
"maxLength": 64,
|
|
2042
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
2374
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
2043
2375
|
"type": "string",
|
|
2044
2376
|
"description": "First name of the user",
|
|
2045
2377
|
"example": "John"
|
|
@@ -2063,7 +2395,7 @@
|
|
|
2063
2395
|
},
|
|
2064
2396
|
"lastName": {
|
|
2065
2397
|
"maxLength": 64,
|
|
2066
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
2398
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
2067
2399
|
"type": "string",
|
|
2068
2400
|
"description": "Last name of the user",
|
|
2069
2401
|
"example": "Doe"
|
|
@@ -2202,14 +2534,14 @@
|
|
|
2202
2534
|
"properties": {
|
|
2203
2535
|
"email": {
|
|
2204
2536
|
"maxLength": 256,
|
|
2205
|
-
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]
|
|
2537
|
+
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,}",
|
|
2206
2538
|
"type": "string",
|
|
2207
2539
|
"description": "The email address of the user",
|
|
2208
2540
|
"example": "john@abc.com"
|
|
2209
2541
|
},
|
|
2210
2542
|
"firstName": {
|
|
2211
2543
|
"maxLength": 64,
|
|
2212
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
2544
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
2213
2545
|
"type": "string",
|
|
2214
2546
|
"description": "First name of the user",
|
|
2215
2547
|
"example": "John"
|
|
@@ -2233,7 +2565,7 @@
|
|
|
2233
2565
|
},
|
|
2234
2566
|
"lastName": {
|
|
2235
2567
|
"maxLength": 64,
|
|
2236
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
2568
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
2237
2569
|
"type": "string",
|
|
2238
2570
|
"description": "Last name of the user",
|
|
2239
2571
|
"example": "Doe"
|
|
@@ -2360,14 +2692,14 @@
|
|
|
2360
2692
|
"properties": {
|
|
2361
2693
|
"email": {
|
|
2362
2694
|
"maxLength": 256,
|
|
2363
|
-
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]
|
|
2695
|
+
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,}",
|
|
2364
2696
|
"type": "string",
|
|
2365
2697
|
"description": "The email address of the user",
|
|
2366
2698
|
"example": "john@abc.com"
|
|
2367
2699
|
},
|
|
2368
2700
|
"firstName": {
|
|
2369
2701
|
"maxLength": 64,
|
|
2370
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
2702
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
2371
2703
|
"type": "string",
|
|
2372
2704
|
"description": "First name of the user",
|
|
2373
2705
|
"example": "John"
|
|
@@ -2391,7 +2723,7 @@
|
|
|
2391
2723
|
},
|
|
2392
2724
|
"lastName": {
|
|
2393
2725
|
"maxLength": 64,
|
|
2394
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
2726
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
2395
2727
|
"type": "string",
|
|
2396
2728
|
"description": "Last name of the user",
|
|
2397
2729
|
"example": "Doe"
|
|
@@ -2492,14 +2824,14 @@
|
|
|
2492
2824
|
"properties": {
|
|
2493
2825
|
"email": {
|
|
2494
2826
|
"maxLength": 256,
|
|
2495
|
-
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]
|
|
2827
|
+
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,}",
|
|
2496
2828
|
"type": "string",
|
|
2497
2829
|
"description": "The email address of the user",
|
|
2498
2830
|
"example": "john@abc.com"
|
|
2499
2831
|
},
|
|
2500
2832
|
"firstName": {
|
|
2501
2833
|
"maxLength": 64,
|
|
2502
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
2834
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
2503
2835
|
"type": "string",
|
|
2504
2836
|
"description": "First name of the user",
|
|
2505
2837
|
"example": "John"
|
|
@@ -2523,7 +2855,7 @@
|
|
|
2523
2855
|
},
|
|
2524
2856
|
"lastName": {
|
|
2525
2857
|
"maxLength": 64,
|
|
2526
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
2858
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
2527
2859
|
"type": "string",
|
|
2528
2860
|
"description": "Last name of the user",
|
|
2529
2861
|
"example": "Doe"
|
|
@@ -2768,14 +3100,14 @@
|
|
|
2768
3100
|
},
|
|
2769
3101
|
"name": {
|
|
2770
3102
|
"maxLength": 256,
|
|
2771
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
3103
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
2772
3104
|
"type": "string",
|
|
2773
3105
|
"description": "The name of the user group",
|
|
2774
3106
|
"example": "accountants"
|
|
2775
3107
|
},
|
|
2776
3108
|
"description": {
|
|
2777
3109
|
"maxLength": 512,
|
|
2778
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
3110
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
2779
3111
|
"type": "string",
|
|
2780
3112
|
"description": "A description of the user group",
|
|
2781
3113
|
"example": "All accountants from HQ"
|
|
@@ -3002,14 +3334,14 @@
|
|
|
3002
3334
|
"properties": {
|
|
3003
3335
|
"email": {
|
|
3004
3336
|
"maxLength": 256,
|
|
3005
|
-
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]
|
|
3337
|
+
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,}",
|
|
3006
3338
|
"type": "string",
|
|
3007
3339
|
"description": "The email address of the user",
|
|
3008
3340
|
"example": "john@abc.com"
|
|
3009
3341
|
},
|
|
3010
3342
|
"firstName": {
|
|
3011
3343
|
"maxLength": 64,
|
|
3012
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
3344
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
3013
3345
|
"type": "string",
|
|
3014
3346
|
"description": "First name of the user",
|
|
3015
3347
|
"example": "John"
|
|
@@ -3033,7 +3365,7 @@
|
|
|
3033
3365
|
},
|
|
3034
3366
|
"lastName": {
|
|
3035
3367
|
"maxLength": 64,
|
|
3036
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
3368
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
3037
3369
|
"type": "string",
|
|
3038
3370
|
"description": "Last name of the user",
|
|
3039
3371
|
"example": "Doe"
|
|
@@ -3265,14 +3597,14 @@
|
|
|
3265
3597
|
"properties": {
|
|
3266
3598
|
"email": {
|
|
3267
3599
|
"maxLength": 256,
|
|
3268
|
-
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]
|
|
3600
|
+
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,}",
|
|
3269
3601
|
"type": "string",
|
|
3270
3602
|
"description": "The email address of the user",
|
|
3271
3603
|
"example": "john@abc.com"
|
|
3272
3604
|
},
|
|
3273
3605
|
"firstName": {
|
|
3274
3606
|
"maxLength": 64,
|
|
3275
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
3607
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
3276
3608
|
"type": "string",
|
|
3277
3609
|
"description": "First name of the user",
|
|
3278
3610
|
"example": "John"
|
|
@@ -3296,7 +3628,7 @@
|
|
|
3296
3628
|
},
|
|
3297
3629
|
"lastName": {
|
|
3298
3630
|
"maxLength": 64,
|
|
3299
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
3631
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
3300
3632
|
"type": "string",
|
|
3301
3633
|
"description": "Last name of the user",
|
|
3302
3634
|
"example": "Doe"
|
|
@@ -3456,14 +3788,14 @@
|
|
|
3456
3788
|
},
|
|
3457
3789
|
"idpName": {
|
|
3458
3790
|
"maxLength": 256,
|
|
3459
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
3791
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
3460
3792
|
"type": "string",
|
|
3461
3793
|
"description": "The name of the Role on the Identity provider side. This is to be used to do mapping of an Identity provider role to an Alkira role. For example on the Identity provider side one may have a role called network_administrators and on the Alkira side the corresponding role may be called netadmin.",
|
|
3462
3794
|
"example": "network_administrators"
|
|
3463
3795
|
},
|
|
3464
3796
|
"name": {
|
|
3465
3797
|
"maxLength": 256,
|
|
3466
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
3798
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
3467
3799
|
"type": "string",
|
|
3468
3800
|
"description": "The name of the Role",
|
|
3469
3801
|
"example": "netadmin"
|
|
@@ -3521,14 +3853,14 @@
|
|
|
3521
3853
|
},
|
|
3522
3854
|
"idpName": {
|
|
3523
3855
|
"maxLength": 256,
|
|
3524
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
3856
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
3525
3857
|
"type": "string",
|
|
3526
3858
|
"description": "The name of the Role on the Identity provider side. This is to be used to do mapping of an Identity provider role to an Alkira role. For example on the Identity provider side one may have a role called network_administrators and on the Alkira side the corresponding role may be called netadmin.",
|
|
3527
3859
|
"example": "network_administrators"
|
|
3528
3860
|
},
|
|
3529
3861
|
"name": {
|
|
3530
3862
|
"maxLength": 256,
|
|
3531
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
3863
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
3532
3864
|
"type": "string",
|
|
3533
3865
|
"description": "The name of the Role",
|
|
3534
3866
|
"example": "netadmin"
|
|
@@ -3639,14 +3971,14 @@
|
|
|
3639
3971
|
},
|
|
3640
3972
|
"idpName": {
|
|
3641
3973
|
"maxLength": 256,
|
|
3642
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
3974
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
3643
3975
|
"type": "string",
|
|
3644
3976
|
"description": "The name of the Role on the Identity provider side. This is to be used to do mapping of an Identity provider role to an Alkira role. For example on the Identity provider side one may have a role called network_administrators and on the Alkira side the corresponding role may be called netadmin.",
|
|
3645
3977
|
"example": "network_administrators"
|
|
3646
3978
|
},
|
|
3647
3979
|
"name": {
|
|
3648
3980
|
"maxLength": 256,
|
|
3649
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
3981
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
3650
3982
|
"type": "string",
|
|
3651
3983
|
"description": "The name of the Role",
|
|
3652
3984
|
"example": "netadmin"
|
|
@@ -3827,14 +4159,14 @@
|
|
|
3827
4159
|
},
|
|
3828
4160
|
"metadataFileName": {
|
|
3829
4161
|
"maxLength": 512,
|
|
3830
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
4162
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
3831
4163
|
"type": "string",
|
|
3832
4164
|
"description": "The name of the metadata filename. This is mostly for display purposes only.",
|
|
3833
4165
|
"example": "metadata.xml"
|
|
3834
4166
|
},
|
|
3835
4167
|
"name": {
|
|
3836
4168
|
"maxLength": 256,
|
|
3837
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
4169
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
3838
4170
|
"type": "string",
|
|
3839
4171
|
"description": "The name of the identity provider",
|
|
3840
4172
|
"example": "OKTA"
|
|
@@ -3935,14 +4267,14 @@
|
|
|
3935
4267
|
},
|
|
3936
4268
|
"metadataFileName": {
|
|
3937
4269
|
"maxLength": 512,
|
|
3938
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
4270
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
3939
4271
|
"type": "string",
|
|
3940
4272
|
"description": "The name of the metadata filename. This is mostly for display purposes only.",
|
|
3941
4273
|
"example": "metadata.xml"
|
|
3942
4274
|
},
|
|
3943
4275
|
"name": {
|
|
3944
4276
|
"maxLength": 256,
|
|
3945
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
4277
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
3946
4278
|
"type": "string",
|
|
3947
4279
|
"description": "The name of the identity provider",
|
|
3948
4280
|
"example": "OKTA"
|
|
@@ -4096,14 +4428,14 @@
|
|
|
4096
4428
|
},
|
|
4097
4429
|
"metadataFileName": {
|
|
4098
4430
|
"maxLength": 512,
|
|
4099
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
4431
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
4100
4432
|
"type": "string",
|
|
4101
4433
|
"description": "The name of the metadata filename. This is mostly for display purposes only.",
|
|
4102
4434
|
"example": "metadata.xml"
|
|
4103
4435
|
},
|
|
4104
4436
|
"name": {
|
|
4105
4437
|
"maxLength": 256,
|
|
4106
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
4438
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
4107
4439
|
"type": "string",
|
|
4108
4440
|
"description": "The name of the identity provider",
|
|
4109
4441
|
"example": "OKTA"
|
|
@@ -7852,7 +8184,7 @@
|
|
|
7852
8184
|
},
|
|
7853
8185
|
"name": {
|
|
7854
8186
|
"maxLength": 256,
|
|
7855
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
8187
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
7856
8188
|
"type": "string",
|
|
7857
8189
|
"description": "The name of the connector",
|
|
7858
8190
|
"example": "connector1"
|
|
@@ -7887,7 +8219,7 @@
|
|
|
7887
8219
|
},
|
|
7888
8220
|
"group": {
|
|
7889
8221
|
"maxLength": 256,
|
|
7890
|
-
"pattern": "a-zA-Z0-9.@_
|
|
8222
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
7891
8223
|
"type": "string",
|
|
7892
8224
|
"description": "The group to which the connector belongs"
|
|
7893
8225
|
},
|
|
@@ -8013,7 +8345,7 @@
|
|
|
8013
8345
|
},
|
|
8014
8346
|
"name": {
|
|
8015
8347
|
"maxLength": 256,
|
|
8016
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
8348
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
8017
8349
|
"type": "string",
|
|
8018
8350
|
"description": "The name of the site/connector instance",
|
|
8019
8351
|
"example": "jack@home"
|
|
@@ -9811,7 +10143,7 @@
|
|
|
9811
10143
|
"properties": {
|
|
9812
10144
|
"name": {
|
|
9813
10145
|
"maxLength": 256,
|
|
9814
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
10146
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
9815
10147
|
"type": "string",
|
|
9816
10148
|
"description": "User provided connector instance name",
|
|
9817
10149
|
"example": "sjc-office-connection-1"
|
|
@@ -10379,7 +10711,7 @@
|
|
|
10379
10711
|
"properties": {
|
|
10380
10712
|
"name": {
|
|
10381
10713
|
"maxLength": 256,
|
|
10382
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
10714
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
10383
10715
|
"type": "string",
|
|
10384
10716
|
"description": "User provided connector instance name",
|
|
10385
10717
|
"example": "sjc-office-connection-1"
|
|
@@ -10700,7 +11032,7 @@
|
|
|
10700
11032
|
"properties": {
|
|
10701
11033
|
"name": {
|
|
10702
11034
|
"maxLength": 256,
|
|
10703
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
11035
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
10704
11036
|
"type": "string",
|
|
10705
11037
|
"description": "User provided connector instance name",
|
|
10706
11038
|
"example": "sjc-office-connection-1"
|
|
@@ -11795,7 +12127,7 @@
|
|
|
11795
12127
|
"name": {
|
|
11796
12128
|
"maxLength": 256,
|
|
11797
12129
|
"minLength": 1,
|
|
11798
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
12130
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
11799
12131
|
"type": "string",
|
|
11800
12132
|
"description": "The name of the segment. Segment names cannot contain any leading/trailing spaces however names are case sensitive as for all other names in the Alkira system. It is recommended that when choosing segment names mixed case names are not selected.",
|
|
11801
12133
|
"example": "rock"
|
|
@@ -14205,7 +14537,7 @@
|
|
|
14205
14537
|
"example": 72
|
|
14206
14538
|
},
|
|
14207
14539
|
"name": {
|
|
14208
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
14540
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
14209
14541
|
"type": "string",
|
|
14210
14542
|
"description": "The name of the service instance",
|
|
14211
14543
|
"example": "pan-east-inst-1"
|
|
@@ -20565,7 +20897,7 @@
|
|
|
20565
20897
|
},
|
|
20566
20898
|
"name": {
|
|
20567
20899
|
"maxLength": 64,
|
|
20568
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
20900
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
20569
20901
|
"type": "string",
|
|
20570
20902
|
"description": "The name of the tenant",
|
|
20571
20903
|
"readOnly": true,
|
|
@@ -20606,7 +20938,7 @@
|
|
|
20606
20938
|
},
|
|
20607
20939
|
"emailId": {
|
|
20608
20940
|
"maxLength": 256,
|
|
20609
|
-
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]
|
|
20941
|
+
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,}",
|
|
20610
20942
|
"type": "string",
|
|
20611
20943
|
"description": "The email id of the tenant",
|
|
20612
20944
|
"readOnly": true,
|
|
@@ -20729,7 +21061,7 @@
|
|
|
20729
21061
|
},
|
|
20730
21062
|
"name": {
|
|
20731
21063
|
"maxLength": 64,
|
|
20732
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
21064
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
20733
21065
|
"type": "string",
|
|
20734
21066
|
"description": "The name of the tenant",
|
|
20735
21067
|
"readOnly": true,
|
|
@@ -20770,7 +21102,7 @@
|
|
|
20770
21102
|
},
|
|
20771
21103
|
"emailId": {
|
|
20772
21104
|
"maxLength": 256,
|
|
20773
|
-
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]
|
|
21105
|
+
"pattern": "[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,}",
|
|
20774
21106
|
"type": "string",
|
|
20775
21107
|
"description": "The email id of the tenant",
|
|
20776
21108
|
"readOnly": true,
|
|
@@ -24157,7 +24489,7 @@
|
|
|
24157
24489
|
},
|
|
24158
24490
|
"name": {
|
|
24159
24491
|
"maxLength": 255,
|
|
24160
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
24492
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
24161
24493
|
"type": "string"
|
|
24162
24494
|
},
|
|
24163
24495
|
"tenantId": {
|
|
@@ -24552,7 +24884,7 @@
|
|
|
24552
24884
|
},
|
|
24553
24885
|
"name": {
|
|
24554
24886
|
"maxLength": 256,
|
|
24555
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
24887
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
24556
24888
|
"type": "string",
|
|
24557
24889
|
"description": "instance name associated with aruba edge connect instance.",
|
|
24558
24890
|
"example": "ArubaInstance1"
|
|
@@ -24574,7 +24906,7 @@
|
|
|
24574
24906
|
"segments": {
|
|
24575
24907
|
"type": "array",
|
|
24576
24908
|
"items": {
|
|
24577
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
24909
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
24578
24910
|
"type": "string"
|
|
24579
24911
|
},
|
|
24580
24912
|
"description": "An array containing the names of segments associated with the connector"
|
|
@@ -24856,7 +25188,7 @@
|
|
|
24856
25188
|
},
|
|
24857
25189
|
"name": {
|
|
24858
25190
|
"maxLength": 256,
|
|
24859
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
25191
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
24860
25192
|
"type": "string",
|
|
24861
25193
|
"description": "instance name associated with aruba edge connect instance.",
|
|
24862
25194
|
"example": "ArubaInstance1"
|
|
@@ -24878,7 +25210,7 @@
|
|
|
24878
25210
|
"segments": {
|
|
24879
25211
|
"type": "array",
|
|
24880
25212
|
"items": {
|
|
24881
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
25213
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
24882
25214
|
"type": "string"
|
|
24883
25215
|
},
|
|
24884
25216
|
"description": "An array containing the names of segments associated with the connector"
|
|
@@ -25193,7 +25525,7 @@
|
|
|
25193
25525
|
"segments": {
|
|
25194
25526
|
"type": "array",
|
|
25195
25527
|
"items": {
|
|
25196
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
25528
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
25197
25529
|
"type": "string"
|
|
25198
25530
|
},
|
|
25199
25531
|
"description": "An array containing the names of segments associated with the connector"
|
|
@@ -25478,7 +25810,7 @@
|
|
|
25478
25810
|
"segments": {
|
|
25479
25811
|
"type": "array",
|
|
25480
25812
|
"items": {
|
|
25481
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
25813
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
25482
25814
|
"type": "string"
|
|
25483
25815
|
},
|
|
25484
25816
|
"description": "An array containing the names of segments associated with the connector"
|
|
@@ -27095,7 +27427,7 @@
|
|
|
27095
27427
|
"name": {
|
|
27096
27428
|
"maxLength": 255,
|
|
27097
27429
|
"minLength": 1,
|
|
27098
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
27430
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
27099
27431
|
"type": "string",
|
|
27100
27432
|
"description": "The name of the rule",
|
|
27101
27433
|
"example": "East-NAT rule"
|
|
@@ -27103,7 +27435,7 @@
|
|
|
27103
27435
|
"description": {
|
|
27104
27436
|
"maxLength": 255,
|
|
27105
27437
|
"minLength": 1,
|
|
27106
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
27438
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
27107
27439
|
"type": "string",
|
|
27108
27440
|
"description": "A user provided description of the rule",
|
|
27109
27441
|
"example": "NAT rule"
|
|
@@ -27563,13 +27895,13 @@
|
|
|
27563
27895
|
},
|
|
27564
27896
|
"name": {
|
|
27565
27897
|
"maxLength": 256,
|
|
27566
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
27898
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
27567
27899
|
"type": "string",
|
|
27568
27900
|
"description": "The name of the GlobalCidrList"
|
|
27569
27901
|
},
|
|
27570
27902
|
"description": {
|
|
27571
27903
|
"maxLength": 512,
|
|
27572
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
27904
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
27573
27905
|
"type": "string",
|
|
27574
27906
|
"description": "A short description of the GlobalCidrList"
|
|
27575
27907
|
},
|
|
@@ -27693,13 +28025,13 @@
|
|
|
27693
28025
|
},
|
|
27694
28026
|
"name": {
|
|
27695
28027
|
"maxLength": 256,
|
|
27696
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
28028
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
27697
28029
|
"type": "string",
|
|
27698
28030
|
"description": "The name of the GlobalCidrList"
|
|
27699
28031
|
},
|
|
27700
28032
|
"description": {
|
|
27701
28033
|
"maxLength": 512,
|
|
27702
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
28034
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
27703
28035
|
"type": "string",
|
|
27704
28036
|
"description": "A short description of the GlobalCidrList"
|
|
27705
28037
|
},
|
|
@@ -27819,13 +28151,13 @@
|
|
|
27819
28151
|
},
|
|
27820
28152
|
"name": {
|
|
27821
28153
|
"maxLength": 256,
|
|
27822
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
28154
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
27823
28155
|
"type": "string",
|
|
27824
28156
|
"description": "The name of the GlobalCidrList"
|
|
27825
28157
|
},
|
|
27826
28158
|
"description": {
|
|
27827
28159
|
"maxLength": 512,
|
|
27828
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
28160
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
27829
28161
|
"type": "string",
|
|
27830
28162
|
"description": "A short description of the GlobalCidrList"
|
|
27831
28163
|
},
|
|
@@ -27962,13 +28294,13 @@
|
|
|
27962
28294
|
},
|
|
27963
28295
|
"name": {
|
|
27964
28296
|
"maxLength": 256,
|
|
27965
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
28297
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
27966
28298
|
"type": "string",
|
|
27967
28299
|
"description": "The name of the GlobalCidrList"
|
|
27968
28300
|
},
|
|
27969
28301
|
"description": {
|
|
27970
28302
|
"maxLength": 512,
|
|
27971
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
28303
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
27972
28304
|
"type": "string",
|
|
27973
28305
|
"description": "A short description of the GlobalCidrList"
|
|
27974
28306
|
},
|
|
@@ -28123,7 +28455,7 @@
|
|
|
28123
28455
|
"name": {
|
|
28124
28456
|
"maxLength": 256,
|
|
28125
28457
|
"minLength": 1,
|
|
28126
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
28458
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
28127
28459
|
"type": "string",
|
|
28128
28460
|
"description": "The name of the SegmentResource",
|
|
28129
28461
|
"example": "sr1"
|
|
@@ -28131,7 +28463,7 @@
|
|
|
28131
28463
|
"segment": {
|
|
28132
28464
|
"maxLength": 256,
|
|
28133
28465
|
"minLength": 1,
|
|
28134
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
28466
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
28135
28467
|
"type": "string",
|
|
28136
28468
|
"description": "The name of the segment to which this SegmentResource is associated. The segment cannot be updated once a SegmentResource is associated with a SegmentResourceShare.",
|
|
28137
28469
|
"example": "HR"
|
|
@@ -28424,7 +28756,7 @@
|
|
|
28424
28756
|
"name": {
|
|
28425
28757
|
"maxLength": 256,
|
|
28426
28758
|
"minLength": 1,
|
|
28427
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
28759
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
28428
28760
|
"type": "string",
|
|
28429
28761
|
"description": "The name of the SegmentResourceShare",
|
|
28430
28762
|
"example": "sr1"
|
|
@@ -28445,7 +28777,7 @@
|
|
|
28445
28777
|
"designatedSegment": {
|
|
28446
28778
|
"maxLength": 256,
|
|
28447
28779
|
"minLength": 1,
|
|
28448
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
28780
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
28449
28781
|
"type": "string",
|
|
28450
28782
|
"description": "The segment on which the policy is to be applied. The designatedSegment MUST be either the segment of endAResources or endBResources. If multiple SegmentResourceShare exist where endAResources and endBResources overlap then the designatedSegment for those SegmentResourceShares MUST be the same.",
|
|
28451
28783
|
"example": "HR"
|
|
@@ -29050,7 +29382,7 @@
|
|
|
29050
29382
|
"description": "The id of the service instance, when creating new instances this should be empty, when updating instances the id MUST be present"
|
|
29051
29383
|
},
|
|
29052
29384
|
"name": {
|
|
29053
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
29385
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
29054
29386
|
"type": "string",
|
|
29055
29387
|
"description": "The name of the service instance"
|
|
29056
29388
|
},
|
|
@@ -29422,9 +29754,9 @@
|
|
|
29422
29754
|
},
|
|
29423
29755
|
"name": {
|
|
29424
29756
|
"maxLength": 12,
|
|
29425
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
29757
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
29426
29758
|
"type": "string",
|
|
29427
|
-
"description": "Valid characters are [a-zA-Z0-9.@_
|
|
29759
|
+
"description": "Valid characters are [a-zA-Z0-9.@_+%-]. No leading/trailing spaces allowed. Name is case sensitive."
|
|
29428
29760
|
},
|
|
29429
29761
|
"size": {
|
|
29430
29762
|
"allOf": [
|
|
@@ -29543,14 +29875,14 @@
|
|
|
29543
29875
|
"readOnly": true
|
|
29544
29876
|
},
|
|
29545
29877
|
"name": {
|
|
29546
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
29878
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
29547
29879
|
"type": "string",
|
|
29548
|
-
"description": "Valid characters are [a-zA-Z0-9.@_
|
|
29880
|
+
"description": "Valid characters are [a-zA-Z0-9.@_+%-]. No leading/trailing spaces allowed. Name is case sensitive.",
|
|
29549
29881
|
"readOnly": true,
|
|
29550
29882
|
"example": "Fortinet FW Instance 1"
|
|
29551
29883
|
},
|
|
29552
29884
|
"hostName": {
|
|
29553
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
29885
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
29554
29886
|
"type": "string",
|
|
29555
29887
|
"description": "The hostName of the FW instance",
|
|
29556
29888
|
"example": "svc-instance-1"
|
|
@@ -29752,9 +30084,9 @@
|
|
|
29752
30084
|
},
|
|
29753
30085
|
"name": {
|
|
29754
30086
|
"maxLength": 12,
|
|
29755
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
30087
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
29756
30088
|
"type": "string",
|
|
29757
|
-
"description": "Valid characters are [a-zA-Z0-9.@_
|
|
30089
|
+
"description": "Valid characters are [a-zA-Z0-9.@_+%-]. No leading/trailing spaces allowed. Name is case sensitive."
|
|
29758
30090
|
},
|
|
29759
30091
|
"size": {
|
|
29760
30092
|
"allOf": [
|
|
@@ -29873,14 +30205,14 @@
|
|
|
29873
30205
|
"readOnly": true
|
|
29874
30206
|
},
|
|
29875
30207
|
"name": {
|
|
29876
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
30208
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
29877
30209
|
"type": "string",
|
|
29878
|
-
"description": "Valid characters are [a-zA-Z0-9.@_
|
|
30210
|
+
"description": "Valid characters are [a-zA-Z0-9.@_+%-]. No leading/trailing spaces allowed. Name is case sensitive.",
|
|
29879
30211
|
"readOnly": true,
|
|
29880
30212
|
"example": "Fortinet FW Instance 1"
|
|
29881
30213
|
},
|
|
29882
30214
|
"hostName": {
|
|
29883
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
30215
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
29884
30216
|
"type": "string",
|
|
29885
30217
|
"description": "The hostName of the FW instance",
|
|
29886
30218
|
"example": "svc-instance-1"
|
|
@@ -30078,9 +30410,9 @@
|
|
|
30078
30410
|
},
|
|
30079
30411
|
"name": {
|
|
30080
30412
|
"maxLength": 12,
|
|
30081
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
30413
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
30082
30414
|
"type": "string",
|
|
30083
|
-
"description": "Valid characters are [a-zA-Z0-9.@_
|
|
30415
|
+
"description": "Valid characters are [a-zA-Z0-9.@_+%-]. No leading/trailing spaces allowed. Name is case sensitive."
|
|
30084
30416
|
},
|
|
30085
30417
|
"size": {
|
|
30086
30418
|
"allOf": [
|
|
@@ -30199,14 +30531,14 @@
|
|
|
30199
30531
|
"readOnly": true
|
|
30200
30532
|
},
|
|
30201
30533
|
"name": {
|
|
30202
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
30534
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
30203
30535
|
"type": "string",
|
|
30204
|
-
"description": "Valid characters are [a-zA-Z0-9.@_
|
|
30536
|
+
"description": "Valid characters are [a-zA-Z0-9.@_+%-]. No leading/trailing spaces allowed. Name is case sensitive.",
|
|
30205
30537
|
"readOnly": true,
|
|
30206
30538
|
"example": "Fortinet FW Instance 1"
|
|
30207
30539
|
},
|
|
30208
30540
|
"hostName": {
|
|
30209
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
30541
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
30210
30542
|
"type": "string",
|
|
30211
30543
|
"description": "The hostName of the FW instance",
|
|
30212
30544
|
"example": "svc-instance-1"
|
|
@@ -30421,9 +30753,9 @@
|
|
|
30421
30753
|
},
|
|
30422
30754
|
"name": {
|
|
30423
30755
|
"maxLength": 12,
|
|
30424
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
30756
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
30425
30757
|
"type": "string",
|
|
30426
|
-
"description": "Valid characters are [a-zA-Z0-9.@_
|
|
30758
|
+
"description": "Valid characters are [a-zA-Z0-9.@_+%-]. No leading/trailing spaces allowed. Name is case sensitive."
|
|
30427
30759
|
},
|
|
30428
30760
|
"size": {
|
|
30429
30761
|
"allOf": [
|
|
@@ -30542,14 +30874,14 @@
|
|
|
30542
30874
|
"readOnly": true
|
|
30543
30875
|
},
|
|
30544
30876
|
"name": {
|
|
30545
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
30877
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
30546
30878
|
"type": "string",
|
|
30547
|
-
"description": "Valid characters are [a-zA-Z0-9.@_
|
|
30879
|
+
"description": "Valid characters are [a-zA-Z0-9.@_+%-]. No leading/trailing spaces allowed. Name is case sensitive.",
|
|
30548
30880
|
"readOnly": true,
|
|
30549
30881
|
"example": "Fortinet FW Instance 1"
|
|
30550
30882
|
},
|
|
30551
30883
|
"hostName": {
|
|
30552
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
30884
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
30553
30885
|
"type": "string",
|
|
30554
30886
|
"description": "The hostName of the FW instance",
|
|
30555
30887
|
"example": "svc-instance-1"
|
|
@@ -30845,7 +31177,7 @@
|
|
|
30845
31177
|
"name": {
|
|
30846
31178
|
"maxLength": 12,
|
|
30847
31179
|
"type": "string",
|
|
30848
|
-
"description": "Valid characters are [a-zA-Z0-9.@_
|
|
31180
|
+
"description": "Valid characters are [a-zA-Z0-9.@_+%-]. No leading/trailing spaces allowed. Name will be case sensitive.",
|
|
30849
31181
|
"example": "My Firewall"
|
|
30850
31182
|
},
|
|
30851
31183
|
"globalCidrListId": {
|
|
@@ -31002,7 +31334,7 @@
|
|
|
31002
31334
|
"hostName": {
|
|
31003
31335
|
"maxLength": 256,
|
|
31004
31336
|
"type": "string",
|
|
31005
|
-
"description": "The hostName of the FW instance. Valid characters are [a-zA-Z0-9.@_
|
|
31337
|
+
"description": "The hostName of the FW instance. Valid characters are [a-zA-Z0-9.@_+%-]. Cannot be empty."
|
|
31006
31338
|
},
|
|
31007
31339
|
"internalName": {
|
|
31008
31340
|
"type": "string",
|
|
@@ -31215,7 +31547,7 @@
|
|
|
31215
31547
|
"name": {
|
|
31216
31548
|
"maxLength": 12,
|
|
31217
31549
|
"type": "string",
|
|
31218
|
-
"description": "Valid characters are [a-zA-Z0-9.@_
|
|
31550
|
+
"description": "Valid characters are [a-zA-Z0-9.@_+%-]. No leading/trailing spaces allowed. Name will be case sensitive.",
|
|
31219
31551
|
"example": "My Firewall"
|
|
31220
31552
|
},
|
|
31221
31553
|
"globalCidrListId": {
|
|
@@ -31372,7 +31704,7 @@
|
|
|
31372
31704
|
"hostName": {
|
|
31373
31705
|
"maxLength": 256,
|
|
31374
31706
|
"type": "string",
|
|
31375
|
-
"description": "The hostName of the FW instance. Valid characters are [a-zA-Z0-9.@_
|
|
31707
|
+
"description": "The hostName of the FW instance. Valid characters are [a-zA-Z0-9.@_+%-]. Cannot be empty."
|
|
31376
31708
|
},
|
|
31377
31709
|
"internalName": {
|
|
31378
31710
|
"type": "string",
|
|
@@ -31581,7 +31913,7 @@
|
|
|
31581
31913
|
"name": {
|
|
31582
31914
|
"maxLength": 12,
|
|
31583
31915
|
"type": "string",
|
|
31584
|
-
"description": "Valid characters are [a-zA-Z0-9.@_
|
|
31916
|
+
"description": "Valid characters are [a-zA-Z0-9.@_+%-]. No leading/trailing spaces allowed. Name will be case sensitive.",
|
|
31585
31917
|
"example": "My Firewall"
|
|
31586
31918
|
},
|
|
31587
31919
|
"globalCidrListId": {
|
|
@@ -31738,7 +32070,7 @@
|
|
|
31738
32070
|
"hostName": {
|
|
31739
32071
|
"maxLength": 256,
|
|
31740
32072
|
"type": "string",
|
|
31741
|
-
"description": "The hostName of the FW instance. Valid characters are [a-zA-Z0-9.@_
|
|
32073
|
+
"description": "The hostName of the FW instance. Valid characters are [a-zA-Z0-9.@_+%-]. Cannot be empty."
|
|
31742
32074
|
},
|
|
31743
32075
|
"internalName": {
|
|
31744
32076
|
"type": "string",
|
|
@@ -31964,7 +32296,7 @@
|
|
|
31964
32296
|
"name": {
|
|
31965
32297
|
"maxLength": 12,
|
|
31966
32298
|
"type": "string",
|
|
31967
|
-
"description": "Valid characters are [a-zA-Z0-9.@_
|
|
32299
|
+
"description": "Valid characters are [a-zA-Z0-9.@_+%-]. No leading/trailing spaces allowed. Name will be case sensitive.",
|
|
31968
32300
|
"example": "My Firewall"
|
|
31969
32301
|
},
|
|
31970
32302
|
"globalCidrListId": {
|
|
@@ -32121,7 +32453,7 @@
|
|
|
32121
32453
|
"hostName": {
|
|
32122
32454
|
"maxLength": 256,
|
|
32123
32455
|
"type": "string",
|
|
32124
|
-
"description": "The hostName of the FW instance. Valid characters are [a-zA-Z0-9.@_
|
|
32456
|
+
"description": "The hostName of the FW instance. Valid characters are [a-zA-Z0-9.@_+%-]. Cannot be empty."
|
|
32125
32457
|
},
|
|
32126
32458
|
"internalName": {
|
|
32127
32459
|
"type": "string",
|
|
@@ -32330,7 +32662,7 @@
|
|
|
32330
32662
|
"name": {
|
|
32331
32663
|
"maxLength": 12,
|
|
32332
32664
|
"type": "string",
|
|
32333
|
-
"description": "Valid characters are [a-zA-Z0-9.@_
|
|
32665
|
+
"description": "Valid characters are [a-zA-Z0-9.@_+%-]. No leading/trailing spaces allowed. Name will be case sensitive.",
|
|
32334
32666
|
"example": "My Firewall"
|
|
32335
32667
|
},
|
|
32336
32668
|
"globalCidrListId": {
|
|
@@ -32487,7 +32819,7 @@
|
|
|
32487
32819
|
"hostName": {
|
|
32488
32820
|
"maxLength": 256,
|
|
32489
32821
|
"type": "string",
|
|
32490
|
-
"description": "The hostName of the FW instance. Valid characters are [a-zA-Z0-9.@_
|
|
32822
|
+
"description": "The hostName of the FW instance. Valid characters are [a-zA-Z0-9.@_+%-]. Cannot be empty."
|
|
32491
32823
|
},
|
|
32492
32824
|
"internalName": {
|
|
32493
32825
|
"type": "string",
|
|
@@ -33229,7 +33561,7 @@
|
|
|
33229
33561
|
"minItems": 1,
|
|
33230
33562
|
"type": "array",
|
|
33231
33563
|
"items": {
|
|
33232
|
-
"pattern": "[a-zA-Z0-9.@_
|
|
33564
|
+
"pattern": "[a-zA-Z0-9.@_+%-]*",
|
|
33233
33565
|
"type": "string"
|
|
33234
33566
|
},
|
|
33235
33567
|
"description": "An array containing the names of the segments associated with the service.",
|
|
@@ -40777,14 +41109,14 @@
|
|
|
40777
41109
|
"name": {
|
|
40778
41110
|
"maxLength": 255,
|
|
40779
41111
|
"minLength": 1,
|
|
40780
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
41112
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
40781
41113
|
"type": "string",
|
|
40782
41114
|
"description": "The name of the policy"
|
|
40783
41115
|
},
|
|
40784
41116
|
"description": {
|
|
40785
41117
|
"maxLength": 255,
|
|
40786
41118
|
"minLength": 1,
|
|
40787
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
41119
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
40788
41120
|
"type": "string",
|
|
40789
41121
|
"description": "A user provided description of the policy"
|
|
40790
41122
|
},
|
|
@@ -41113,14 +41445,14 @@
|
|
|
41113
41445
|
"name": {
|
|
41114
41446
|
"maxLength": 255,
|
|
41115
41447
|
"minLength": 1,
|
|
41116
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
41448
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
41117
41449
|
"type": "string",
|
|
41118
41450
|
"description": "The name of the rule"
|
|
41119
41451
|
},
|
|
41120
41452
|
"description": {
|
|
41121
41453
|
"maxLength": 255,
|
|
41122
41454
|
"minLength": 1,
|
|
41123
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
41455
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
41124
41456
|
"type": "string",
|
|
41125
41457
|
"description": "A user provided description of the rule"
|
|
41126
41458
|
},
|
|
@@ -41529,14 +41861,14 @@
|
|
|
41529
41861
|
"name": {
|
|
41530
41862
|
"maxLength": 255,
|
|
41531
41863
|
"minLength": 1,
|
|
41532
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
41864
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
41533
41865
|
"type": "string",
|
|
41534
41866
|
"description": "The name of the rulelist"
|
|
41535
41867
|
},
|
|
41536
41868
|
"description": {
|
|
41537
41869
|
"maxLength": 255,
|
|
41538
41870
|
"minLength": 1,
|
|
41539
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
41871
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
41540
41872
|
"type": "string",
|
|
41541
41873
|
"description": "A user provided description of the rulelist"
|
|
41542
41874
|
},
|
|
@@ -41842,7 +42174,7 @@
|
|
|
41842
42174
|
"name": {
|
|
41843
42175
|
"maxLength": 255,
|
|
41844
42176
|
"minLength": 1,
|
|
41845
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
42177
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
41846
42178
|
"type": "string",
|
|
41847
42179
|
"description": "The name of the prefix list",
|
|
41848
42180
|
"example": "prefixlist1"
|
|
@@ -41850,7 +42182,7 @@
|
|
|
41850
42182
|
"description": {
|
|
41851
42183
|
"maxLength": 255,
|
|
41852
42184
|
"minLength": 1,
|
|
41853
|
-
"pattern": "^[a-zA-Z0-9.@_
|
|
42185
|
+
"pattern": "^[a-zA-Z0-9.@_+%-]*$",
|
|
41854
42186
|
"type": "string",
|
|
41855
42187
|
"description": "A user provided description of the prefixlist",
|
|
41856
42188
|
"example": "prefixlist1"
|