@itentialopensource/adapter-viptela 0.7.0 → 0.9.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.
Files changed (42) hide show
  1. package/.eslintignore +1 -0
  2. package/CHANGELOG.md +32 -0
  3. package/README.md +182 -24
  4. package/adapter.js +7374 -666
  5. package/adapterBase.js +285 -7
  6. package/entities/.generic/action.json +109 -0
  7. package/entities/.generic/schema.json +23 -0
  8. package/entities/.system/action.json +5 -4
  9. package/entities/.system/schemaTokenReq.json +2 -2
  10. package/entities/.system/schemaTokenResp.json +12 -0
  11. package/entities/MonitoringDeviceDetails/action.json +4 -2
  12. package/entities/Statistic/action.json +24 -0
  13. package/entities/Statistic/schema.json +19 -0
  14. package/entities/System/action.json +311 -0
  15. package/entities/System/schema.json +33 -0
  16. package/entities/Template/action.json +1417 -1
  17. package/entities/Template/schema.json +71 -2
  18. package/error.json +6 -0
  19. package/package.json +40 -19
  20. package/pronghorn.json +3509 -560
  21. package/propertiesSchema.json +51 -4
  22. package/refs?service=git-upload-pack +0 -0
  23. package/report/updateReport1612559221344.json +95 -0
  24. package/report/updateReport1642735010496.json +95 -0
  25. package/sampleProperties.json +21 -5
  26. package/test/integration/adapterTestBasicGet.js +85 -0
  27. package/test/integration/adapterTestConnectivity.js +93 -0
  28. package/test/integration/adapterTestIntegration.js +1690 -7
  29. package/test/unit/adapterBaseTestUnit.js +944 -0
  30. package/test/unit/adapterTestUnit.js +2007 -12
  31. package/utils/addAuth.js +94 -0
  32. package/utils/basicGet.js +50 -0
  33. package/utils/checkMigrate.js +63 -0
  34. package/utils/entitiesToDB.js +224 -0
  35. package/utils/findPath.js +74 -0
  36. package/utils/modify.js +154 -0
  37. package/utils/packModificationScript.js +1 -1
  38. package/utils/patches2bundledDeps.js +90 -0
  39. package/utils/removeHooks.js +20 -0
  40. package/utils/tbScript.js +169 -0
  41. package/utils/tbUtils.js +451 -0
  42. package/utils/troubleshootingAdapter.js +190 -0
package/pronghorn.json CHANGED
@@ -82,18 +82,2494 @@
82
82
  },
83
83
  "task": true
84
84
  },
85
+ {
86
+ "name": "findPath",
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": [
90
+ {
91
+ "name": "apiPath",
92
+ "type": "string",
93
+ "info": "The API Path you want to check - make sure to not include base path and version",
94
+ "description": "The API Path you want to check - make sure to not include base path and version",
95
+ "schema": {
96
+ "title": "apiPath",
97
+ "type": "string"
98
+ },
99
+ "required": true
100
+ }
101
+ ],
102
+ "output": {
103
+ "name": "result",
104
+ "type": "object",
105
+ "description": "A JSON Object containing the result",
106
+ "schema": {
107
+ "title": "result",
108
+ "type": "object"
109
+ }
110
+ },
111
+ "roles": [
112
+ "admin"
113
+ ],
114
+ "route": {
115
+ "verb": "POST",
116
+ "path": "/findPath"
117
+ },
118
+ "task": true
119
+ },
120
+ {
121
+ "name": "troubleshoot",
122
+ "summary": "Runs troubleshoot script for adapter",
123
+ "description": "Runs troubleshoot script for adapter",
124
+ "input": [
125
+ {
126
+ "name": "props",
127
+ "type": "object",
128
+ "info": "Object containing configuration, healthcheck and auth properties {'connProps':{'host': 'api.service.com', 'base_path': '/', 'protocol': 'http', 'port': 443, 'version': 'v1'},'healthCheckEndpoint': '/healthcheck', 'auth': {'auth_method': 'no authentication', 'username': 'username', 'password': 'password'}}",
129
+ "required": true,
130
+ "schema": {
131
+ "title": "props",
132
+ "type": "object"
133
+ }
134
+ },
135
+ {
136
+ "name": "persistFlag",
137
+ "type": "boolean",
138
+ "info": "Whether the input properties should be saved",
139
+ "required": true
140
+ }
141
+ ],
142
+ "output": {
143
+ "name": "result",
144
+ "type": "object",
145
+ "description": "A JSON Object containing the test results",
146
+ "schema": {
147
+ "title": "result",
148
+ "type": "object"
149
+ }
150
+ },
151
+ "roles": [
152
+ "admin"
153
+ ],
154
+ "route": {
155
+ "verb": "POST",
156
+ "path": "/troubleshoot"
157
+ },
158
+ "task": true
159
+ },
160
+ {
161
+ "name": "runHealthcheck",
162
+ "summary": "Runs healthcheck script for adapter",
163
+ "description": "Runs healthcheck script for adapter",
164
+ "input": [],
165
+ "output": {
166
+ "name": "result",
167
+ "type": "boolean",
168
+ "description": "Whether healthcheck passed or failed"
169
+ },
170
+ "roles": [
171
+ "admin"
172
+ ],
173
+ "route": {
174
+ "verb": "POST",
175
+ "path": "/runHealthcheck"
176
+ },
177
+ "task": true
178
+ },
179
+ {
180
+ "name": "runConnectivity",
181
+ "summary": "Runs connectivity check script for adapter",
182
+ "description": "Runs connectivity check script for adapter",
183
+ "input": [],
184
+ "output": {
185
+ "name": "result",
186
+ "type": "object",
187
+ "description": "A JSON Object containing the test results",
188
+ "schema": {
189
+ "title": "result",
190
+ "type": "object"
191
+ }
192
+ },
193
+ "roles": [
194
+ "admin"
195
+ ],
196
+ "route": {
197
+ "verb": "POST",
198
+ "path": "/runConnectivity"
199
+ },
200
+ "task": true
201
+ },
202
+ {
203
+ "name": "runBasicGet",
204
+ "summary": "Runs basicGet script for adapter",
205
+ "description": "Runs basicGet script for adapter",
206
+ "input": [],
207
+ "output": {
208
+ "name": "result",
209
+ "type": "object",
210
+ "description": "A JSON Object containing the test results",
211
+ "schema": {
212
+ "title": "result",
213
+ "type": "object"
214
+ }
215
+ },
216
+ "roles": [
217
+ "admin"
218
+ ],
219
+ "route": {
220
+ "verb": "POST",
221
+ "path": "/runBasicGet"
222
+ },
223
+ "task": true
224
+ },
225
+ {
226
+ "name": "suspend",
227
+ "summary": "Suspends the adapter",
228
+ "description": "Suspends the adapter",
229
+ "input": [
230
+ {
231
+ "name": "mode",
232
+ "type": "enum",
233
+ "enumerals": [
234
+ "pause",
235
+ "error"
236
+ ],
237
+ "info": "How incoming requests are handled. Defaults to 'pause'",
238
+ "description": "How incoming requests are handled. Defaults to 'pause'",
239
+ "schema": {
240
+ "title": "mode",
241
+ "type": "string"
242
+ },
243
+ "required": false
244
+ }
245
+ ],
246
+ "output": {
247
+ "name": "result",
248
+ "type": "object",
249
+ "description": "A JSON Object containing the adapter suspended status",
250
+ "schema": {
251
+ "title": "result",
252
+ "type": "object"
253
+ }
254
+ },
255
+ "roles": [
256
+ "admin"
257
+ ],
258
+ "route": {
259
+ "verb": "POST",
260
+ "path": "/suspend"
261
+ },
262
+ "task": true
263
+ },
264
+ {
265
+ "name": "unsuspend",
266
+ "summary": "Unsuspends the adapter",
267
+ "description": "Unsuspends the adapter",
268
+ "input": [],
269
+ "output": {
270
+ "name": "result",
271
+ "type": "object",
272
+ "description": "A JSON Object containing the adapter suspended status",
273
+ "schema": {
274
+ "title": "result",
275
+ "type": "object"
276
+ }
277
+ },
278
+ "roles": [
279
+ "admin"
280
+ ],
281
+ "route": {
282
+ "verb": "POST",
283
+ "path": "/unsuspend"
284
+ },
285
+ "task": true
286
+ },
287
+ {
288
+ "name": "getQueue",
289
+ "summary": "Return the requests that are waiting in the queue if throttling is enabled",
290
+ "description": "Return the requests that are waiting in the queue if throttling is enabled",
291
+ "input": [],
292
+ "output": {
293
+ "name": "result",
294
+ "type": "object",
295
+ "description": "A JSON Object containing the adapter queue",
296
+ "schema": {
297
+ "title": "result",
298
+ "type": "object"
299
+ }
300
+ },
301
+ "roles": [
302
+ "admin"
303
+ ],
304
+ "route": {
305
+ "verb": "POST",
306
+ "path": "/getQueue"
307
+ },
308
+ "task": true
309
+ },
310
+ {
311
+ "name": "genericAdapterRequest",
312
+ "summary": "Makes the requested generic call",
313
+ "description": "Makes the requested generic call",
314
+ "input": [
315
+ {
316
+ "name": "uriPath",
317
+ "type": "string",
318
+ "info": "the path of the api call - do not include the host, port, base path or version",
319
+ "description": "the path of the api call",
320
+ "schema": {
321
+ "title": "uriPath",
322
+ "type": "string"
323
+ },
324
+ "required": true
325
+ },
326
+ {
327
+ "name": "restMethod",
328
+ "type": "string",
329
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
330
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
331
+ "schema": {
332
+ "title": "restMethod",
333
+ "type": "string"
334
+ },
335
+ "required": true
336
+ },
337
+ {
338
+ "name": "queryData",
339
+ "type": "object",
340
+ "info": "the query parameters to be put on the url (optional)",
341
+ "description": "the query parameters to be put on the url (optional)",
342
+ "schema": {
343
+ "title": "queryData",
344
+ "type": "object"
345
+ },
346
+ "required": false
347
+ },
348
+ {
349
+ "name": "requestBody",
350
+ "type": "object",
351
+ "info": "the payload to be sent with the request (optional)",
352
+ "description": "the payload to be sent with the request (optional)",
353
+ "schema": {
354
+ "title": "requestBody",
355
+ "type": "object"
356
+ },
357
+ "required": false
358
+ },
359
+ {
360
+ "name": "addlHeaders",
361
+ "type": "object",
362
+ "info": "additional headers to be put on the call (optional)",
363
+ "description": "additional headers to be put on the call (optional)",
364
+ "schema": {
365
+ "title": "addlHeaders",
366
+ "type": "object"
367
+ },
368
+ "required": false
369
+ }
370
+ ],
371
+ "output": {
372
+ "name": "result",
373
+ "type": "object",
374
+ "description": "A JSON Object containing status, code and the result",
375
+ "schema": {
376
+ "title": "result",
377
+ "type": "object"
378
+ }
379
+ },
380
+ "roles": [
381
+ "admin"
382
+ ],
383
+ "route": {
384
+ "verb": "POST",
385
+ "path": "/genericAdapterRequest"
386
+ },
387
+ "task": true
388
+ },
389
+ {
390
+ "name": "moveEntitiesToDB",
391
+ "summary": "Moves entities from an adapter into the IAP database",
392
+ "description": "Moves entities from an adapter into the IAP database",
393
+ "input": [],
394
+ "output": {
395
+ "name": "res",
396
+ "type": "object",
397
+ "description": "A JSON Object containing status, code and the response from the mongo transaction",
398
+ "schema": {
399
+ "title": "res",
400
+ "type": "object"
401
+ }
402
+ },
403
+ "roles": [
404
+ "admin"
405
+ ],
406
+ "route": {
407
+ "verb": "POST",
408
+ "path": "/moveEntitiesToDB"
409
+ },
410
+ "task": true
411
+ },
412
+ {
413
+ "name": "getDevice",
414
+ "summary": "Get the Appliance",
415
+ "description": "Get the Appliance",
416
+ "input": [
417
+ {
418
+ "name": "deviceName",
419
+ "type": "string",
420
+ "info": "An Appliance Device Name",
421
+ "required": true,
422
+ "schema": {
423
+ "title": "deviceName",
424
+ "type": "string"
425
+ }
426
+ }
427
+ ],
428
+ "output": {
429
+ "name": "result",
430
+ "type": "object",
431
+ "description": "A JSON Object containing status, code and the result",
432
+ "schema": {
433
+ "title": "result",
434
+ "type": "object"
435
+ }
436
+ },
437
+ "roles": [
438
+ "admin"
439
+ ],
440
+ "route": {
441
+ "verb": "POST",
442
+ "path": "/getDevice"
443
+ },
444
+ "task": false
445
+ },
446
+ {
447
+ "name": "getDevicesFiltered",
448
+ "summary": "Get Appliances that match the filter",
449
+ "description": "Get Appliances that match the filter",
450
+ "input": [
451
+ {
452
+ "name": "options",
453
+ "type": "object",
454
+ "info": "options - e.g. { 'start': 1, 'limit': 20, 'filter': { 'name': 'abc123' } }",
455
+ "required": true,
456
+ "schema": {
457
+ "title": "options",
458
+ "type": "object"
459
+ }
460
+ }
461
+ ],
462
+ "output": {
463
+ "name": "result",
464
+ "type": "array",
465
+ "description": "A JSON Object containing status, code and the result",
466
+ "schema": {
467
+ "title": "result",
468
+ "type": "array"
469
+ }
470
+ },
471
+ "roles": [
472
+ "admin"
473
+ ],
474
+ "route": {
475
+ "verb": "POST",
476
+ "path": "/getDevicesFiltered"
477
+ },
478
+ "task": false
479
+ },
480
+ {
481
+ "name": "isAlive",
482
+ "summary": "Checks the status for the provided Appliance",
483
+ "description": "Checks the status for the provided Appliance",
484
+ "input": [
485
+ {
486
+ "name": "deviceName",
487
+ "type": "string",
488
+ "info": "An Appliance Device Name",
489
+ "required": true,
490
+ "schema": {
491
+ "title": "deviceName",
492
+ "type": "string"
493
+ }
494
+ }
495
+ ],
496
+ "output": {
497
+ "name": "result",
498
+ "type": "boolean",
499
+ "description": "A JSON Object containing status, code and the result",
500
+ "schema": {
501
+ "title": "result",
502
+ "type": "boolean"
503
+ }
504
+ },
505
+ "roles": [
506
+ "admin"
507
+ ],
508
+ "route": {
509
+ "verb": "POST",
510
+ "path": "/isAlive"
511
+ },
512
+ "task": false
513
+ },
514
+ {
515
+ "name": "getConfig",
516
+ "summary": "Gets a config for the provided Appliance",
517
+ "description": "Gets a config for the provided Appliance",
518
+ "input": [
519
+ {
520
+ "name": "deviceName",
521
+ "type": "string",
522
+ "info": "An Appliance Device Name",
523
+ "required": true,
524
+ "schema": {
525
+ "title": "deviceName",
526
+ "type": "string"
527
+ }
528
+ },
529
+ {
530
+ "name": "format",
531
+ "type": "string",
532
+ "info": "The format to be returned - this is ignored as we always return json",
533
+ "required": false,
534
+ "schema": {
535
+ "title": "format",
536
+ "type": "string"
537
+ }
538
+ }
539
+ ],
540
+ "output": {
541
+ "name": "result",
542
+ "type": "object",
543
+ "description": "A JSON Object containing status, code and the result",
544
+ "schema": {
545
+ "title": "result",
546
+ "type": "object"
547
+ }
548
+ },
549
+ "roles": [
550
+ "admin"
551
+ ],
552
+ "route": {
553
+ "verb": "POST",
554
+ "path": "/getConfig"
555
+ },
556
+ "task": false
557
+ },
558
+ {
559
+ "name": "getCount",
560
+ "summary": "Gets a device count from the system",
561
+ "description": "Gets a device count from the system",
562
+ "input": [],
563
+ "output": {
564
+ "name": "result",
565
+ "type": "object",
566
+ "description": "A JSON Object containing status, code and the result",
567
+ "schema": {
568
+ "title": "result",
569
+ "type": "object"
570
+ }
571
+ },
572
+ "roles": [
573
+ "admin"
574
+ ],
575
+ "route": {
576
+ "verb": "POST",
577
+ "path": "/getCount"
578
+ },
579
+ "task": false
580
+ },
85
581
  {
86
582
  "name": "getStatisticsinterface",
87
583
  "summary": "Get raw data",
88
584
  "description": "Get with optional query",
89
585
  "input": [
90
586
  {
91
- "name": "query",
587
+ "name": "query",
588
+ "type": "string",
589
+ "info": "",
590
+ "required": false,
591
+ "schema": {
592
+ "title": "query",
593
+ "type": "string"
594
+ }
595
+ }
596
+ ],
597
+ "output": {
598
+ "name": "result",
599
+ "type": "object",
600
+ "description": "A JSON Object containing status, code and the result",
601
+ "schema": {
602
+ "title": "result",
603
+ "type": "object"
604
+ }
605
+ },
606
+ "roles": [
607
+ "admin"
608
+ ],
609
+ "route": {
610
+ "verb": "POST",
611
+ "path": "/getStatisticsinterface"
612
+ },
613
+ "task": true
614
+ },
615
+ {
616
+ "name": "postStatisticsinterface",
617
+ "summary": "Get raw data",
618
+ "description": "Get with optional query",
619
+ "input": [
620
+ {
621
+ "name": "body",
622
+ "type": "string",
623
+ "info": "",
624
+ "required": false,
625
+ "schema": {
626
+ "title": "body",
627
+ "type": "string"
628
+ }
629
+ }
630
+ ],
631
+ "output": {
632
+ "name": "result",
633
+ "type": "object",
634
+ "description": "A JSON Object containing status, code and the result",
635
+ "schema": {
636
+ "title": "result",
637
+ "type": "object"
638
+ }
639
+ },
640
+ "roles": [
641
+ "admin"
642
+ ],
643
+ "route": {
644
+ "verb": "POST",
645
+ "path": "/postStatisticsinterface"
646
+ },
647
+ "task": true
648
+ },
649
+ {
650
+ "name": "getStatisticsinterfaceaggregation",
651
+ "summary": "Get raw data",
652
+ "description": "Get with optional query",
653
+ "input": [
654
+ {
655
+ "name": "query",
656
+ "type": "string",
657
+ "info": "",
658
+ "required": false,
659
+ "schema": {
660
+ "title": "query",
661
+ "type": "string"
662
+ }
663
+ }
664
+ ],
665
+ "output": {
666
+ "name": "result",
667
+ "type": "object",
668
+ "description": "A JSON Object containing status, code and the result",
669
+ "schema": {
670
+ "title": "result",
671
+ "type": "object"
672
+ }
673
+ },
674
+ "roles": [
675
+ "admin"
676
+ ],
677
+ "route": {
678
+ "verb": "POST",
679
+ "path": "/getStatisticsinterfaceaggregation"
680
+ },
681
+ "task": true
682
+ },
683
+ {
684
+ "name": "postStatisticsinterfaceaggregation",
685
+ "summary": "Get raw data",
686
+ "description": "Get with optional query",
687
+ "input": [
688
+ {
689
+ "name": "body",
690
+ "type": "string",
691
+ "info": "",
692
+ "required": false,
693
+ "schema": {
694
+ "title": "body",
695
+ "type": "string"
696
+ }
697
+ }
698
+ ],
699
+ "output": {
700
+ "name": "result",
701
+ "type": "object",
702
+ "description": "A JSON Object containing status, code and the result",
703
+ "schema": {
704
+ "title": "result",
705
+ "type": "object"
706
+ }
707
+ },
708
+ "roles": [
709
+ "admin"
710
+ ],
711
+ "route": {
712
+ "verb": "POST",
713
+ "path": "/postStatisticsinterfaceaggregation"
714
+ },
715
+ "task": true
716
+ },
717
+ {
718
+ "name": "getStatisticsinterfacecsv",
719
+ "summary": "Get raw data as CSV",
720
+ "description": "Get raw data with optional query as CSV",
721
+ "input": [
722
+ {
723
+ "name": "query",
724
+ "type": "string",
725
+ "info": "",
726
+ "required": false,
727
+ "schema": {
728
+ "title": "query",
729
+ "type": "string"
730
+ }
731
+ }
732
+ ],
733
+ "output": {
734
+ "name": "result",
735
+ "type": "object",
736
+ "description": "A JSON Object containing status, code and the result",
737
+ "schema": {
738
+ "title": "result",
739
+ "type": "object"
740
+ }
741
+ },
742
+ "roles": [
743
+ "admin"
744
+ ],
745
+ "route": {
746
+ "verb": "POST",
747
+ "path": "/getStatisticsinterfacecsv"
748
+ },
749
+ "task": true
750
+ },
751
+ {
752
+ "name": "getStatisticsinterfacedoccount",
753
+ "summary": "Get response count of a query",
754
+ "description": "Get response count of a query",
755
+ "input": [
756
+ {
757
+ "name": "query",
758
+ "type": "string",
759
+ "info": "",
760
+ "required": false,
761
+ "schema": {
762
+ "title": "query",
763
+ "type": "string"
764
+ }
765
+ }
766
+ ],
767
+ "output": {
768
+ "name": "result",
769
+ "type": "object",
770
+ "description": "A JSON Object containing status, code and the result",
771
+ "schema": {
772
+ "title": "result",
773
+ "type": "object"
774
+ }
775
+ },
776
+ "roles": [
777
+ "admin"
778
+ ],
779
+ "route": {
780
+ "verb": "POST",
781
+ "path": "/getStatisticsinterfacedoccount"
782
+ },
783
+ "task": true
784
+ },
785
+ {
786
+ "name": "postStatisticsinterfacedoccount",
787
+ "summary": "Get response count of a query",
788
+ "description": "Get response count of a query",
789
+ "input": [
790
+ {
791
+ "name": "body",
792
+ "type": "string",
793
+ "info": "",
794
+ "required": false,
795
+ "schema": {
796
+ "title": "body",
797
+ "type": "string"
798
+ }
799
+ }
800
+ ],
801
+ "output": {
802
+ "name": "result",
803
+ "type": "object",
804
+ "description": "A JSON Object containing status, code and the result",
805
+ "schema": {
806
+ "title": "result",
807
+ "type": "object"
808
+ }
809
+ },
810
+ "roles": [
811
+ "admin"
812
+ ],
813
+ "route": {
814
+ "verb": "POST",
815
+ "path": "/postStatisticsinterfacedoccount"
816
+ },
817
+ "task": true
818
+ },
819
+ {
820
+ "name": "getStatisticsinterfacefields",
821
+ "summary": "Get fields and type",
822
+ "description": "Get fields and type",
823
+ "input": [],
824
+ "output": {
825
+ "name": "result",
826
+ "type": "object",
827
+ "description": "A JSON Object containing status, code and the result",
828
+ "schema": {
829
+ "title": "result",
830
+ "type": "object"
831
+ }
832
+ },
833
+ "roles": [
834
+ "admin"
835
+ ],
836
+ "route": {
837
+ "verb": "GET",
838
+ "path": "/getStatisticsinterfacefields"
839
+ },
840
+ "task": true
841
+ },
842
+ {
843
+ "name": "getStatisticsinterfacepage",
844
+ "summary": "Get raw data",
845
+ "description": "Get with optional query",
846
+ "input": [
847
+ {
848
+ "name": "query",
849
+ "type": "string",
850
+ "info": "",
851
+ "required": false,
852
+ "schema": {
853
+ "title": "query",
854
+ "type": "string"
855
+ }
856
+ },
857
+ {
858
+ "name": "scrollId",
859
+ "type": "string",
860
+ "info": "",
861
+ "required": false,
862
+ "schema": {
863
+ "title": "scrollId",
864
+ "type": "string"
865
+ }
866
+ },
867
+ {
868
+ "name": "count",
869
+ "type": "number",
870
+ "info": "",
871
+ "required": false,
872
+ "schema": {
873
+ "title": "count",
874
+ "type": "number"
875
+ }
876
+ }
877
+ ],
878
+ "output": {
879
+ "name": "result",
880
+ "type": "object",
881
+ "description": "A JSON Object containing status, code and the result",
882
+ "schema": {
883
+ "title": "result",
884
+ "type": "object"
885
+ }
886
+ },
887
+ "roles": [
888
+ "admin"
889
+ ],
890
+ "route": {
891
+ "verb": "POST",
892
+ "path": "/getStatisticsinterfacepage"
893
+ },
894
+ "task": true
895
+ },
896
+ {
897
+ "name": "postStatisticsinterfacepage",
898
+ "summary": "Get raw data",
899
+ "description": "Get with optional query",
900
+ "input": [
901
+ {
902
+ "name": "body",
903
+ "type": "string",
904
+ "info": "",
905
+ "required": false,
906
+ "schema": {
907
+ "title": "body",
908
+ "type": "string"
909
+ }
910
+ },
911
+ {
912
+ "name": "scrollId",
913
+ "type": "string",
914
+ "info": "",
915
+ "required": false,
916
+ "schema": {
917
+ "title": "scrollId",
918
+ "type": "string"
919
+ }
920
+ },
921
+ {
922
+ "name": "count",
923
+ "type": "number",
924
+ "info": "",
925
+ "required": false,
926
+ "schema": {
927
+ "title": "count",
928
+ "type": "number"
929
+ }
930
+ }
931
+ ],
932
+ "output": {
933
+ "name": "result",
934
+ "type": "object",
935
+ "description": "A JSON Object containing status, code and the result",
936
+ "schema": {
937
+ "title": "result",
938
+ "type": "object"
939
+ }
940
+ },
941
+ "roles": [
942
+ "admin"
943
+ ],
944
+ "route": {
945
+ "verb": "POST",
946
+ "path": "/postStatisticsinterfacepage"
947
+ },
948
+ "task": true
949
+ },
950
+ {
951
+ "name": "getStatisticsinterfacequeryfields",
952
+ "summary": "Get query fields",
953
+ "description": "Get query field",
954
+ "input": [],
955
+ "output": {
956
+ "name": "result",
957
+ "type": "object",
958
+ "description": "A JSON Object containing status, code and the result",
959
+ "schema": {
960
+ "title": "result",
961
+ "type": "object"
962
+ }
963
+ },
964
+ "roles": [
965
+ "admin"
966
+ ],
967
+ "route": {
968
+ "verb": "GET",
969
+ "path": "/getStatisticsinterfacequeryfields"
970
+ },
971
+ "task": true
972
+ },
973
+ {
974
+ "name": "getDatadevicestatestateDataType",
975
+ "summary": "Retrieve device state data",
976
+ "description": "Retrieve device state data",
977
+ "input": [
978
+ {
979
+ "name": "stateDataType",
980
+ "type": "string",
981
+ "info": "",
982
+ "required": true,
983
+ "schema": {
984
+ "title": "stateDataType",
985
+ "type": "string"
986
+ }
987
+ },
988
+ {
989
+ "name": "startId",
990
+ "type": "string",
991
+ "info": "",
992
+ "required": false,
993
+ "schema": {
994
+ "title": "startId",
995
+ "type": "string"
996
+ }
997
+ },
998
+ {
999
+ "name": "count",
1000
+ "type": "number",
1001
+ "info": "",
1002
+ "required": false,
1003
+ "schema": {
1004
+ "title": "count",
1005
+ "type": "number"
1006
+ }
1007
+ }
1008
+ ],
1009
+ "output": {
1010
+ "name": "result",
1011
+ "type": "object",
1012
+ "description": "A JSON Object containing status, code and the result",
1013
+ "schema": {
1014
+ "title": "result",
1015
+ "type": "object"
1016
+ }
1017
+ },
1018
+ "roles": [
1019
+ "admin"
1020
+ ],
1021
+ "route": {
1022
+ "verb": "POST",
1023
+ "path": "/getDatadevicestatestateDataType"
1024
+ },
1025
+ "task": true
1026
+ },
1027
+ {
1028
+ "name": "getDatadevicestatestateDataTypefields",
1029
+ "summary": "Retrieve device state data fileds",
1030
+ "description": "Retrieve device state data fields",
1031
+ "input": [
1032
+ {
1033
+ "name": "stateDataType",
1034
+ "type": "string",
1035
+ "info": "",
1036
+ "required": true,
1037
+ "schema": {
1038
+ "title": "stateDataType",
1039
+ "type": "string"
1040
+ }
1041
+ }
1042
+ ],
1043
+ "output": {
1044
+ "name": "result",
1045
+ "type": "object",
1046
+ "description": "A JSON Object containing status, code and the result",
1047
+ "schema": {
1048
+ "title": "result",
1049
+ "type": "object"
1050
+ }
1051
+ },
1052
+ "roles": [
1053
+ "admin"
1054
+ ],
1055
+ "route": {
1056
+ "verb": "POST",
1057
+ "path": "/getDatadevicestatestateDataTypefields"
1058
+ },
1059
+ "task": true
1060
+ },
1061
+ {
1062
+ "name": "getDatadevicestatestateDataTypequery",
1063
+ "summary": "Retrieve device state data fileds",
1064
+ "description": "Retrieve device state data fields",
1065
+ "input": [
1066
+ {
1067
+ "name": "stateDataType",
1068
+ "type": "string",
1069
+ "info": "",
1070
+ "required": true,
1071
+ "schema": {
1072
+ "title": "stateDataType",
1073
+ "type": "string"
1074
+ }
1075
+ }
1076
+ ],
1077
+ "output": {
1078
+ "name": "result",
1079
+ "type": "object",
1080
+ "description": "A JSON Object containing status, code and the result",
1081
+ "schema": {
1082
+ "title": "result",
1083
+ "type": "object"
1084
+ }
1085
+ },
1086
+ "roles": [
1087
+ "admin"
1088
+ ],
1089
+ "route": {
1090
+ "verb": "POST",
1091
+ "path": "/getDatadevicestatestateDataTypequery"
1092
+ },
1093
+ "task": true
1094
+ },
1095
+ {
1096
+ "name": "getDevices",
1097
+ "summary": "Retrieve list of all devices",
1098
+ "description": "Retrieve list of all devices",
1099
+ "input": [],
1100
+ "output": {
1101
+ "name": "result",
1102
+ "type": "object",
1103
+ "description": "A JSON Object containing status, code and the result",
1104
+ "schema": {
1105
+ "title": "result",
1106
+ "type": "object"
1107
+ }
1108
+ },
1109
+ "roles": [
1110
+ "admin"
1111
+ ],
1112
+ "route": {
1113
+ "verb": "GET",
1114
+ "path": "/getDevices"
1115
+ },
1116
+ "task": true
1117
+ },
1118
+ {
1119
+ "name": "getDeviceconfig",
1120
+ "summary": "Retrieve device running configuration",
1121
+ "description": "Retrieve device running configuration",
1122
+ "input": [
1123
+ {
1124
+ "name": "deviceId",
1125
+ "type": "array",
1126
+ "info": "Device ID",
1127
+ "required": true,
1128
+ "schema": {
1129
+ "title": "deviceId",
1130
+ "type": "array"
1131
+ }
1132
+ }
1133
+ ],
1134
+ "output": {
1135
+ "name": "result",
1136
+ "type": "object",
1137
+ "description": "A JSON Object containing status, code and the result",
1138
+ "schema": {
1139
+ "title": "result",
1140
+ "type": "object"
1141
+ }
1142
+ },
1143
+ "roles": [
1144
+ "admin"
1145
+ ],
1146
+ "route": {
1147
+ "verb": "POST",
1148
+ "path": "/getDeviceconfig"
1149
+ },
1150
+ "task": true
1151
+ },
1152
+ {
1153
+ "name": "getDeviceconfightml",
1154
+ "summary": "Retrieve device running configuration in HTML",
1155
+ "description": "Retrieve device running configuration in HTML",
1156
+ "input": [
1157
+ {
1158
+ "name": "deviceId",
1159
+ "type": "array",
1160
+ "info": "Device ID",
1161
+ "required": true,
1162
+ "schema": {
1163
+ "title": "deviceId",
1164
+ "type": "array"
1165
+ }
1166
+ }
1167
+ ],
1168
+ "output": {
1169
+ "name": "result",
1170
+ "type": "object",
1171
+ "description": "A JSON Object containing status, code and the result",
1172
+ "schema": {
1173
+ "title": "result",
1174
+ "type": "object"
1175
+ }
1176
+ },
1177
+ "roles": [
1178
+ "admin"
1179
+ ],
1180
+ "route": {
1181
+ "verb": "POST",
1182
+ "path": "/getDeviceconfightml"
1183
+ },
1184
+ "task": true
1185
+ },
1186
+ {
1187
+ "name": "getDevicecounters",
1188
+ "summary": "Retrieve device counters",
1189
+ "description": "Retrieve device counters",
1190
+ "input": [],
1191
+ "output": {
1192
+ "name": "result",
1193
+ "type": "object",
1194
+ "description": "A JSON Object containing status, code and the result",
1195
+ "schema": {
1196
+ "title": "result",
1197
+ "type": "object"
1198
+ }
1199
+ },
1200
+ "roles": [
1201
+ "admin"
1202
+ ],
1203
+ "route": {
1204
+ "verb": "GET",
1205
+ "path": "/getDevicecounters"
1206
+ },
1207
+ "task": true
1208
+ },
1209
+ {
1210
+ "name": "getDevicedevicestatus",
1211
+ "summary": "Retrieve device status",
1212
+ "description": "Retrieve device status",
1213
+ "input": [],
1214
+ "output": {
1215
+ "name": "result",
1216
+ "type": "object",
1217
+ "description": "A JSON Object containing status, code and the result",
1218
+ "schema": {
1219
+ "title": "result",
1220
+ "type": "object"
1221
+ }
1222
+ },
1223
+ "roles": [
1224
+ "admin"
1225
+ ],
1226
+ "route": {
1227
+ "verb": "GET",
1228
+ "path": "/getDevicedevicestatus"
1229
+ },
1230
+ "task": true
1231
+ },
1232
+ {
1233
+ "name": "getDevicehardwarehealthdetail",
1234
+ "summary": "Retrieve detailed hardware health",
1235
+ "description": "Retrieve detailed hardware health",
1236
+ "input": [],
1237
+ "output": {
1238
+ "name": "result",
1239
+ "type": "object",
1240
+ "description": "A JSON Object containing status, code and the result",
1241
+ "schema": {
1242
+ "title": "result",
1243
+ "type": "object"
1244
+ }
1245
+ },
1246
+ "roles": [
1247
+ "admin"
1248
+ ],
1249
+ "route": {
1250
+ "verb": "GET",
1251
+ "path": "/getDevicehardwarehealthdetail"
1252
+ },
1253
+ "task": true
1254
+ },
1255
+ {
1256
+ "name": "getDevicehardwarehealthsummary",
1257
+ "summary": "Retrieve hardware health summary",
1258
+ "description": "Retrieve hardware health summary",
1259
+ "input": [
1260
+ {
1261
+ "name": "isCached",
1262
+ "type": "boolean",
1263
+ "info": "",
1264
+ "required": false,
1265
+ "schema": {
1266
+ "title": "isCached",
1267
+ "type": "boolean"
1268
+ }
1269
+ }
1270
+ ],
1271
+ "output": {
1272
+ "name": "result",
1273
+ "type": "object",
1274
+ "description": "A JSON Object containing status, code and the result",
1275
+ "schema": {
1276
+ "title": "result",
1277
+ "type": "object"
1278
+ }
1279
+ },
1280
+ "roles": [
1281
+ "admin"
1282
+ ],
1283
+ "route": {
1284
+ "verb": "POST",
1285
+ "path": "/getDevicehardwarehealthsummary"
1286
+ },
1287
+ "task": true
1288
+ },
1289
+ {
1290
+ "name": "getDevicekeyvalue",
1291
+ "summary": "Retrieve device list as key/value pairs",
1292
+ "description": "Retrieve device list as key/value pairs",
1293
+ "input": [],
1294
+ "output": {
1295
+ "name": "result",
1296
+ "type": "object",
1297
+ "description": "A JSON Object containing status, code and the result",
1298
+ "schema": {
1299
+ "title": "result",
1300
+ "type": "object"
1301
+ }
1302
+ },
1303
+ "roles": [
1304
+ "admin"
1305
+ ],
1306
+ "route": {
1307
+ "verb": "GET",
1308
+ "path": "/getDevicekeyvalue"
1309
+ },
1310
+ "task": true
1311
+ },
1312
+ {
1313
+ "name": "getDevicemodels",
1314
+ "summary": "Retrieve all device models",
1315
+ "description": "Retrieve all device models",
1316
+ "input": [
1317
+ {
1318
+ "name": "list",
1319
+ "type": "string",
1320
+ "info": "",
1321
+ "required": false,
1322
+ "schema": {
1323
+ "title": "list",
1324
+ "type": "string"
1325
+ }
1326
+ }
1327
+ ],
1328
+ "output": {
1329
+ "name": "result",
1330
+ "type": "object",
1331
+ "description": "A JSON Object containing status, code and the result",
1332
+ "schema": {
1333
+ "title": "result",
1334
+ "type": "object"
1335
+ }
1336
+ },
1337
+ "roles": [
1338
+ "admin"
1339
+ ],
1340
+ "route": {
1341
+ "verb": "POST",
1342
+ "path": "/getDevicemodels"
1343
+ },
1344
+ "task": true
1345
+ },
1346
+ {
1347
+ "name": "getDevicemodelsuuid",
1348
+ "summary": "Retrieve the device model for the device",
1349
+ "description": "Retrieve the device model for the device",
1350
+ "input": [
1351
+ {
1352
+ "name": "uuid",
1353
+ "type": "string",
1354
+ "info": "",
1355
+ "required": true,
1356
+ "schema": {
1357
+ "title": "uuid",
1358
+ "type": "string"
1359
+ }
1360
+ }
1361
+ ],
1362
+ "output": {
1363
+ "name": "result",
1364
+ "type": "object",
1365
+ "description": "A JSON Object containing status, code and the result",
1366
+ "schema": {
1367
+ "title": "result",
1368
+ "type": "object"
1369
+ }
1370
+ },
1371
+ "roles": [
1372
+ "admin"
1373
+ ],
1374
+ "route": {
1375
+ "verb": "POST",
1376
+ "path": "/getDevicemodelsuuid"
1377
+ },
1378
+ "task": true
1379
+ },
1380
+ {
1381
+ "name": "getDevicemonitor",
1382
+ "summary": "Retrieve all device monitoring details",
1383
+ "description": "Retrieve all device monitoring details",
1384
+ "input": [],
1385
+ "output": {
1386
+ "name": "result",
1387
+ "type": "object",
1388
+ "description": "A JSON Object containing status, code and the result",
1389
+ "schema": {
1390
+ "title": "result",
1391
+ "type": "object"
1392
+ }
1393
+ },
1394
+ "roles": [
1395
+ "admin"
1396
+ ],
1397
+ "route": {
1398
+ "verb": "GET",
1399
+ "path": "/getDevicemonitor"
1400
+ },
1401
+ "task": true
1402
+ },
1403
+ {
1404
+ "name": "getDevicequeues",
1405
+ "summary": "Retrieve synchronized queue information",
1406
+ "description": "Retrieve synchronized queue information",
1407
+ "input": [],
1408
+ "output": {
1409
+ "name": "result",
1410
+ "type": "object",
1411
+ "description": "A JSON Object containing status, code and the result",
1412
+ "schema": {
1413
+ "title": "result",
1414
+ "type": "object"
1415
+ }
1416
+ },
1417
+ "roles": [
1418
+ "admin"
1419
+ ],
1420
+ "route": {
1421
+ "verb": "GET",
1422
+ "path": "/getDevicequeues"
1423
+ },
1424
+ "task": true
1425
+ },
1426
+ {
1427
+ "name": "getDevicereachable",
1428
+ "summary": "Retrieve list of reachable devices",
1429
+ "description": "Retrieve list of reachable devices",
1430
+ "input": [],
1431
+ "output": {
1432
+ "name": "result",
1433
+ "type": "object",
1434
+ "description": "A JSON Object containing status, code and the result",
1435
+ "schema": {
1436
+ "title": "result",
1437
+ "type": "object"
1438
+ }
1439
+ },
1440
+ "roles": [
1441
+ "admin"
1442
+ ],
1443
+ "route": {
1444
+ "verb": "GET",
1445
+ "path": "/getDevicereachable"
1446
+ },
1447
+ "task": true
1448
+ },
1449
+ {
1450
+ "name": "getDevicestats",
1451
+ "summary": "Retrieve synchronized queue information",
1452
+ "description": "Retrieve synchronized queue information",
1453
+ "input": [],
1454
+ "output": {
1455
+ "name": "result",
1456
+ "type": "object",
1457
+ "description": "A JSON Object containing status, code and the result",
1458
+ "schema": {
1459
+ "title": "result",
1460
+ "type": "object"
1461
+ }
1462
+ },
1463
+ "roles": [
1464
+ "admin"
1465
+ ],
1466
+ "route": {
1467
+ "verb": "GET",
1468
+ "path": "/getDevicestats"
1469
+ },
1470
+ "task": true
1471
+ },
1472
+ {
1473
+ "name": "getDevicestatus",
1474
+ "summary": "Retrieve device status",
1475
+ "description": "Retrieve device status",
1476
+ "input": [],
1477
+ "output": {
1478
+ "name": "result",
1479
+ "type": "object",
1480
+ "description": "A JSON Object containing status, code and the result",
1481
+ "schema": {
1482
+ "title": "result",
1483
+ "type": "object"
1484
+ }
1485
+ },
1486
+ "roles": [
1487
+ "admin"
1488
+ ],
1489
+ "route": {
1490
+ "verb": "GET",
1491
+ "path": "/getDevicestatus"
1492
+ },
1493
+ "task": true
1494
+ },
1495
+ {
1496
+ "name": "getDevicesyncStatus",
1497
+ "summary": "Retrieve list of currently syncing devices",
1498
+ "description": "Retrieve list of currently syncing devices",
1499
+ "input": [
1500
+ {
1501
+ "name": "groupId",
1502
+ "type": "string",
1503
+ "info": "Group ID",
1504
+ "required": false,
1505
+ "schema": {
1506
+ "title": "groupId",
1507
+ "type": "string"
1508
+ }
1509
+ }
1510
+ ],
1511
+ "output": {
1512
+ "name": "result",
1513
+ "type": "object",
1514
+ "description": "A JSON Object containing status, code and the result",
1515
+ "schema": {
1516
+ "title": "result",
1517
+ "type": "object"
1518
+ }
1519
+ },
1520
+ "roles": [
1521
+ "admin"
1522
+ ],
1523
+ "route": {
1524
+ "verb": "POST",
1525
+ "path": "/getDevicesyncStatus"
1526
+ },
1527
+ "task": true
1528
+ },
1529
+ {
1530
+ "name": "postDevicesyncallmemorydb",
1531
+ "summary": "Synchronize memory database for all devices",
1532
+ "description": "Synchronize memory database for all devices",
1533
+ "input": [],
1534
+ "output": {
1535
+ "name": "result",
1536
+ "type": "object",
1537
+ "description": "A JSON Object containing status, code and the result",
1538
+ "schema": {
1539
+ "title": "result",
1540
+ "type": "object"
1541
+ }
1542
+ },
1543
+ "roles": [
1544
+ "admin"
1545
+ ],
1546
+ "route": {
1547
+ "verb": "GET",
1548
+ "path": "/postDevicesyncallmemorydb"
1549
+ },
1550
+ "task": true
1551
+ },
1552
+ {
1553
+ "name": "getDevicetloc",
1554
+ "summary": "Retrieve TLOC status",
1555
+ "description": "Retrieve TLOC status",
1556
+ "input": [],
1557
+ "output": {
1558
+ "name": "result",
1559
+ "type": "object",
1560
+ "description": "A JSON Object containing status, code and the result",
1561
+ "schema": {
1562
+ "title": "result",
1563
+ "type": "object"
1564
+ }
1565
+ },
1566
+ "roles": [
1567
+ "admin"
1568
+ ],
1569
+ "route": {
1570
+ "verb": "GET",
1571
+ "path": "/getDevicetloc"
1572
+ },
1573
+ "task": true
1574
+ },
1575
+ {
1576
+ "name": "getDevicetlocutil",
1577
+ "summary": "Retrieve TLOC list",
1578
+ "description": "Retrieve TLOC list",
1579
+ "input": [],
1580
+ "output": {
1581
+ "name": "result",
1582
+ "type": "object",
1583
+ "description": "A JSON Object containing status, code and the result",
1584
+ "schema": {
1585
+ "title": "result",
1586
+ "type": "object"
1587
+ }
1588
+ },
1589
+ "roles": [
1590
+ "admin"
1591
+ ],
1592
+ "route": {
1593
+ "verb": "GET",
1594
+ "path": "/getDevicetlocutil"
1595
+ },
1596
+ "task": true
1597
+ },
1598
+ {
1599
+ "name": "getDevicetlocutildetail",
1600
+ "summary": "Retrieve detailed TLOC list",
1601
+ "description": "Retrieve detailed TLOC list",
1602
+ "input": [],
1603
+ "output": {
1604
+ "name": "result",
1605
+ "type": "object",
1606
+ "description": "A JSON Object containing status, code and the result",
1607
+ "schema": {
1608
+ "title": "result",
1609
+ "type": "object"
1610
+ }
1611
+ },
1612
+ "roles": [
1613
+ "admin"
1614
+ ],
1615
+ "route": {
1616
+ "verb": "GET",
1617
+ "path": "/getDevicetlocutildetail"
1618
+ },
1619
+ "task": true
1620
+ },
1621
+ {
1622
+ "name": "getDeviceunreachable",
1623
+ "summary": "Retrieve list of unreachable devices",
1624
+ "description": "Retrieve list of unreachable devices",
1625
+ "input": [],
1626
+ "output": {
1627
+ "name": "result",
1628
+ "type": "object",
1629
+ "description": "A JSON Object containing status, code and the result",
1630
+ "schema": {
1631
+ "title": "result",
1632
+ "type": "object"
1633
+ }
1634
+ },
1635
+ "roles": [
1636
+ "admin"
1637
+ ],
1638
+ "route": {
1639
+ "verb": "GET",
1640
+ "path": "/getDeviceunreachable"
1641
+ },
1642
+ "task": true
1643
+ },
1644
+ {
1645
+ "name": "deleteDeviceunreachabledeviceIP",
1646
+ "summary": "Delete unreachable device",
1647
+ "description": "Delete unreachable device",
1648
+ "input": [
1649
+ {
1650
+ "name": "deviceIP",
1651
+ "type": "string",
1652
+ "info": "",
1653
+ "required": true,
1654
+ "schema": {
1655
+ "title": "deviceIP",
1656
+ "type": "string"
1657
+ }
1658
+ }
1659
+ ],
1660
+ "output": {
1661
+ "name": "result",
1662
+ "type": "object",
1663
+ "description": "A JSON Object containing status, code and the result",
1664
+ "schema": {
1665
+ "title": "result",
1666
+ "type": "object"
1667
+ }
1668
+ },
1669
+ "roles": [
1670
+ "admin"
1671
+ ],
1672
+ "route": {
1673
+ "verb": "POST",
1674
+ "path": "/deleteDeviceunreachabledeviceIP"
1675
+ },
1676
+ "task": true
1677
+ },
1678
+ {
1679
+ "name": "getDevicevedgeinventorydetail",
1680
+ "summary": "Retrieve detailed vEdge inventory",
1681
+ "description": "Retrieve detailed vEdge inventory",
1682
+ "input": [],
1683
+ "output": {
1684
+ "name": "result",
1685
+ "type": "object",
1686
+ "description": "A JSON Object containing status, code and the result",
1687
+ "schema": {
1688
+ "title": "result",
1689
+ "type": "object"
1690
+ }
1691
+ },
1692
+ "roles": [
1693
+ "admin"
1694
+ ],
1695
+ "route": {
1696
+ "verb": "GET",
1697
+ "path": "/getDevicevedgeinventorydetail"
1698
+ },
1699
+ "task": true
1700
+ },
1701
+ {
1702
+ "name": "getDevicevedgeinventorysummary",
1703
+ "summary": "Retrieve vEdge inventory",
1704
+ "description": "Retrieve vEdge inventory",
1705
+ "input": [],
1706
+ "output": {
1707
+ "name": "result",
1708
+ "type": "object",
1709
+ "description": "A JSON Object containing status, code and the result",
1710
+ "schema": {
1711
+ "title": "result",
1712
+ "type": "object"
1713
+ }
1714
+ },
1715
+ "roles": [
1716
+ "admin"
1717
+ ],
1718
+ "route": {
1719
+ "verb": "GET",
1720
+ "path": "/getDevicevedgeinventorysummary"
1721
+ },
1722
+ "task": true
1723
+ },
1724
+ {
1725
+ "name": "getDevicevmanage",
1726
+ "summary": "Retrieve vManage configuration",
1727
+ "description": "Retrieve vManage configuration",
1728
+ "input": [],
1729
+ "output": {
1730
+ "name": "result",
1731
+ "type": "object",
1732
+ "description": "A JSON Object containing status, code and the result",
1733
+ "schema": {
1734
+ "title": "result",
1735
+ "type": "object"
1736
+ }
1737
+ },
1738
+ "roles": [
1739
+ "admin"
1740
+ ],
1741
+ "route": {
1742
+ "verb": "GET",
1743
+ "path": "/getDevicevmanage"
1744
+ },
1745
+ "task": true
1746
+ },
1747
+ {
1748
+ "name": "getDeviceactionchangepartition",
1749
+ "summary": "Retrieve change partition information",
1750
+ "description": "Retrieve change partition information",
1751
+ "input": [
1752
+ {
1753
+ "name": "deviceId",
1754
+ "type": "array",
1755
+ "info": "",
1756
+ "required": false,
1757
+ "schema": {
1758
+ "title": "deviceId",
1759
+ "type": "array"
1760
+ }
1761
+ }
1762
+ ],
1763
+ "output": {
1764
+ "name": "result",
1765
+ "type": "object",
1766
+ "description": "A JSON Object containing status, code and the result",
1767
+ "schema": {
1768
+ "title": "result",
1769
+ "type": "object"
1770
+ }
1771
+ },
1772
+ "roles": [
1773
+ "admin"
1774
+ ],
1775
+ "route": {
1776
+ "verb": "POST",
1777
+ "path": "/getDeviceactionchangepartition"
1778
+ },
1779
+ "task": true
1780
+ },
1781
+ {
1782
+ "name": "postDeviceactionchangepartition",
1783
+ "summary": "Process change partition operation",
1784
+ "description": "Process change partition operation",
1785
+ "input": [
1786
+ {
1787
+ "name": "body",
1788
+ "type": "string",
1789
+ "info": "",
1790
+ "required": false,
1791
+ "schema": {
1792
+ "title": "body",
1793
+ "type": "string"
1794
+ }
1795
+ }
1796
+ ],
1797
+ "output": {
1798
+ "name": "result",
1799
+ "type": "object",
1800
+ "description": "A JSON Object containing status, code and the result",
1801
+ "schema": {
1802
+ "title": "result",
1803
+ "type": "object"
1804
+ }
1805
+ },
1806
+ "roles": [
1807
+ "admin"
1808
+ ],
1809
+ "route": {
1810
+ "verb": "POST",
1811
+ "path": "/postDeviceactionchangepartition"
1812
+ },
1813
+ "task": true
1814
+ },
1815
+ {
1816
+ "name": "postDeviceactiondefaultpartition",
1817
+ "summary": "Process marking default partition operation",
1818
+ "description": "Process marking default partition operation",
1819
+ "input": [
1820
+ {
1821
+ "name": "body",
1822
+ "type": "string",
1823
+ "info": "",
1824
+ "required": false,
1825
+ "schema": {
1826
+ "title": "body",
1827
+ "type": "string"
1828
+ }
1829
+ }
1830
+ ],
1831
+ "output": {
1832
+ "name": "result",
1833
+ "type": "object",
1834
+ "description": "A JSON Object containing status, code and the result",
1835
+ "schema": {
1836
+ "title": "result",
1837
+ "type": "object"
1838
+ }
1839
+ },
1840
+ "roles": [
1841
+ "admin"
1842
+ ],
1843
+ "route": {
1844
+ "verb": "POST",
1845
+ "path": "/postDeviceactiondefaultpartition"
1846
+ },
1847
+ "task": true
1848
+ },
1849
+ {
1850
+ "name": "getDeviceactionfiltervpn",
1851
+ "summary": "Create VPN list",
1852
+ "description": "Create VPN list",
1853
+ "input": [],
1854
+ "output": {
1855
+ "name": "result",
1856
+ "type": "object",
1857
+ "description": "A JSON Object containing status, code and the result",
1858
+ "schema": {
1859
+ "title": "result",
1860
+ "type": "object"
1861
+ }
1862
+ },
1863
+ "roles": [
1864
+ "admin"
1865
+ ],
1866
+ "route": {
1867
+ "verb": "GET",
1868
+ "path": "/getDeviceactionfiltervpn"
1869
+ },
1870
+ "task": true
1871
+ },
1872
+ {
1873
+ "name": "getDeviceactioninstall",
1874
+ "summary": "Generate install info",
1875
+ "description": "Generate install info",
1876
+ "input": [
1877
+ {
1878
+ "name": "deviceId",
1879
+ "type": "array",
1880
+ "info": "Device ID",
1881
+ "required": true,
1882
+ "schema": {
1883
+ "title": "deviceId",
1884
+ "type": "array"
1885
+ }
1886
+ }
1887
+ ],
1888
+ "output": {
1889
+ "name": "result",
1890
+ "type": "object",
1891
+ "description": "A JSON Object containing status, code and the result",
1892
+ "schema": {
1893
+ "title": "result",
1894
+ "type": "object"
1895
+ }
1896
+ },
1897
+ "roles": [
1898
+ "admin"
1899
+ ],
1900
+ "route": {
1901
+ "verb": "POST",
1902
+ "path": "/getDeviceactioninstall"
1903
+ },
1904
+ "task": true
1905
+ },
1906
+ {
1907
+ "name": "postDeviceactioninstall",
1908
+ "summary": "Process an installation operation",
1909
+ "description": "Process an installation operation",
1910
+ "input": [
1911
+ {
1912
+ "name": "body",
1913
+ "type": "string",
1914
+ "info": "",
1915
+ "required": false,
1916
+ "schema": {
1917
+ "title": "body",
1918
+ "type": "string"
1919
+ }
1920
+ }
1921
+ ],
1922
+ "output": {
1923
+ "name": "result",
1924
+ "type": "object",
1925
+ "description": "A JSON Object containing status, code and the result",
1926
+ "schema": {
1927
+ "title": "result",
1928
+ "type": "object"
1929
+ }
1930
+ },
1931
+ "roles": [
1932
+ "admin"
1933
+ ],
1934
+ "route": {
1935
+ "verb": "POST",
1936
+ "path": "/postDeviceactioninstall"
1937
+ },
1938
+ "task": true
1939
+ },
1940
+ {
1941
+ "name": "getDeviceactioninstalldevicesdeviceType",
1942
+ "summary": "Retrieve list of installed devices",
1943
+ "description": "Retrieve list of installed devices",
1944
+ "input": [
1945
+ {
1946
+ "name": "deviceType",
1947
+ "type": "string",
1948
+ "info": "",
1949
+ "required": true,
1950
+ "schema": {
1951
+ "title": "deviceType",
1952
+ "type": "string"
1953
+ }
1954
+ },
1955
+ {
1956
+ "name": "groupId",
1957
+ "type": "string",
1958
+ "info": "Group ID",
1959
+ "required": true,
1960
+ "schema": {
1961
+ "title": "groupId",
1962
+ "type": "string"
1963
+ }
1964
+ }
1965
+ ],
1966
+ "output": {
1967
+ "name": "result",
1968
+ "type": "object",
1969
+ "description": "A JSON Object containing status, code and the result",
1970
+ "schema": {
1971
+ "title": "result",
1972
+ "type": "object"
1973
+ }
1974
+ },
1975
+ "roles": [
1976
+ "admin"
1977
+ ],
1978
+ "route": {
1979
+ "verb": "POST",
1980
+ "path": "/getDeviceactioninstalldevicesdeviceType"
1981
+ },
1982
+ "task": true
1983
+ },
1984
+ {
1985
+ "name": "getDeviceactionlist",
1986
+ "summary": "Retrieve list of device actions",
1987
+ "description": "Retrieve list of device actions",
1988
+ "input": [],
1989
+ "output": {
1990
+ "name": "result",
1991
+ "type": "object",
1992
+ "description": "A JSON Object containing status, code and the result",
1993
+ "schema": {
1994
+ "title": "result",
1995
+ "type": "object"
1996
+ }
1997
+ },
1998
+ "roles": [
1999
+ "admin"
2000
+ ],
2001
+ "route": {
2002
+ "verb": "GET",
2003
+ "path": "/getDeviceactionlist"
2004
+ },
2005
+ "task": true
2006
+ },
2007
+ {
2008
+ "name": "getDeviceactionreboot",
2009
+ "summary": "Retrieve reboot information",
2010
+ "description": "Retrieve reboot information",
2011
+ "input": [
2012
+ {
2013
+ "name": "deviceId",
2014
+ "type": "array",
2015
+ "info": "Device ID",
2016
+ "required": true,
2017
+ "schema": {
2018
+ "title": "deviceId",
2019
+ "type": "array"
2020
+ }
2021
+ }
2022
+ ],
2023
+ "output": {
2024
+ "name": "result",
2025
+ "type": "object",
2026
+ "description": "A JSON Object containing status, code and the result",
2027
+ "schema": {
2028
+ "title": "result",
2029
+ "type": "object"
2030
+ }
2031
+ },
2032
+ "roles": [
2033
+ "admin"
2034
+ ],
2035
+ "route": {
2036
+ "verb": "POST",
2037
+ "path": "/getDeviceactionreboot"
2038
+ },
2039
+ "task": true
2040
+ },
2041
+ {
2042
+ "name": "postDeviceactionreboot",
2043
+ "summary": "Process a reboot operation",
2044
+ "description": "Process a reboot operation",
2045
+ "input": [
2046
+ {
2047
+ "name": "body",
2048
+ "type": "string",
2049
+ "info": "",
2050
+ "required": false,
2051
+ "schema": {
2052
+ "title": "body",
2053
+ "type": "string"
2054
+ }
2055
+ }
2056
+ ],
2057
+ "output": {
2058
+ "name": "result",
2059
+ "type": "object",
2060
+ "description": "A JSON Object containing status, code and the result",
2061
+ "schema": {
2062
+ "title": "result",
2063
+ "type": "object"
2064
+ }
2065
+ },
2066
+ "roles": [
2067
+ "admin"
2068
+ ],
2069
+ "route": {
2070
+ "verb": "POST",
2071
+ "path": "/postDeviceactionreboot"
2072
+ },
2073
+ "task": true
2074
+ },
2075
+ {
2076
+ "name": "getDeviceactionrebootdevicesdeviceType",
2077
+ "summary": "Retrieve list of rebooted devices",
2078
+ "description": "Retrieve list of rebooted devices",
2079
+ "input": [
2080
+ {
2081
+ "name": "deviceType",
2082
+ "type": "string",
2083
+ "info": "",
2084
+ "required": true,
2085
+ "schema": {
2086
+ "title": "deviceType",
2087
+ "type": "string"
2088
+ }
2089
+ },
2090
+ {
2091
+ "name": "groupId",
2092
+ "type": "string",
2093
+ "info": "Group ID",
2094
+ "required": true,
2095
+ "schema": {
2096
+ "title": "groupId",
2097
+ "type": "string"
2098
+ }
2099
+ }
2100
+ ],
2101
+ "output": {
2102
+ "name": "result",
2103
+ "type": "object",
2104
+ "description": "A JSON Object containing status, code and the result",
2105
+ "schema": {
2106
+ "title": "result",
2107
+ "type": "object"
2108
+ }
2109
+ },
2110
+ "roles": [
2111
+ "admin"
2112
+ ],
2113
+ "route": {
2114
+ "verb": "POST",
2115
+ "path": "/getDeviceactionrebootdevicesdeviceType"
2116
+ },
2117
+ "task": true
2118
+ },
2119
+ {
2120
+ "name": "getDeviceactionrediscover",
2121
+ "summary": "Retrieve rediscover operation information",
2122
+ "description": "Retrieve rediscover operation information",
2123
+ "input": [],
2124
+ "output": {
2125
+ "name": "result",
2126
+ "type": "object",
2127
+ "description": "A JSON Object containing status, code and the result",
2128
+ "schema": {
2129
+ "title": "result",
2130
+ "type": "object"
2131
+ }
2132
+ },
2133
+ "roles": [
2134
+ "admin"
2135
+ ],
2136
+ "route": {
2137
+ "verb": "GET",
2138
+ "path": "/getDeviceactionrediscover"
2139
+ },
2140
+ "task": true
2141
+ },
2142
+ {
2143
+ "name": "postDeviceactionrediscover",
2144
+ "summary": "Rediscover device",
2145
+ "description": "Rediscover device",
2146
+ "input": [
2147
+ {
2148
+ "name": "body",
2149
+ "type": "string",
2150
+ "info": "Input JSON",
2151
+ "required": true,
2152
+ "schema": {
2153
+ "title": "body",
2154
+ "type": "string"
2155
+ }
2156
+ }
2157
+ ],
2158
+ "output": {
2159
+ "name": "result",
2160
+ "type": "object",
2161
+ "description": "A JSON Object containing status, code and the result",
2162
+ "schema": {
2163
+ "title": "result",
2164
+ "type": "object"
2165
+ }
2166
+ },
2167
+ "roles": [
2168
+ "admin"
2169
+ ],
2170
+ "route": {
2171
+ "verb": "POST",
2172
+ "path": "/postDeviceactionrediscover"
2173
+ },
2174
+ "task": true
2175
+ },
2176
+ {
2177
+ "name": "postDeviceactionrediscoverall",
2178
+ "summary": "Rediscover device",
2179
+ "description": "Rediscover device",
2180
+ "input": [],
2181
+ "output": {
2182
+ "name": "result",
2183
+ "type": "object",
2184
+ "description": "A JSON Object containing status, code and the result",
2185
+ "schema": {
2186
+ "title": "result",
2187
+ "type": "object"
2188
+ }
2189
+ },
2190
+ "roles": [
2191
+ "admin"
2192
+ ],
2193
+ "route": {
2194
+ "verb": "GET",
2195
+ "path": "/postDeviceactionrediscoverall"
2196
+ },
2197
+ "task": true
2198
+ },
2199
+ {
2200
+ "name": "getDeviceactionremovepartition",
2201
+ "summary": "Retrieve remove partition information",
2202
+ "description": "Retrieve remove partition information",
2203
+ "input": [
2204
+ {
2205
+ "name": "deviceId",
2206
+ "type": "array",
2207
+ "info": "",
2208
+ "required": false,
2209
+ "schema": {
2210
+ "title": "deviceId",
2211
+ "type": "array"
2212
+ }
2213
+ }
2214
+ ],
2215
+ "output": {
2216
+ "name": "result",
2217
+ "type": "object",
2218
+ "description": "A JSON Object containing status, code and the result",
2219
+ "schema": {
2220
+ "title": "result",
2221
+ "type": "object"
2222
+ }
2223
+ },
2224
+ "roles": [
2225
+ "admin"
2226
+ ],
2227
+ "route": {
2228
+ "verb": "POST",
2229
+ "path": "/getDeviceactionremovepartition"
2230
+ },
2231
+ "task": true
2232
+ },
2233
+ {
2234
+ "name": "postDeviceactionremovepartition",
2235
+ "summary": "Process remove partition operation",
2236
+ "description": "Process remove partition operation",
2237
+ "input": [
2238
+ {
2239
+ "name": "body",
2240
+ "type": "string",
2241
+ "info": "",
2242
+ "required": false,
2243
+ "schema": {
2244
+ "title": "body",
2245
+ "type": "string"
2246
+ }
2247
+ }
2248
+ ],
2249
+ "output": {
2250
+ "name": "result",
2251
+ "type": "object",
2252
+ "description": "A JSON Object containing status, code and the result",
2253
+ "schema": {
2254
+ "title": "result",
2255
+ "type": "object"
2256
+ }
2257
+ },
2258
+ "roles": [
2259
+ "admin"
2260
+ ],
2261
+ "route": {
2262
+ "verb": "POST",
2263
+ "path": "/postDeviceactionremovepartition"
2264
+ },
2265
+ "task": true
2266
+ },
2267
+ {
2268
+ "name": "getDeviceactionstartmonitor",
2269
+ "summary": "Triggers global monitoring thread",
2270
+ "description": "Triggers global monitoring thread",
2271
+ "input": [],
2272
+ "output": {
2273
+ "name": "result",
2274
+ "type": "object",
2275
+ "description": "A JSON Object containing status, code and the result",
2276
+ "schema": {
2277
+ "title": "result",
2278
+ "type": "object"
2279
+ }
2280
+ },
2281
+ "roles": [
2282
+ "admin"
2283
+ ],
2284
+ "route": {
2285
+ "verb": "GET",
2286
+ "path": "/getDeviceactionstartmonitor"
2287
+ },
2288
+ "task": true
2289
+ },
2290
+ {
2291
+ "name": "postDeviceactionuniquevpnlist",
2292
+ "summary": "Create VPN list",
2293
+ "description": "Create VPN list",
2294
+ "input": [
2295
+ {
2296
+ "name": "body",
2297
+ "type": "string",
2298
+ "info": "",
2299
+ "required": false,
2300
+ "schema": {
2301
+ "title": "body",
2302
+ "type": "string"
2303
+ }
2304
+ }
2305
+ ],
2306
+ "output": {
2307
+ "name": "result",
2308
+ "type": "object",
2309
+ "description": "A JSON Object containing status, code and the result",
2310
+ "schema": {
2311
+ "title": "result",
2312
+ "type": "object"
2313
+ }
2314
+ },
2315
+ "roles": [
2316
+ "admin"
2317
+ ],
2318
+ "route": {
2319
+ "verb": "POST",
2320
+ "path": "/postDeviceactionuniquevpnlist"
2321
+ },
2322
+ "task": true
2323
+ },
2324
+ {
2325
+ "name": "getDeviceactionvpn",
2326
+ "summary": "Create VPN list",
2327
+ "description": "Create VPN list",
2328
+ "input": [],
2329
+ "output": {
2330
+ "name": "result",
2331
+ "type": "object",
2332
+ "description": "A JSON Object containing status, code and the result",
2333
+ "schema": {
2334
+ "title": "result",
2335
+ "type": "object"
2336
+ }
2337
+ },
2338
+ "roles": [
2339
+ "admin"
2340
+ ],
2341
+ "route": {
2342
+ "verb": "GET",
2343
+ "path": "/getDeviceactionvpn"
2344
+ },
2345
+ "task": true
2346
+ },
2347
+ {
2348
+ "name": "getDeviceactionztpupgrade",
2349
+ "summary": "Process ZTP upgrade configuration.",
2350
+ "description": "Process ZTP upgrade configuration.",
2351
+ "input": [
2352
+ {
2353
+ "name": "body",
2354
+ "type": "string",
2355
+ "info": "",
2356
+ "required": false,
2357
+ "schema": {
2358
+ "title": "body",
2359
+ "type": "string"
2360
+ }
2361
+ }
2362
+ ],
2363
+ "output": {
2364
+ "name": "result",
2365
+ "type": "object",
2366
+ "description": "A JSON Object containing status, code and the result",
2367
+ "schema": {
2368
+ "title": "result",
2369
+ "type": "object"
2370
+ }
2371
+ },
2372
+ "roles": [
2373
+ "admin"
2374
+ ],
2375
+ "route": {
2376
+ "verb": "POST",
2377
+ "path": "/getDeviceactionztpupgrade"
2378
+ },
2379
+ "task": true
2380
+ },
2381
+ {
2382
+ "name": "postDeviceactionztpupgrade",
2383
+ "summary": "Process ZTP upgrade configuration.",
2384
+ "description": "Process ZTP upgrade configuration.",
2385
+ "input": [
2386
+ {
2387
+ "name": "body",
2388
+ "type": "string",
2389
+ "info": "",
2390
+ "required": false,
2391
+ "schema": {
2392
+ "title": "body",
2393
+ "type": "string"
2394
+ }
2395
+ }
2396
+ ],
2397
+ "output": {
2398
+ "name": "result",
2399
+ "type": "object",
2400
+ "description": "A JSON Object containing status, code and the result",
2401
+ "schema": {
2402
+ "title": "result",
2403
+ "type": "object"
2404
+ }
2405
+ },
2406
+ "roles": [
2407
+ "admin"
2408
+ ],
2409
+ "route": {
2410
+ "verb": "POST",
2411
+ "path": "/postDeviceactionztpupgrade"
2412
+ },
2413
+ "task": true
2414
+ },
2415
+ {
2416
+ "name": "getDeviceactionztpupgradesetting",
2417
+ "summary": "Process ZTP upgrade configuration.",
2418
+ "description": "Process ZTP upgrade configuration.",
2419
+ "input": [
2420
+ {
2421
+ "name": "body",
2422
+ "type": "string",
2423
+ "info": "",
2424
+ "required": false,
2425
+ "schema": {
2426
+ "title": "body",
2427
+ "type": "string"
2428
+ }
2429
+ }
2430
+ ],
2431
+ "output": {
2432
+ "name": "result",
2433
+ "type": "object",
2434
+ "description": "A JSON Object containing status, code and the result",
2435
+ "schema": {
2436
+ "title": "result",
2437
+ "type": "object"
2438
+ }
2439
+ },
2440
+ "roles": [
2441
+ "admin"
2442
+ ],
2443
+ "route": {
2444
+ "verb": "POST",
2445
+ "path": "/getDeviceactionztpupgradesetting"
2446
+ },
2447
+ "task": true
2448
+ },
2449
+ {
2450
+ "name": "postDeviceactionztpupgradesetting",
2451
+ "summary": "Process ZTP upgrade configuration.",
2452
+ "description": "Process ZTP upgrade configuration.",
2453
+ "input": [
2454
+ {
2455
+ "name": "body",
92
2456
  "type": "string",
93
2457
  "info": "",
94
2458
  "required": false,
95
2459
  "schema": {
96
- "title": "query",
2460
+ "title": "body",
2461
+ "type": "string"
2462
+ }
2463
+ }
2464
+ ],
2465
+ "output": {
2466
+ "name": "result",
2467
+ "type": "object",
2468
+ "description": "A JSON Object containing status, code and the result",
2469
+ "schema": {
2470
+ "title": "result",
2471
+ "type": "object"
2472
+ }
2473
+ },
2474
+ "roles": [
2475
+ "admin"
2476
+ ],
2477
+ "route": {
2478
+ "verb": "POST",
2479
+ "path": "/postDeviceactionztpupgradesetting"
2480
+ },
2481
+ "task": true
2482
+ },
2483
+ {
2484
+ "name": "activateVsmartPolicy",
2485
+ "summary": "Activate a vSmart controller policy by policy ID",
2486
+ "description": "Activate a vSmart controller policy by policy ID",
2487
+ "input": [
2488
+ {
2489
+ "name": "policyId",
2490
+ "type": "string",
2491
+ "info": "policy id to activate",
2492
+ "required": false,
2493
+ "schema": {
2494
+ "title": "policyId",
2495
+ "type": "string"
2496
+ }
2497
+ },
2498
+ {
2499
+ "name": "body",
2500
+ "type": "object",
2501
+ "info": "body param",
2502
+ "required": false,
2503
+ "schema": {
2504
+ "title": "body",
2505
+ "type": "object"
2506
+ }
2507
+ }
2508
+ ],
2509
+ "output": {
2510
+ "name": "result",
2511
+ "type": "object",
2512
+ "description": "A JSON Object containing status, code and the result",
2513
+ "schema": {
2514
+ "title": "result",
2515
+ "type": "object"
2516
+ }
2517
+ },
2518
+ "roles": [
2519
+ "admin"
2520
+ ],
2521
+ "route": {
2522
+ "verb": "POST",
2523
+ "path": "/activateVsmartPolicy"
2524
+ },
2525
+ "task": true
2526
+ },
2527
+ {
2528
+ "name": "deactivateVsmartPolicy",
2529
+ "summary": "Deactivate a vSmart controller policy by policy ID",
2530
+ "description": "Deactivate a vSmart controller policy by policy ID",
2531
+ "input": [
2532
+ {
2533
+ "name": "policyId",
2534
+ "type": "string",
2535
+ "info": "policy id to deactivate",
2536
+ "required": false,
2537
+ "schema": {
2538
+ "title": "policyId",
2539
+ "type": "string"
2540
+ }
2541
+ }
2542
+ ],
2543
+ "output": {
2544
+ "name": "result",
2545
+ "type": "object",
2546
+ "description": "A JSON Object containing status, code and the result",
2547
+ "schema": {
2548
+ "title": "result",
2549
+ "type": "object"
2550
+ }
2551
+ },
2552
+ "roles": [
2553
+ "admin"
2554
+ ],
2555
+ "route": {
2556
+ "verb": "POST",
2557
+ "path": "/deactivateVsmartPolicy"
2558
+ },
2559
+ "task": true
2560
+ },
2561
+ {
2562
+ "name": "getDeviceVsmartStatus",
2563
+ "summary": "Display the status of device vSmart policy",
2564
+ "description": "Display the status of device vSmart policy",
2565
+ "input": [
2566
+ {
2567
+ "name": "policyId",
2568
+ "type": "string",
2569
+ "info": "vsmart policy id",
2570
+ "required": false,
2571
+ "schema": {
2572
+ "title": "policyId",
97
2573
  "type": "string"
98
2574
  }
99
2575
  }
@@ -112,23 +2588,148 @@
112
2588
  ],
113
2589
  "route": {
114
2590
  "verb": "POST",
115
- "path": "/getStatisticsinterface"
2591
+ "path": "/getDeviceVsmartStatus"
2592
+ },
2593
+ "task": true
2594
+ },
2595
+ {
2596
+ "name": "getVsmartPolicyList",
2597
+ "summary": "Display the vSmart policy list",
2598
+ "description": "Display the vSmart policy list",
2599
+ "input": [],
2600
+ "output": {
2601
+ "name": "result",
2602
+ "type": "object",
2603
+ "description": "A JSON Object containing status, code and the result",
2604
+ "schema": {
2605
+ "title": "result",
2606
+ "type": "object"
2607
+ }
2608
+ },
2609
+ "roles": [
2610
+ "admin"
2611
+ ],
2612
+ "route": {
2613
+ "verb": "POST",
2614
+ "path": "/getVsmartPolicyList"
2615
+ },
2616
+ "task": true
2617
+ },
2618
+ {
2619
+ "name": "generateDeviceTemplateInput",
2620
+ "summary": "Get raw data",
2621
+ "description": "Get with optional query",
2622
+ "input": [
2623
+ {
2624
+ "name": "body",
2625
+ "type": "object",
2626
+ "info": "",
2627
+ "required": false,
2628
+ "schema": {
2629
+ "title": "body",
2630
+ "type": "object"
2631
+ }
2632
+ }
2633
+ ],
2634
+ "output": {
2635
+ "name": "result",
2636
+ "type": "object",
2637
+ "description": "A JSON Object containing status, code and the result",
2638
+ "schema": {
2639
+ "title": "result",
2640
+ "type": "object"
2641
+ }
2642
+ },
2643
+ "roles": [
2644
+ "admin"
2645
+ ],
2646
+ "route": {
2647
+ "verb": "POST",
2648
+ "path": "/generateDeviceTemplateInput"
2649
+ },
2650
+ "task": true
2651
+ },
2652
+ {
2653
+ "name": "previewDeviceTemplateConfiguration",
2654
+ "summary": "Get raw data",
2655
+ "description": "Get with optional query",
2656
+ "input": [
2657
+ {
2658
+ "name": "body",
2659
+ "type": "object",
2660
+ "info": "",
2661
+ "required": false,
2662
+ "schema": {
2663
+ "title": "body",
2664
+ "type": "object"
2665
+ }
2666
+ }
2667
+ ],
2668
+ "output": {
2669
+ "name": "result",
2670
+ "type": "object",
2671
+ "description": "A JSON Object containing status, code and the result",
2672
+ "schema": {
2673
+ "title": "result",
2674
+ "type": "object"
2675
+ }
2676
+ },
2677
+ "roles": [
2678
+ "admin"
2679
+ ],
2680
+ "route": {
2681
+ "verb": "POST",
2682
+ "path": "/previewDeviceTemplateConfiguration"
2683
+ },
2684
+ "task": true
2685
+ },
2686
+ {
2687
+ "name": "attachDeviceTemplateCli",
2688
+ "summary": "Get raw data",
2689
+ "description": "Get with optional query",
2690
+ "input": [
2691
+ {
2692
+ "name": "body",
2693
+ "type": "object",
2694
+ "info": "",
2695
+ "required": false,
2696
+ "schema": {
2697
+ "title": "body",
2698
+ "type": "object"
2699
+ }
2700
+ }
2701
+ ],
2702
+ "output": {
2703
+ "name": "result",
2704
+ "type": "object",
2705
+ "description": "A JSON Object containing status, code and the result",
2706
+ "schema": {
2707
+ "title": "result",
2708
+ "type": "object"
2709
+ }
2710
+ },
2711
+ "roles": [
2712
+ "admin"
2713
+ ],
2714
+ "route": {
2715
+ "verb": "POST",
2716
+ "path": "/attachDeviceTemplateCli"
116
2717
  },
117
2718
  "task": true
118
2719
  },
119
2720
  {
120
- "name": "postStatisticsinterface",
121
- "summary": "Get raw data",
2721
+ "name": "attachDeviceTemplateFeature",
2722
+ "summary": "Get raw data",
122
2723
  "description": "Get with optional query",
123
2724
  "input": [
124
2725
  {
125
2726
  "name": "body",
126
- "type": "string",
2727
+ "type": "object",
127
2728
  "info": "",
128
2729
  "required": false,
129
2730
  "schema": {
130
2731
  "title": "body",
131
- "type": "string"
2732
+ "type": "object"
132
2733
  }
133
2734
  }
134
2735
  ],
@@ -146,23 +2747,23 @@
146
2747
  ],
147
2748
  "route": {
148
2749
  "verb": "POST",
149
- "path": "/postStatisticsinterface"
2750
+ "path": "/attachDeviceTemplateFeature"
150
2751
  },
151
2752
  "task": true
152
2753
  },
153
2754
  {
154
- "name": "getStatisticsinterfaceaggregation",
155
- "summary": "Get raw data",
2755
+ "name": "detachDeviceTemplateCli",
2756
+ "summary": "Get raw data",
156
2757
  "description": "Get with optional query",
157
2758
  "input": [
158
2759
  {
159
- "name": "query",
160
- "type": "string",
2760
+ "name": "body",
2761
+ "type": "object",
161
2762
  "info": "",
162
2763
  "required": false,
163
2764
  "schema": {
164
- "title": "query",
165
- "type": "string"
2765
+ "title": "body",
2766
+ "type": "object"
166
2767
  }
167
2768
  }
168
2769
  ],
@@ -180,22 +2781,22 @@
180
2781
  ],
181
2782
  "route": {
182
2783
  "verb": "POST",
183
- "path": "/getStatisticsinterfaceaggregation"
2784
+ "path": "/detachDeviceTemplateCli"
184
2785
  },
185
2786
  "task": true
186
2787
  },
187
2788
  {
188
- "name": "postStatisticsinterfaceaggregation",
189
- "summary": "Get raw data",
190
- "description": "Get with optional query",
2789
+ "name": "getDeviceList",
2790
+ "summary": "getDeviceList",
2791
+ "description": "Get device list",
191
2792
  "input": [
192
2793
  {
193
- "name": "body",
2794
+ "name": "masterTemplateId",
194
2795
  "type": "string",
195
- "info": "",
196
- "required": false,
2796
+ "info": ": string",
2797
+ "required": true,
197
2798
  "schema": {
198
- "title": "body",
2799
+ "title": "masterTemplateId",
199
2800
  "type": "string"
200
2801
  }
201
2802
  }
@@ -214,23 +2815,22 @@
214
2815
  ],
215
2816
  "route": {
216
2817
  "verb": "POST",
217
- "path": "/postStatisticsinterfaceaggregation"
2818
+ "path": "/getDeviceList"
218
2819
  },
219
2820
  "task": true
220
2821
  },
221
2822
  {
222
- "name": "getStatisticsinterfacecsv",
223
- "summary": "Get raw data as CSV",
224
- "description": "Get raw data with optional query as CSV",
2823
+ "name": "pushMixTemplate",
2824
+ "summary": "pushMixTemplate",
2825
+ "description": "Attach device template",
225
2826
  "input": [
226
2827
  {
227
- "name": "query",
228
- "type": "string",
229
- "info": "",
2828
+ "name": "body",
2829
+ "type": "object",
2830
+ "info": ": object",
230
2831
  "required": false,
231
2832
  "schema": {
232
- "title": "query",
233
- "type": "string"
2833
+ "type": "object"
234
2834
  }
235
2835
  }
236
2836
  ],
@@ -248,22 +2848,22 @@
248
2848
  ],
249
2849
  "route": {
250
2850
  "verb": "POST",
251
- "path": "/getStatisticsinterfacecsv"
2851
+ "path": "/pushMixTemplate"
252
2852
  },
253
2853
  "task": true
254
2854
  },
255
2855
  {
256
- "name": "getStatisticsinterfacedoccount",
257
- "summary": "Get response count of a query",
258
- "description": "Get response count of a query",
2856
+ "name": "getAttachedConfigToDevice",
2857
+ "summary": "getAttachedConfigToDevice",
2858
+ "description": "Get attached device list",
259
2859
  "input": [
260
2860
  {
261
- "name": "query",
2861
+ "name": "deviceId",
262
2862
  "type": "string",
263
- "info": "",
2863
+ "info": ": string",
264
2864
  "required": false,
265
2865
  "schema": {
266
- "title": "query",
2866
+ "title": "deviceId",
267
2867
  "type": "string"
268
2868
  }
269
2869
  }
@@ -282,23 +2882,22 @@
282
2882
  ],
283
2883
  "route": {
284
2884
  "verb": "POST",
285
- "path": "/getStatisticsinterfacedoccount"
2885
+ "path": "/getAttachedConfigToDevice"
286
2886
  },
287
2887
  "task": true
288
2888
  },
289
2889
  {
290
- "name": "postStatisticsinterfacedoccount",
291
- "summary": "Get response count of a query",
292
- "description": "Get response count of a query",
2890
+ "name": "pushMasterTemplate",
2891
+ "summary": "pushMasterTemplate",
2892
+ "description": "Attach device template",
293
2893
  "input": [
294
2894
  {
295
2895
  "name": "body",
296
- "type": "string",
297
- "info": "",
2896
+ "type": "object",
2897
+ "info": ": object",
298
2898
  "required": false,
299
2899
  "schema": {
300
- "title": "body",
301
- "type": "string"
2900
+ "type": "object"
302
2901
  }
303
2902
  }
304
2903
  ],
@@ -316,15 +2915,26 @@
316
2915
  ],
317
2916
  "route": {
318
2917
  "verb": "POST",
319
- "path": "/postStatisticsinterfacedoccount"
2918
+ "path": "/pushMasterTemplate"
320
2919
  },
321
2920
  "task": true
322
2921
  },
323
2922
  {
324
- "name": "getStatisticsinterfacefields",
325
- "summary": "Get fields and type",
326
- "description": "Get fields and type",
327
- "input": [],
2923
+ "name": "getAttachedDeviceList",
2924
+ "summary": "getAttachedDeviceList",
2925
+ "description": "Get attached device list",
2926
+ "input": [
2927
+ {
2928
+ "name": "masterTemplateId",
2929
+ "type": "string",
2930
+ "info": ": string",
2931
+ "required": true,
2932
+ "schema": {
2933
+ "title": "masterTemplateId",
2934
+ "type": "string"
2935
+ }
2936
+ }
2937
+ ],
328
2938
  "output": {
329
2939
  "name": "result",
330
2940
  "type": "object",
@@ -338,44 +2948,23 @@
338
2948
  "admin"
339
2949
  ],
340
2950
  "route": {
341
- "verb": "GET",
342
- "path": "/getStatisticsinterfacefields"
2951
+ "verb": "POST",
2952
+ "path": "/getAttachedDeviceList"
343
2953
  },
344
2954
  "task": true
345
2955
  },
346
2956
  {
347
- "name": "getStatisticsinterfacepage",
348
- "summary": "Get raw data",
349
- "description": "Get with optional query",
2957
+ "name": "createInputWithoutDevice",
2958
+ "summary": "createInputWithoutDevice",
2959
+ "description": "Create device input",
350
2960
  "input": [
351
2961
  {
352
- "name": "query",
353
- "type": "string",
354
- "info": "",
355
- "required": false,
356
- "schema": {
357
- "title": "query",
358
- "type": "string"
359
- }
360
- },
361
- {
362
- "name": "scrollId",
363
- "type": "string",
364
- "info": "",
365
- "required": false,
366
- "schema": {
367
- "title": "scrollId",
368
- "type": "string"
369
- }
370
- },
371
- {
372
- "name": "count",
373
- "type": "number",
374
- "info": "",
2962
+ "name": "body",
2963
+ "type": "object",
2964
+ "info": ": object",
375
2965
  "required": false,
376
2966
  "schema": {
377
- "title": "count",
378
- "type": "number"
2967
+ "type": "object"
379
2968
  }
380
2969
  }
381
2970
  ],
@@ -393,43 +2982,22 @@
393
2982
  ],
394
2983
  "route": {
395
2984
  "verb": "POST",
396
- "path": "/getStatisticsinterfacepage"
2985
+ "path": "/createInputWithoutDevice"
397
2986
  },
398
2987
  "task": true
399
2988
  },
400
2989
  {
401
- "name": "postStatisticsinterfacepage",
402
- "summary": "Get raw data",
403
- "description": "Get with optional query",
2990
+ "name": "getDeviceConfigurationPreview",
2991
+ "summary": "getDeviceConfigurationPreview",
2992
+ "description": "Get device configuration",
404
2993
  "input": [
405
2994
  {
406
2995
  "name": "body",
407
- "type": "string",
408
- "info": "",
409
- "required": false,
410
- "schema": {
411
- "title": "body",
412
- "type": "string"
413
- }
414
- },
415
- {
416
- "name": "scrollId",
417
- "type": "string",
418
- "info": "",
419
- "required": false,
420
- "schema": {
421
- "title": "scrollId",
422
- "type": "string"
423
- }
424
- },
425
- {
426
- "name": "count",
427
- "type": "number",
428
- "info": "",
2996
+ "type": "object",
2997
+ "info": ": object",
429
2998
  "required": false,
430
2999
  "schema": {
431
- "title": "count",
432
- "type": "number"
3000
+ "type": "object"
433
3001
  }
434
3002
  }
435
3003
  ],
@@ -447,14 +3015,14 @@
447
3015
  ],
448
3016
  "route": {
449
3017
  "verb": "POST",
450
- "path": "/postStatisticsinterfacepage"
3018
+ "path": "/getDeviceConfigurationPreview"
451
3019
  },
452
3020
  "task": true
453
3021
  },
454
3022
  {
455
- "name": "getStatisticsinterfacequeryfields",
456
- "summary": "Get query fields",
457
- "description": "Get query field",
3023
+ "name": "processInputCommaSepFile",
3024
+ "summary": "processInputCommaSepFile",
3025
+ "description": "Process input comma seperate file",
458
3026
  "input": [],
459
3027
  "output": {
460
3028
  "name": "result",
@@ -470,43 +3038,88 @@
470
3038
  ],
471
3039
  "route": {
472
3040
  "verb": "GET",
473
- "path": "/getStatisticsinterfacequeryfields"
3041
+ "path": "/processInputCommaSepFile"
474
3042
  },
475
3043
  "task": true
476
3044
  },
477
3045
  {
478
- "name": "getDatadevicestatestateDataType",
479
- "summary": "Retrieve device state data",
480
- "description": "Retrieve device state data",
3046
+ "name": "validateTemplate",
3047
+ "summary": "validateTemplate",
3048
+ "description": "Validate template",
481
3049
  "input": [
482
3050
  {
483
- "name": "stateDataType",
484
- "type": "string",
485
- "info": "",
486
- "required": true,
3051
+ "name": "body",
3052
+ "type": "object",
3053
+ "info": ": object",
3054
+ "required": false,
487
3055
  "schema": {
488
- "title": "stateDataType",
489
- "type": "string"
3056
+ "type": "object"
490
3057
  }
491
- },
3058
+ }
3059
+ ],
3060
+ "output": {
3061
+ "name": "result",
3062
+ "type": "object",
3063
+ "description": "A JSON Object containing status, code and the result",
3064
+ "schema": {
3065
+ "title": "result",
3066
+ "type": "object"
3067
+ }
3068
+ },
3069
+ "roles": [
3070
+ "admin"
3071
+ ],
3072
+ "route": {
3073
+ "verb": "POST",
3074
+ "path": "/validateTemplate"
3075
+ },
3076
+ "task": true
3077
+ },
3078
+ {
3079
+ "name": "pushCloudxConfig",
3080
+ "summary": "pushCloudxConfig",
3081
+ "description": "Enable Gateways, clients, dias",
3082
+ "input": [
492
3083
  {
493
- "name": "startId",
494
- "type": "string",
495
- "info": "",
3084
+ "name": "body",
3085
+ "type": "object",
3086
+ "info": ": object",
496
3087
  "required": false,
497
3088
  "schema": {
498
- "title": "startId",
499
- "type": "string"
3089
+ "type": "object"
500
3090
  }
501
- },
3091
+ }
3092
+ ],
3093
+ "output": {
3094
+ "name": "result",
3095
+ "type": "object",
3096
+ "description": "A JSON Object containing status, code and the result",
3097
+ "schema": {
3098
+ "title": "result",
3099
+ "type": "object"
3100
+ }
3101
+ },
3102
+ "roles": [
3103
+ "admin"
3104
+ ],
3105
+ "route": {
3106
+ "verb": "POST",
3107
+ "path": "/pushCloudxConfig"
3108
+ },
3109
+ "task": true
3110
+ },
3111
+ {
3112
+ "name": "editCloudxConfig",
3113
+ "summary": "editCloudxConfig",
3114
+ "description": "Edit already enabled Gateways, clients, dias",
3115
+ "input": [
502
3116
  {
503
- "name": "count",
504
- "type": "number",
505
- "info": "",
3117
+ "name": "body",
3118
+ "type": "object",
3119
+ "info": ": object",
506
3120
  "required": false,
507
3121
  "schema": {
508
- "title": "count",
509
- "type": "number"
3122
+ "type": "object"
510
3123
  }
511
3124
  }
512
3125
  ],
@@ -524,23 +3137,55 @@
524
3137
  ],
525
3138
  "route": {
526
3139
  "verb": "POST",
527
- "path": "/getDatadevicestatestateDataType"
3140
+ "path": "/editCloudxConfig"
528
3141
  },
529
3142
  "task": true
530
3143
  },
531
3144
  {
532
- "name": "getDatadevicestatestateDataTypefields",
533
- "summary": "Retrieve device state data fileds",
534
- "description": "Retrieve device state data fields",
3145
+ "name": "detachSites",
3146
+ "summary": "detachSites",
3147
+ "description": "Disable Gateways, clients, dias",
535
3148
  "input": [
536
3149
  {
537
- "name": "stateDataType",
538
- "type": "string",
539
- "info": "",
540
- "required": true,
3150
+ "name": "body",
3151
+ "type": "object",
3152
+ "info": ": object",
3153
+ "required": false,
541
3154
  "schema": {
542
- "title": "stateDataType",
543
- "type": "string"
3155
+ "type": "object"
3156
+ }
3157
+ }
3158
+ ],
3159
+ "output": {
3160
+ "name": "result",
3161
+ "type": "object",
3162
+ "description": "A JSON Object containing status, code and the result",
3163
+ "schema": {
3164
+ "title": "result",
3165
+ "type": "object"
3166
+ }
3167
+ },
3168
+ "roles": [
3169
+ "admin"
3170
+ ],
3171
+ "route": {
3172
+ "verb": "POST",
3173
+ "path": "/detachSites"
3174
+ },
3175
+ "task": true
3176
+ },
3177
+ {
3178
+ "name": "getDevicesWithDuplicateIP",
3179
+ "summary": "getDevicesWithDuplicateIP",
3180
+ "description": "Get devices having the system ips",
3181
+ "input": [
3182
+ {
3183
+ "name": "body",
3184
+ "type": "object",
3185
+ "info": ": object",
3186
+ "required": false,
3187
+ "schema": {
3188
+ "type": "object"
544
3189
  }
545
3190
  }
546
3191
  ],
@@ -558,23 +3203,22 @@
558
3203
  ],
559
3204
  "route": {
560
3205
  "verb": "POST",
561
- "path": "/getDatadevicestatestateDataTypefields"
3206
+ "path": "/getDevicesWithDuplicateIP"
562
3207
  },
563
3208
  "task": true
564
3209
  },
565
3210
  {
566
- "name": "getDatadevicestatestateDataTypequery",
567
- "summary": "Retrieve device state data fileds",
568
- "description": "Retrieve device state data fields",
3211
+ "name": "pushCLITemplate",
3212
+ "summary": "pushCLITemplate",
3213
+ "description": "Create device template",
569
3214
  "input": [
570
3215
  {
571
- "name": "stateDataType",
572
- "type": "string",
573
- "info": "",
574
- "required": true,
3216
+ "name": "body",
3217
+ "type": "object",
3218
+ "info": ": object",
3219
+ "required": false,
575
3220
  "schema": {
576
- "title": "stateDataType",
577
- "type": "string"
3221
+ "type": "object"
578
3222
  }
579
3223
  }
580
3224
  ],
@@ -592,15 +3236,25 @@
592
3236
  ],
593
3237
  "route": {
594
3238
  "verb": "POST",
595
- "path": "/getDatadevicestatestateDataTypequery"
3239
+ "path": "/pushCLITemplate"
596
3240
  },
597
3241
  "task": true
598
3242
  },
599
3243
  {
600
- "name": "getDevice",
601
- "summary": "Retrieve list of all devices",
602
- "description": "Retrieve list of all devices",
603
- "input": [],
3244
+ "name": "detachDeviceTemplate",
3245
+ "summary": "detachDeviceTemplate",
3246
+ "description": "Detach device template",
3247
+ "input": [
3248
+ {
3249
+ "name": "body",
3250
+ "type": "object",
3251
+ "info": ": object",
3252
+ "required": false,
3253
+ "schema": {
3254
+ "type": "object"
3255
+ }
3256
+ }
3257
+ ],
604
3258
  "output": {
605
3259
  "name": "result",
606
3260
  "type": "object",
@@ -614,24 +3268,23 @@
614
3268
  "admin"
615
3269
  ],
616
3270
  "route": {
617
- "verb": "GET",
618
- "path": "/getDevice"
3271
+ "verb": "POST",
3272
+ "path": "/detachDeviceTemplate"
619
3273
  },
620
3274
  "task": true
621
3275
  },
622
3276
  {
623
- "name": "getDeviceconfig",
624
- "summary": "Retrieve device running configuration",
625
- "description": "Retrieve device running configuration",
3277
+ "name": "createDeviceInput",
3278
+ "summary": "createDeviceInput",
3279
+ "description": "Create device input",
626
3280
  "input": [
627
3281
  {
628
- "name": "deviceId",
629
- "type": "array",
630
- "info": "Device ID",
631
- "required": true,
3282
+ "name": "body",
3283
+ "type": "object",
3284
+ "info": ": object",
3285
+ "required": false,
632
3286
  "schema": {
633
- "title": "deviceId",
634
- "type": "array"
3287
+ "type": "object"
635
3288
  }
636
3289
  }
637
3290
  ],
@@ -649,26 +3302,15 @@
649
3302
  ],
650
3303
  "route": {
651
3304
  "verb": "POST",
652
- "path": "/getDeviceconfig"
3305
+ "path": "/createDeviceInput"
653
3306
  },
654
3307
  "task": true
655
3308
  },
656
3309
  {
657
- "name": "getDeviceconfightml",
658
- "summary": "Retrieve device running configuration in HTML",
659
- "description": "Retrieve device running configuration in HTML",
660
- "input": [
661
- {
662
- "name": "deviceId",
663
- "type": "array",
664
- "info": "Device ID",
665
- "required": true,
666
- "schema": {
667
- "title": "deviceId",
668
- "type": "array"
669
- }
670
- }
671
- ],
3310
+ "name": "checkVbond",
3311
+ "summary": "checkVbond",
3312
+ "description": "Check vBond",
3313
+ "input": [],
672
3314
  "output": {
673
3315
  "name": "result",
674
3316
  "type": "object",
@@ -682,16 +3324,27 @@
682
3324
  "admin"
683
3325
  ],
684
3326
  "route": {
685
- "verb": "POST",
686
- "path": "/getDeviceconfightml"
3327
+ "verb": "GET",
3328
+ "path": "/checkVbond"
687
3329
  },
688
3330
  "task": true
689
3331
  },
690
3332
  {
691
- "name": "getDevicecounters",
692
- "summary": "Retrieve device counters",
693
- "description": "Retrieve device counters",
694
- "input": [],
3333
+ "name": "generateTemplateList",
3334
+ "summary": "generateTemplateList",
3335
+ "description": "Generate template list",
3336
+ "input": [
3337
+ {
3338
+ "name": "summary",
3339
+ "type": "boolean",
3340
+ "info": ": boolean",
3341
+ "required": false,
3342
+ "schema": {
3343
+ "title": "summary",
3344
+ "type": "boolean"
3345
+ }
3346
+ }
3347
+ ],
695
3348
  "output": {
696
3349
  "name": "result",
697
3350
  "type": "object",
@@ -705,16 +3358,26 @@
705
3358
  "admin"
706
3359
  ],
707
3360
  "route": {
708
- "verb": "GET",
709
- "path": "/getDevicecounters"
3361
+ "verb": "POST",
3362
+ "path": "/generateTemplateList"
710
3363
  },
711
3364
  "task": true
712
3365
  },
713
3366
  {
714
- "name": "getDevicedevicestatus",
715
- "summary": "Retrieve device status",
716
- "description": "Retrieve device status",
717
- "input": [],
3367
+ "name": "createTemplate",
3368
+ "summary": "createTemplate",
3369
+ "description": "Create feature template",
3370
+ "input": [
3371
+ {
3372
+ "name": "body",
3373
+ "type": "string",
3374
+ "info": ": string",
3375
+ "required": false,
3376
+ "schema": {
3377
+ "type": "string"
3378
+ }
3379
+ }
3380
+ ],
718
3381
  "output": {
719
3382
  "name": "result",
720
3383
  "type": "object",
@@ -728,16 +3391,27 @@
728
3391
  "admin"
729
3392
  ],
730
3393
  "route": {
731
- "verb": "GET",
732
- "path": "/getDevicedevicestatus"
3394
+ "verb": "POST",
3395
+ "path": "/createTemplate"
733
3396
  },
734
3397
  "task": true
735
3398
  },
736
3399
  {
737
- "name": "getDevicehardwarehealthdetail",
738
- "summary": "Retrieve detailed hardware health",
739
- "description": "Retrieve detailed hardware health",
740
- "input": [],
3400
+ "name": "getTemplate",
3401
+ "summary": "getTemplate",
3402
+ "description": "Get template",
3403
+ "input": [
3404
+ {
3405
+ "name": "templateId",
3406
+ "type": "string",
3407
+ "info": ": string",
3408
+ "required": true,
3409
+ "schema": {
3410
+ "title": "templateId",
3411
+ "type": "string"
3412
+ }
3413
+ }
3414
+ ],
741
3415
  "output": {
742
3416
  "name": "result",
743
3417
  "type": "object",
@@ -751,24 +3425,33 @@
751
3425
  "admin"
752
3426
  ],
753
3427
  "route": {
754
- "verb": "GET",
755
- "path": "/getDevicehardwarehealthdetail"
3428
+ "verb": "POST",
3429
+ "path": "/getTemplate"
756
3430
  },
757
3431
  "task": true
758
3432
  },
759
3433
  {
760
- "name": "getDevicehardwarehealthsummary",
761
- "summary": "Retrieve hardware health summary",
762
- "description": "Retrieve hardware health summary",
3434
+ "name": "editTemplate",
3435
+ "summary": "editTemplate",
3436
+ "description": "Edit template",
763
3437
  "input": [
764
3438
  {
765
- "name": "isCached",
766
- "type": "boolean",
767
- "info": "",
3439
+ "name": "templateId",
3440
+ "type": "string",
3441
+ "info": ": string",
3442
+ "required": true,
3443
+ "schema": {
3444
+ "title": "templateId",
3445
+ "type": "string"
3446
+ }
3447
+ },
3448
+ {
3449
+ "name": "body",
3450
+ "type": "string",
3451
+ "info": ": string",
768
3452
  "required": false,
769
3453
  "schema": {
770
- "title": "isCached",
771
- "type": "boolean"
3454
+ "type": "string"
772
3455
  }
773
3456
  }
774
3457
  ],
@@ -786,15 +3469,26 @@
786
3469
  ],
787
3470
  "route": {
788
3471
  "verb": "POST",
789
- "path": "/getDevicehardwarehealthsummary"
3472
+ "path": "/editTemplate"
790
3473
  },
791
3474
  "task": true
792
3475
  },
793
3476
  {
794
- "name": "getDevicekeyvalue",
795
- "summary": "Retrieve device list as key/value pairs",
796
- "description": "Retrieve device list as key/value pairs",
797
- "input": [],
3477
+ "name": "deleteTemplate",
3478
+ "summary": "deleteTemplate",
3479
+ "description": "Delete template",
3480
+ "input": [
3481
+ {
3482
+ "name": "templateId",
3483
+ "type": "string",
3484
+ "info": ": string",
3485
+ "required": true,
3486
+ "schema": {
3487
+ "title": "templateId",
3488
+ "type": "string"
3489
+ }
3490
+ }
3491
+ ],
798
3492
  "output": {
799
3493
  "name": "result",
800
3494
  "type": "object",
@@ -808,23 +3502,32 @@
808
3502
  "admin"
809
3503
  ],
810
3504
  "route": {
811
- "verb": "GET",
812
- "path": "/getDevicekeyvalue"
3505
+ "verb": "POST",
3506
+ "path": "/deleteTemplate"
813
3507
  },
814
3508
  "task": true
815
3509
  },
816
3510
  {
817
- "name": "getDevicemodels",
818
- "summary": "Retrieve all device models",
819
- "description": "Retrieve all device models",
3511
+ "name": "editLITemplate",
3512
+ "summary": "editLITemplate",
3513
+ "description": "Update feature template",
820
3514
  "input": [
821
3515
  {
822
- "name": "list",
3516
+ "name": "templateId",
823
3517
  "type": "string",
824
- "info": "",
3518
+ "info": ": string",
3519
+ "required": true,
3520
+ "schema": {
3521
+ "title": "templateId",
3522
+ "type": "string"
3523
+ }
3524
+ },
3525
+ {
3526
+ "name": "body",
3527
+ "type": "string",
3528
+ "info": ": string",
825
3529
  "required": false,
826
3530
  "schema": {
827
- "title": "list",
828
3531
  "type": "string"
829
3532
  }
830
3533
  }
@@ -843,22 +3546,21 @@
843
3546
  ],
844
3547
  "route": {
845
3548
  "verb": "POST",
846
- "path": "/getDevicemodels"
3549
+ "path": "/editLITemplate"
847
3550
  },
848
3551
  "task": true
849
3552
  },
850
3553
  {
851
- "name": "getDevicemodelsuuid",
852
- "summary": "Retrieve the device model for the device",
853
- "description": "Retrieve the device model for the device",
3554
+ "name": "createLITemplate",
3555
+ "summary": "createLITemplate",
3556
+ "description": "Create feature template",
854
3557
  "input": [
855
3558
  {
856
- "name": "uuid",
3559
+ "name": "body",
857
3560
  "type": "string",
858
- "info": "",
859
- "required": true,
3561
+ "info": ": string",
3562
+ "required": false,
860
3563
  "schema": {
861
- "title": "uuid",
862
3564
  "type": "string"
863
3565
  }
864
3566
  }
@@ -877,14 +3579,14 @@
877
3579
  ],
878
3580
  "route": {
879
3581
  "verb": "POST",
880
- "path": "/getDevicemodelsuuid"
3582
+ "path": "/createLITemplate"
881
3583
  },
882
3584
  "task": true
883
3585
  },
884
3586
  {
885
- "name": "getDevicemonitor",
886
- "summary": "Retrieve all device monitoring details",
887
- "description": "Retrieve all device monitoring details",
3587
+ "name": "listLITemplate",
3588
+ "summary": "listLITemplate",
3589
+ "description": "Get LI feature template",
888
3590
  "input": [],
889
3591
  "output": {
890
3592
  "name": "result",
@@ -900,15 +3602,26 @@
900
3602
  ],
901
3603
  "route": {
902
3604
  "verb": "GET",
903
- "path": "/getDevicemonitor"
3605
+ "path": "/listLITemplate"
904
3606
  },
905
3607
  "task": true
906
3608
  },
907
3609
  {
908
- "name": "getDevicequeues",
909
- "summary": "Retrieve synchronized queue information",
910
- "description": "Retrieve synchronized queue information",
911
- "input": [],
3610
+ "name": "generateTemplateByDeviceType",
3611
+ "summary": "generateTemplateByDeviceType",
3612
+ "description": "Generate template based on device",
3613
+ "input": [
3614
+ {
3615
+ "name": "deviceType",
3616
+ "type": "string",
3617
+ "info": ": string",
3618
+ "required": true,
3619
+ "schema": {
3620
+ "title": "deviceType",
3621
+ "type": "string"
3622
+ }
3623
+ }
3624
+ ],
912
3625
  "output": {
913
3626
  "name": "result",
914
3627
  "type": "object",
@@ -922,16 +3635,27 @@
922
3635
  "admin"
923
3636
  ],
924
3637
  "route": {
925
- "verb": "GET",
926
- "path": "/getDevicequeues"
3638
+ "verb": "POST",
3639
+ "path": "/generateTemplateByDeviceType"
927
3640
  },
928
3641
  "task": true
929
3642
  },
930
3643
  {
931
- "name": "getDevicereachable",
932
- "summary": "Retrieve list of reachable devices",
933
- "description": "Retrieve list of reachable devices",
934
- "input": [],
3644
+ "name": "getTemplateDefinition",
3645
+ "summary": "getTemplateDefinition",
3646
+ "description": "Get template",
3647
+ "input": [
3648
+ {
3649
+ "name": "templateId",
3650
+ "type": "string",
3651
+ "info": ": string",
3652
+ "required": true,
3653
+ "schema": {
3654
+ "title": "templateId",
3655
+ "type": "string"
3656
+ }
3657
+ }
3658
+ ],
935
3659
  "output": {
936
3660
  "name": "result",
937
3661
  "type": "object",
@@ -945,15 +3669,15 @@
945
3669
  "admin"
946
3670
  ],
947
3671
  "route": {
948
- "verb": "GET",
949
- "path": "/getDevicereachable"
3672
+ "verb": "POST",
3673
+ "path": "/getTemplateDefinition"
950
3674
  },
951
3675
  "task": true
952
3676
  },
953
3677
  {
954
- "name": "getDevicestats",
955
- "summary": "Retrieve synchronized queue information",
956
- "description": "Retrieve synchronized queue information",
3678
+ "name": "generateTemplateTypes",
3679
+ "summary": "generateTemplateTypes",
3680
+ "description": "Generate template types",
957
3681
  "input": [],
958
3682
  "output": {
959
3683
  "name": "result",
@@ -969,15 +3693,36 @@
969
3693
  ],
970
3694
  "route": {
971
3695
  "verb": "GET",
972
- "path": "/getDevicestats"
3696
+ "path": "/generateTemplateTypes"
973
3697
  },
974
3698
  "task": true
975
3699
  },
976
3700
  {
977
- "name": "getDevicestatus",
978
- "summary": "Retrieve device status",
979
- "description": "Retrieve device status",
980
- "input": [],
3701
+ "name": "generateTemplateTypeDefinition",
3702
+ "summary": "generateTemplateTypeDefinition",
3703
+ "description": "Generate template type definition",
3704
+ "input": [
3705
+ {
3706
+ "name": "typeName",
3707
+ "type": "string",
3708
+ "info": ": string",
3709
+ "required": true,
3710
+ "schema": {
3711
+ "title": "typeName",
3712
+ "type": "string"
3713
+ }
3714
+ },
3715
+ {
3716
+ "name": "version",
3717
+ "type": "string",
3718
+ "info": ": string",
3719
+ "required": true,
3720
+ "schema": {
3721
+ "title": "version",
3722
+ "type": "string"
3723
+ }
3724
+ }
3725
+ ],
981
3726
  "output": {
982
3727
  "name": "result",
983
3728
  "type": "object",
@@ -991,23 +3736,23 @@
991
3736
  "admin"
992
3737
  ],
993
3738
  "route": {
994
- "verb": "GET",
995
- "path": "/getDevicestatus"
3739
+ "verb": "POST",
3740
+ "path": "/generateTemplateTypeDefinition"
996
3741
  },
997
3742
  "task": true
998
3743
  },
999
3744
  {
1000
- "name": "getDevicesyncStatus",
1001
- "summary": "Retrieve list of currently syncing devices",
1002
- "description": "Retrieve list of currently syncing devices",
3745
+ "name": "generateMasterTemplateDefinition",
3746
+ "summary": "generateMasterTemplateDefinition",
3747
+ "description": "Generate template type definition",
1003
3748
  "input": [
1004
3749
  {
1005
- "name": "groupId",
3750
+ "name": "typeName",
1006
3751
  "type": "string",
1007
- "info": "Group ID",
1008
- "required": false,
3752
+ "info": ": string",
3753
+ "required": true,
1009
3754
  "schema": {
1010
- "title": "groupId",
3755
+ "title": "typeName",
1011
3756
  "type": "string"
1012
3757
  }
1013
3758
  }
@@ -1026,15 +3771,26 @@
1026
3771
  ],
1027
3772
  "route": {
1028
3773
  "verb": "POST",
1029
- "path": "/getDevicesyncStatus"
3774
+ "path": "/generateMasterTemplateDefinition"
1030
3775
  },
1031
3776
  "task": true
1032
3777
  },
1033
3778
  {
1034
- "name": "postDevicesyncallmemorydb",
1035
- "summary": "Synchronize memory database for all devices",
1036
- "description": "Synchronize memory database for all devices",
1037
- "input": [],
3779
+ "name": "getDeviceTemplatesAttachedToFeature",
3780
+ "summary": "getDeviceTemplatesAttachedToFeature",
3781
+ "description": "Get all device templates for this feature template",
3782
+ "input": [
3783
+ {
3784
+ "name": "templateId",
3785
+ "type": "string",
3786
+ "info": ": string",
3787
+ "required": true,
3788
+ "schema": {
3789
+ "title": "templateId",
3790
+ "type": "string"
3791
+ }
3792
+ }
3793
+ ],
1038
3794
  "output": {
1039
3795
  "name": "result",
1040
3796
  "type": "object",
@@ -1048,16 +3804,27 @@
1048
3804
  "admin"
1049
3805
  ],
1050
3806
  "route": {
1051
- "verb": "GET",
1052
- "path": "/postDevicesyncallmemorydb"
3807
+ "verb": "POST",
3808
+ "path": "/getDeviceTemplatesAttachedToFeature"
1053
3809
  },
1054
3810
  "task": true
1055
3811
  },
1056
3812
  {
1057
- "name": "getDevicetloc",
1058
- "summary": "Retrieve TLOC status",
1059
- "description": "Retrieve TLOC status",
1060
- "input": [],
3813
+ "name": "resetVedgeCloud",
3814
+ "summary": "resetVedgeCloud",
3815
+ "description": "Decommission software vEdge",
3816
+ "input": [
3817
+ {
3818
+ "name": "uuid",
3819
+ "type": "string",
3820
+ "info": "vEdge cloud UUID: string",
3821
+ "required": true,
3822
+ "schema": {
3823
+ "title": "uuid",
3824
+ "type": "string"
3825
+ }
3826
+ }
3827
+ ],
1061
3828
  "output": {
1062
3829
  "name": "result",
1063
3830
  "type": "object",
@@ -1071,16 +3838,26 @@
1071
3838
  "admin"
1072
3839
  ],
1073
3840
  "route": {
1074
- "verb": "GET",
1075
- "path": "/getDevicetloc"
3841
+ "verb": "POST",
3842
+ "path": "/resetVedgeCloud"
1076
3843
  },
1077
3844
  "task": true
1078
3845
  },
1079
3846
  {
1080
- "name": "getDevicetlocutil",
1081
- "summary": "Retrieve TLOC list",
1082
- "description": "Retrieve TLOC list",
1083
- "input": [],
3847
+ "name": "generateBootstrapConfigForVedges",
3848
+ "summary": "generateBootstrapConfigForVedges",
3849
+ "description": "Get bootstrap config for software vEdges",
3850
+ "input": [
3851
+ {
3852
+ "name": "body",
3853
+ "type": "object",
3854
+ "info": ": object",
3855
+ "required": false,
3856
+ "schema": {
3857
+ "type": "object"
3858
+ }
3859
+ }
3860
+ ],
1084
3861
  "output": {
1085
3862
  "name": "result",
1086
3863
  "type": "object",
@@ -1094,16 +3871,27 @@
1094
3871
  "admin"
1095
3872
  ],
1096
3873
  "route": {
1097
- "verb": "GET",
1098
- "path": "/getDevicetlocutil"
3874
+ "verb": "POST",
3875
+ "path": "/generateBootstrapConfigForVedges"
1099
3876
  },
1100
3877
  "task": true
1101
3878
  },
1102
3879
  {
1103
- "name": "getDevicetlocutildetail",
1104
- "summary": "Retrieve detailed TLOC list",
1105
- "description": "Retrieve detailed TLOC list",
1106
- "input": [],
3880
+ "name": "decommissionVedgeCloud",
3881
+ "summary": "decommissionVedgeCloud",
3882
+ "description": "Decommission software vEdge",
3883
+ "input": [
3884
+ {
3885
+ "name": "uuid",
3886
+ "type": "string",
3887
+ "info": "vEdge cloud UUID: string",
3888
+ "required": true,
3889
+ "schema": {
3890
+ "title": "uuid",
3891
+ "type": "string"
3892
+ }
3893
+ }
3894
+ ],
1107
3895
  "output": {
1108
3896
  "name": "result",
1109
3897
  "type": "object",
@@ -1117,16 +3905,37 @@
1117
3905
  "admin"
1118
3906
  ],
1119
3907
  "route": {
1120
- "verb": "GET",
1121
- "path": "/getDevicetlocutildetail"
3908
+ "verb": "POST",
3909
+ "path": "/decommissionVedgeCloud"
1122
3910
  },
1123
3911
  "task": true
1124
3912
  },
1125
3913
  {
1126
- "name": "getDeviceunreachable",
1127
- "summary": "Retrieve list of unreachable devices",
1128
- "description": "Retrieve list of unreachable devices",
1129
- "input": [],
3914
+ "name": "generateBootstrapConfigForVedge",
3915
+ "summary": "generateBootstrapConfigForVedge",
3916
+ "description": "Get bootstrap config for software vEdge",
3917
+ "input": [
3918
+ {
3919
+ "name": "uuid",
3920
+ "type": "string",
3921
+ "info": "vEdge cloud UUID: string",
3922
+ "required": true,
3923
+ "schema": {
3924
+ "title": "uuid",
3925
+ "type": "string"
3926
+ }
3927
+ },
3928
+ {
3929
+ "name": "configtype",
3930
+ "type": "string",
3931
+ "info": "configtype: Must be one of [cloudinit, encodedstring]",
3932
+ "required": false,
3933
+ "schema": {
3934
+ "title": "configtype",
3935
+ "type": "string"
3936
+ }
3937
+ }
3938
+ ],
1130
3939
  "output": {
1131
3940
  "name": "result",
1132
3941
  "type": "object",
@@ -1140,23 +3949,23 @@
1140
3949
  "admin"
1141
3950
  ],
1142
3951
  "route": {
1143
- "verb": "GET",
1144
- "path": "/getDeviceunreachable"
3952
+ "verb": "POST",
3953
+ "path": "/generateBootstrapConfigForVedge"
1145
3954
  },
1146
3955
  "task": true
1147
3956
  },
1148
3957
  {
1149
- "name": "deleteDeviceunreachabledeviceIP",
1150
- "summary": "Delete unreachable device",
1151
- "description": "Delete unreachable device",
3958
+ "name": "getBootstrapConfigZip",
3959
+ "summary": "getBootstrapConfigZip",
3960
+ "description": "Get bootstrap config for software vEdges",
1152
3961
  "input": [
1153
3962
  {
1154
- "name": "deviceIP",
3963
+ "name": "id",
1155
3964
  "type": "string",
1156
- "info": "",
3965
+ "info": "Generated bootstrap config id: string",
1157
3966
  "required": true,
1158
3967
  "schema": {
1159
- "title": "deviceIP",
3968
+ "title": "id",
1160
3969
  "type": "string"
1161
3970
  }
1162
3971
  }
@@ -1175,14 +3984,14 @@
1175
3984
  ],
1176
3985
  "route": {
1177
3986
  "verb": "POST",
1178
- "path": "/deleteDeviceunreachabledeviceIP"
3987
+ "path": "/getBootstrapConfigZip"
1179
3988
  },
1180
3989
  "task": true
1181
3990
  },
1182
3991
  {
1183
- "name": "getDevicevedgeinventorydetail",
1184
- "summary": "Retrieve detailed vEdge inventory",
1185
- "description": "Retrieve detailed vEdge inventory",
3992
+ "name": "formPost",
3993
+ "summary": "formPost",
3994
+ "description": "Post form",
1186
3995
  "input": [],
1187
3996
  "output": {
1188
3997
  "name": "result",
@@ -1198,15 +4007,76 @@
1198
4007
  ],
1199
4008
  "route": {
1200
4009
  "verb": "GET",
1201
- "path": "/getDevicevedgeinventorydetail"
4010
+ "path": "/formPost"
1202
4011
  },
1203
4012
  "task": true
1204
4013
  },
1205
4014
  {
1206
- "name": "getDevicevedgeinventorysummary",
1207
- "summary": "Retrieve vEdge inventory",
1208
- "description": "Retrieve vEdge inventory",
1209
- "input": [],
4015
+ "name": "getDevicesDetails",
4016
+ "summary": "getDevicesDetails",
4017
+ "description": "Get devices details",
4018
+ "input": [
4019
+ {
4020
+ "name": "deviceCategory",
4021
+ "type": "string",
4022
+ "info": "deviceCategory: Must be one of [vedges, controllers]",
4023
+ "required": true,
4024
+ "schema": {
4025
+ "title": "deviceCategory",
4026
+ "type": "string"
4027
+ }
4028
+ },
4029
+ {
4030
+ "name": "model",
4031
+ "type": "string",
4032
+ "info": "deviceModel: string",
4033
+ "required": false,
4034
+ "schema": {
4035
+ "title": "model",
4036
+ "type": "string"
4037
+ }
4038
+ },
4039
+ {
4040
+ "name": "state",
4041
+ "type": "string",
4042
+ "info": "List of states: Must be one of [tokengenerated, bootstrapconfiggenerated, csrgenerated, csrfailed, certinstalled, certinstallfailed]",
4043
+ "required": false,
4044
+ "schema": {
4045
+ "title": "state",
4046
+ "type": "string"
4047
+ }
4048
+ },
4049
+ {
4050
+ "name": "uuid",
4051
+ "type": "array",
4052
+ "info": "List of device uuids: array",
4053
+ "required": false,
4054
+ "schema": {
4055
+ "title": "uuid",
4056
+ "type": "array"
4057
+ }
4058
+ },
4059
+ {
4060
+ "name": "deviceIP",
4061
+ "type": "array",
4062
+ "info": "List of device system-ips: array",
4063
+ "required": false,
4064
+ "schema": {
4065
+ "title": "deviceIP",
4066
+ "type": "array"
4067
+ }
4068
+ },
4069
+ {
4070
+ "name": "validity",
4071
+ "type": "string",
4072
+ "info": "List of device validity: Must be one of [valid, invalid, staging]",
4073
+ "required": false,
4074
+ "schema": {
4075
+ "title": "validity",
4076
+ "type": "string"
4077
+ }
4078
+ }
4079
+ ],
1210
4080
  "output": {
1211
4081
  "name": "result",
1212
4082
  "type": "object",
@@ -1220,16 +4090,50 @@
1220
4090
  "admin"
1221
4091
  ],
1222
4092
  "route": {
1223
- "verb": "GET",
1224
- "path": "/getDevicevedgeinventorysummary"
4093
+ "verb": "POST",
4094
+ "path": "/getDevicesDetails"
1225
4095
  },
1226
4096
  "task": true
1227
4097
  },
1228
4098
  {
1229
- "name": "getDevicevmanage",
1230
- "summary": "Retrieve vManage configuration",
1231
- "description": "Retrieve vManage configuration",
1232
- "input": [],
4099
+ "name": "createDevice",
4100
+ "summary": "createDevice",
4101
+ "description": "Create device",
4102
+ "input": [
4103
+ {
4104
+ "name": "body",
4105
+ "type": "object",
4106
+ "info": ": {\"deviceIP\": \"string\", \"username\": \"string\", \"password\": \"string\", \"personality\": \"string\", \"generateCSR\": \"boolean\", \"protocol\": \"string\", \"port\": \"string\"}",
4107
+ "required": false,
4108
+ "schema": {
4109
+ "title": "CreateDeviceParams",
4110
+ "type": "object",
4111
+ "properties": {
4112
+ "deviceIP": {
4113
+ "type": "string"
4114
+ },
4115
+ "username": {
4116
+ "type": "string"
4117
+ },
4118
+ "password": {
4119
+ "type": "string"
4120
+ },
4121
+ "personality": {
4122
+ "type": "string"
4123
+ },
4124
+ "generateCSR": {
4125
+ "type": "boolean"
4126
+ },
4127
+ "protocol": {
4128
+ "type": "string"
4129
+ },
4130
+ "port": {
4131
+ "type": "string"
4132
+ }
4133
+ }
4134
+ }
4135
+ }
4136
+ ],
1233
4137
  "output": {
1234
4138
  "name": "result",
1235
4139
  "type": "object",
@@ -1243,27 +4147,16 @@
1243
4147
  "admin"
1244
4148
  ],
1245
4149
  "route": {
1246
- "verb": "GET",
1247
- "path": "/getDevicevmanage"
4150
+ "verb": "POST",
4151
+ "path": "/createDevice"
1248
4152
  },
1249
4153
  "task": true
1250
4154
  },
1251
4155
  {
1252
- "name": "getDeviceactionchangepartition",
1253
- "summary": "Retrieve change partition information",
1254
- "description": "Retrieve change partition information",
1255
- "input": [
1256
- {
1257
- "name": "deviceId",
1258
- "type": "array",
1259
- "info": "",
1260
- "required": false,
1261
- "schema": {
1262
- "title": "deviceId",
1263
- "type": "array"
1264
- }
1265
- }
1266
- ],
4156
+ "name": "getManagementSystemIPInfo",
4157
+ "summary": "getManagementSystemIPInfo",
4158
+ "description": "Get Management system ip mapping",
4159
+ "input": [],
1267
4160
  "output": {
1268
4161
  "name": "result",
1269
4162
  "type": "object",
@@ -1277,23 +4170,23 @@
1277
4170
  "admin"
1278
4171
  ],
1279
4172
  "route": {
1280
- "verb": "POST",
1281
- "path": "/getDeviceactionchangepartition"
4173
+ "verb": "GET",
4174
+ "path": "/getManagementSystemIPInfo"
1282
4175
  },
1283
4176
  "task": true
1284
4177
  },
1285
4178
  {
1286
- "name": "postDeviceactionchangepartition",
1287
- "summary": "Process change partition operation",
1288
- "description": "Process change partition operation",
4179
+ "name": "deleteDevice",
4180
+ "summary": "deleteDevice",
4181
+ "description": "Delete vedges",
1289
4182
  "input": [
1290
4183
  {
1291
- "name": "body",
4184
+ "name": "uuid",
1292
4185
  "type": "string",
1293
- "info": "",
1294
- "required": false,
4186
+ "info": ": string",
4187
+ "required": true,
1295
4188
  "schema": {
1296
- "title": "body",
4189
+ "title": "uuid",
1297
4190
  "type": "string"
1298
4191
  }
1299
4192
  }
@@ -1312,22 +4205,31 @@
1312
4205
  ],
1313
4206
  "route": {
1314
4207
  "verb": "POST",
1315
- "path": "/postDeviceactionchangepartition"
4208
+ "path": "/deleteDevice"
1316
4209
  },
1317
4210
  "task": true
1318
4211
  },
1319
4212
  {
1320
- "name": "postDeviceactiondefaultpartition",
1321
- "summary": "Process marking default partition operation",
1322
- "description": "Process marking default partition operation",
4213
+ "name": "editDevice",
4214
+ "summary": "editDevice",
4215
+ "description": "Edit device",
1323
4216
  "input": [
4217
+ {
4218
+ "name": "uuid",
4219
+ "type": "string",
4220
+ "info": ": string",
4221
+ "required": true,
4222
+ "schema": {
4223
+ "title": "uuid",
4224
+ "type": "string"
4225
+ }
4226
+ },
1324
4227
  {
1325
4228
  "name": "body",
1326
4229
  "type": "string",
1327
- "info": "",
4230
+ "info": ": string",
1328
4231
  "required": false,
1329
4232
  "schema": {
1330
- "title": "body",
1331
4233
  "type": "string"
1332
4234
  }
1333
4235
  }
@@ -1346,14 +4248,14 @@
1346
4248
  ],
1347
4249
  "route": {
1348
4250
  "verb": "POST",
1349
- "path": "/postDeviceactiondefaultpartition"
4251
+ "path": "/editDevice"
1350
4252
  },
1351
4253
  "task": true
1352
4254
  },
1353
4255
  {
1354
- "name": "getDeviceactionfiltervpn",
1355
- "summary": "Create VPN list",
1356
- "description": "Create VPN list",
4256
+ "name": "getControllerVEdgeSyncStatus",
4257
+ "summary": "getControllerVEdgeSyncStatus",
4258
+ "description": "Get controllers vedge sync status",
1357
4259
  "input": [],
1358
4260
  "output": {
1359
4261
  "name": "result",
@@ -1369,23 +4271,23 @@
1369
4271
  ],
1370
4272
  "route": {
1371
4273
  "verb": "GET",
1372
- "path": "/getDeviceactionfiltervpn"
4274
+ "path": "/getControllerVEdgeSyncStatus"
1373
4275
  },
1374
4276
  "task": true
1375
4277
  },
1376
4278
  {
1377
- "name": "getDeviceactioninstall",
1378
- "summary": "Generate install info",
1379
- "description": "Generate install info",
4279
+ "name": "getRootCertStatusAll",
4280
+ "summary": "getRootCertStatusAll",
4281
+ "description": "Get controllers vedge sync status",
1380
4282
  "input": [
1381
4283
  {
1382
- "name": "deviceId",
1383
- "type": "array",
1384
- "info": "Device ID",
1385
- "required": true,
4284
+ "name": "state",
4285
+ "type": "string",
4286
+ "info": "state: Must be one of [pending, done]",
4287
+ "required": false,
1386
4288
  "schema": {
1387
- "title": "deviceId",
1388
- "type": "array"
4289
+ "title": "state",
4290
+ "type": "string"
1389
4291
  }
1390
4292
  }
1391
4293
  ],
@@ -1403,23 +4305,40 @@
1403
4305
  ],
1404
4306
  "route": {
1405
4307
  "verb": "POST",
1406
- "path": "/getDeviceactioninstall"
4308
+ "path": "/getRootCertStatusAll"
1407
4309
  },
1408
4310
  "task": true
1409
4311
  },
1410
4312
  {
1411
- "name": "postDeviceactioninstall",
1412
- "summary": "Process an installation operation",
1413
- "description": "Process an installation operation",
4313
+ "name": "syncDevices",
4314
+ "summary": "syncDevices",
4315
+ "description": "Sync devices from Smart-Account",
1414
4316
  "input": [
1415
4317
  {
1416
4318
  "name": "body",
1417
- "type": "string",
1418
- "info": "",
4319
+ "type": "object",
4320
+ "info": ": {\"username\": \"string\", \"password\": \"string\", \"env\": \"string\", \"organization_name\": \"string\", \"validity_string\": \"string\"}",
1419
4321
  "required": false,
1420
4322
  "schema": {
1421
- "title": "body",
1422
- "type": "string"
4323
+ "title": "SmartAccountModel",
4324
+ "type": "object",
4325
+ "properties": {
4326
+ "username": {
4327
+ "type": "string"
4328
+ },
4329
+ "password": {
4330
+ "type": "string"
4331
+ },
4332
+ "env": {
4333
+ "type": "string"
4334
+ },
4335
+ "organization_name": {
4336
+ "type": "string"
4337
+ },
4338
+ "validity_string": {
4339
+ "type": "string"
4340
+ }
4341
+ }
1423
4342
  }
1424
4343
  }
1425
4344
  ],
@@ -1437,32 +4356,22 @@
1437
4356
  ],
1438
4357
  "route": {
1439
4358
  "verb": "POST",
1440
- "path": "/postDeviceactioninstall"
4359
+ "path": "/syncDevices"
1441
4360
  },
1442
4361
  "task": true
1443
4362
  },
1444
4363
  {
1445
- "name": "getDeviceactioninstalldevicesdeviceType",
1446
- "summary": "Retrieve list of installed devices",
1447
- "description": "Retrieve list of installed devices",
4364
+ "name": "getCloudDockDataBasedOnDeviceType",
4365
+ "summary": "getCloudDockDataBasedOnDeviceType",
4366
+ "description": "Get devices details",
1448
4367
  "input": [
1449
4368
  {
1450
- "name": "deviceType",
1451
- "type": "string",
1452
- "info": "",
1453
- "required": true,
1454
- "schema": {
1455
- "title": "deviceType",
1456
- "type": "string"
1457
- }
1458
- },
1459
- {
1460
- "name": "groupId",
4369
+ "name": "deviceCategory",
1461
4370
  "type": "string",
1462
- "info": "Group ID",
4371
+ "info": "deviceCategory: Must be one of [vedges, controllers]",
1463
4372
  "required": true,
1464
4373
  "schema": {
1465
- "title": "groupId",
4374
+ "title": "deviceCategory",
1466
4375
  "type": "string"
1467
4376
  }
1468
4377
  }
@@ -1481,14 +4390,14 @@
1481
4390
  ],
1482
4391
  "route": {
1483
4392
  "verb": "POST",
1484
- "path": "/getDeviceactioninstalldevicesdeviceType"
4393
+ "path": "/getCloudDockDataBasedOnDeviceType"
1485
4394
  },
1486
4395
  "task": true
1487
4396
  },
1488
4397
  {
1489
- "name": "getDeviceactionlist",
1490
- "summary": "Retrieve list of device actions",
1491
- "description": "Retrieve list of device actions",
4398
+ "name": "getOutOfSyncTemplates",
4399
+ "summary": "getOutOfSyncTemplates",
4400
+ "description": "Get template sync status",
1492
4401
  "input": [],
1493
4402
  "output": {
1494
4403
  "name": "result",
@@ -1504,23 +4413,23 @@
1504
4413
  ],
1505
4414
  "route": {
1506
4415
  "verb": "GET",
1507
- "path": "/getDeviceactionlist"
4416
+ "path": "/getOutOfSyncTemplates"
1508
4417
  },
1509
4418
  "task": true
1510
4419
  },
1511
4420
  {
1512
- "name": "getDeviceactionreboot",
1513
- "summary": "Retrieve reboot information",
1514
- "description": "Retrieve reboot information",
4421
+ "name": "getOutOfSyncDevices",
4422
+ "summary": "getOutOfSyncDevices",
4423
+ "description": "Get out of sync devices",
1515
4424
  "input": [
1516
4425
  {
1517
- "name": "deviceId",
1518
- "type": "array",
1519
- "info": "Device ID",
4426
+ "name": "templateId",
4427
+ "type": "string",
4428
+ "info": ": string",
1520
4429
  "required": true,
1521
4430
  "schema": {
1522
- "title": "deviceId",
1523
- "type": "array"
4431
+ "title": "templateId",
4432
+ "type": "string"
1524
4433
  }
1525
4434
  }
1526
4435
  ],
@@ -1538,23 +4447,23 @@
1538
4447
  ],
1539
4448
  "route": {
1540
4449
  "verb": "POST",
1541
- "path": "/getDeviceactionreboot"
4450
+ "path": "/getOutOfSyncDevices"
1542
4451
  },
1543
4452
  "task": true
1544
4453
  },
1545
4454
  {
1546
- "name": "postDeviceactionreboot",
1547
- "summary": "Process a reboot operation",
1548
- "description": "Process a reboot operation",
4455
+ "name": "createMasterTemplate",
4456
+ "summary": "createMasterTemplate",
4457
+ "description": "Create template",
1549
4458
  "input": [
1550
4459
  {
1551
4460
  "name": "body",
1552
- "type": "string",
1553
- "info": "",
1554
- "required": false,
4461
+ "type": "object",
4462
+ "info": "templateId: object",
4463
+ "required": true,
1555
4464
  "schema": {
1556
- "title": "body",
1557
- "type": "string"
4465
+ "type": "object",
4466
+ "description": "templateId"
1558
4467
  }
1559
4468
  }
1560
4469
  ],
@@ -1572,33 +4481,23 @@
1572
4481
  ],
1573
4482
  "route": {
1574
4483
  "verb": "POST",
1575
- "path": "/postDeviceactionreboot"
4484
+ "path": "/createMasterTemplate"
1576
4485
  },
1577
4486
  "task": true
1578
4487
  },
1579
4488
  {
1580
- "name": "getDeviceactionrebootdevicesdeviceType",
1581
- "summary": "Retrieve list of rebooted devices",
1582
- "description": "Retrieve list of rebooted devices",
4489
+ "name": "createCLITemplate",
4490
+ "summary": "createCLITemplate",
4491
+ "description": "Create template",
1583
4492
  "input": [
1584
4493
  {
1585
- "name": "deviceType",
1586
- "type": "string",
1587
- "info": "",
1588
- "required": true,
1589
- "schema": {
1590
- "title": "deviceType",
1591
- "type": "string"
1592
- }
1593
- },
1594
- {
1595
- "name": "groupId",
1596
- "type": "string",
1597
- "info": "Group ID",
4494
+ "name": "body",
4495
+ "type": "object",
4496
+ "info": "templateId: object",
1598
4497
  "required": true,
1599
4498
  "schema": {
1600
- "title": "groupId",
1601
- "type": "string"
4499
+ "type": "object",
4500
+ "description": "templateId"
1602
4501
  }
1603
4502
  }
1604
4503
  ],
@@ -1616,15 +4515,26 @@
1616
4515
  ],
1617
4516
  "route": {
1618
4517
  "verb": "POST",
1619
- "path": "/getDeviceactionrebootdevicesdeviceType"
4518
+ "path": "/createCLITemplate"
1620
4519
  },
1621
4520
  "task": true
1622
4521
  },
1623
4522
  {
1624
- "name": "getDeviceactionrediscover",
1625
- "summary": "Retrieve rediscover operation information",
1626
- "description": "Retrieve rediscover operation information",
1627
- "input": [],
4523
+ "name": "getMasterTemplateDefinition",
4524
+ "summary": "getMasterTemplateDefinition",
4525
+ "description": "Get template object",
4526
+ "input": [
4527
+ {
4528
+ "name": "templateId",
4529
+ "type": "string",
4530
+ "info": ": string",
4531
+ "required": true,
4532
+ "schema": {
4533
+ "title": "templateId",
4534
+ "type": "string"
4535
+ }
4536
+ }
4537
+ ],
1628
4538
  "output": {
1629
4539
  "name": "result",
1630
4540
  "type": "object",
@@ -1638,23 +4548,23 @@
1638
4548
  "admin"
1639
4549
  ],
1640
4550
  "route": {
1641
- "verb": "GET",
1642
- "path": "/getDeviceactionrediscover"
4551
+ "verb": "POST",
4552
+ "path": "/getMasterTemplateDefinition"
1643
4553
  },
1644
4554
  "task": true
1645
4555
  },
1646
4556
  {
1647
- "name": "postDeviceactionrediscover",
1648
- "summary": "Rediscover device",
1649
- "description": "Rediscover device",
4557
+ "name": "getRunningConfig",
4558
+ "summary": "getRunningConfig",
4559
+ "description": "Get running config",
1650
4560
  "input": [
1651
4561
  {
1652
- "name": "body",
4562
+ "name": "deviceUUID",
1653
4563
  "type": "string",
1654
- "info": "Input JSON",
4564
+ "info": "Device UUID: string",
1655
4565
  "required": true,
1656
4566
  "schema": {
1657
- "title": "body",
4567
+ "title": "deviceUUID",
1658
4568
  "type": "string"
1659
4569
  }
1660
4570
  }
@@ -1673,15 +4583,35 @@
1673
4583
  ],
1674
4584
  "route": {
1675
4585
  "verb": "POST",
1676
- "path": "/postDeviceactionrediscover"
4586
+ "path": "/getRunningConfig"
1677
4587
  },
1678
4588
  "task": true
1679
4589
  },
1680
4590
  {
1681
- "name": "postDeviceactionrediscoverall",
1682
- "summary": "Rediscover device",
1683
- "description": "Rediscover device",
1684
- "input": [],
4591
+ "name": "uploadConfig",
4592
+ "summary": "uploadConfig",
4593
+ "description": "Upload config",
4594
+ "input": [
4595
+ {
4596
+ "name": "deviceUUID",
4597
+ "type": "string",
4598
+ "info": "Device UUID: string",
4599
+ "required": true,
4600
+ "schema": {
4601
+ "title": "deviceUUID",
4602
+ "type": "string"
4603
+ }
4604
+ },
4605
+ {
4606
+ "name": "body",
4607
+ "type": "object",
4608
+ "info": ": object",
4609
+ "required": false,
4610
+ "schema": {
4611
+ "type": "object"
4612
+ }
4613
+ }
4614
+ ],
1685
4615
  "output": {
1686
4616
  "name": "result",
1687
4617
  "type": "object",
@@ -1695,24 +4625,34 @@
1695
4625
  "admin"
1696
4626
  ],
1697
4627
  "route": {
1698
- "verb": "GET",
1699
- "path": "/postDeviceactionrediscoverall"
4628
+ "verb": "POST",
4629
+ "path": "/uploadConfig"
1700
4630
  },
1701
4631
  "task": true
1702
4632
  },
1703
4633
  {
1704
- "name": "getDeviceactionremovepartition",
1705
- "summary": "Retrieve remove partition information",
1706
- "description": "Retrieve remove partition information",
4634
+ "name": "getAttachedConfig",
4635
+ "summary": "getAttachedConfig",
4636
+ "description": "Get attached config",
1707
4637
  "input": [
1708
4638
  {
1709
- "name": "deviceId",
1710
- "type": "array",
1711
- "info": "",
4639
+ "name": "deviceUUID",
4640
+ "type": "string",
4641
+ "info": "Device UUID: string",
4642
+ "required": true,
4643
+ "schema": {
4644
+ "title": "deviceUUID",
4645
+ "type": "string"
4646
+ }
4647
+ },
4648
+ {
4649
+ "name": "type",
4650
+ "type": "string",
4651
+ "info": "Config Type: string",
1712
4652
  "required": false,
1713
4653
  "schema": {
1714
- "title": "deviceId",
1715
- "type": "array"
4654
+ "title": "type",
4655
+ "type": "string"
1716
4656
  }
1717
4657
  }
1718
4658
  ],
@@ -1730,22 +4670,22 @@
1730
4670
  ],
1731
4671
  "route": {
1732
4672
  "verb": "POST",
1733
- "path": "/getDeviceactionremovepartition"
4673
+ "path": "/getAttachedConfig"
1734
4674
  },
1735
4675
  "task": true
1736
4676
  },
1737
4677
  {
1738
- "name": "postDeviceactionremovepartition",
1739
- "summary": "Process remove partition operation",
1740
- "description": "Process remove partition operation",
4678
+ "name": "getConfigDiff",
4679
+ "summary": "getConfigDiff",
4680
+ "description": "Get config diff",
1741
4681
  "input": [
1742
4682
  {
1743
- "name": "body",
4683
+ "name": "deviceUUID",
1744
4684
  "type": "string",
1745
- "info": "",
1746
- "required": false,
4685
+ "info": "Device UUID: string",
4686
+ "required": true,
1747
4687
  "schema": {
1748
- "title": "body",
4688
+ "title": "deviceUUID",
1749
4689
  "type": "string"
1750
4690
  }
1751
4691
  }
@@ -1764,15 +4704,26 @@
1764
4704
  ],
1765
4705
  "route": {
1766
4706
  "verb": "POST",
1767
- "path": "/postDeviceactionremovepartition"
4707
+ "path": "/getConfigDiff"
1768
4708
  },
1769
4709
  "task": true
1770
4710
  },
1771
4711
  {
1772
- "name": "getDeviceactionstartmonitor",
1773
- "summary": "Triggers global monitoring thread",
1774
- "description": "Triggers global monitoring thread",
1775
- "input": [],
4712
+ "name": "generateCLIModeDevices",
4713
+ "summary": "generateCLIModeDevices",
4714
+ "description": "Generate CLI mode devices",
4715
+ "input": [
4716
+ {
4717
+ "name": "type",
4718
+ "type": "string",
4719
+ "info": "Type: Must be one of [vedge, controller, vmanage]",
4720
+ "required": true,
4721
+ "schema": {
4722
+ "title": "type",
4723
+ "type": "string"
4724
+ }
4725
+ }
4726
+ ],
1776
4727
  "output": {
1777
4728
  "name": "result",
1778
4729
  "type": "object",
@@ -1786,24 +4737,23 @@
1786
4737
  "admin"
1787
4738
  ],
1788
4739
  "route": {
1789
- "verb": "GET",
1790
- "path": "/getDeviceactionstartmonitor"
4740
+ "verb": "POST",
4741
+ "path": "/generateCLIModeDevices"
1791
4742
  },
1792
4743
  "task": true
1793
4744
  },
1794
4745
  {
1795
- "name": "postDeviceactionuniquevpnlist",
1796
- "summary": "Create VPN list",
1797
- "description": "Create VPN list",
4746
+ "name": "updateDeviceToCLIMode",
4747
+ "summary": "updateDeviceToCLIMode",
4748
+ "description": "Update device to CLI Mode",
1798
4749
  "input": [
1799
4750
  {
1800
4751
  "name": "body",
1801
- "type": "string",
1802
- "info": "",
4752
+ "type": "object",
4753
+ "info": ": object",
1803
4754
  "required": false,
1804
4755
  "schema": {
1805
- "title": "body",
1806
- "type": "string"
4756
+ "type": "object"
1807
4757
  }
1808
4758
  }
1809
4759
  ],
@@ -1821,15 +4771,26 @@
1821
4771
  ],
1822
4772
  "route": {
1823
4773
  "verb": "POST",
1824
- "path": "/postDeviceactionuniquevpnlist"
4774
+ "path": "/updateDeviceToCLIMode"
1825
4775
  },
1826
4776
  "task": true
1827
4777
  },
1828
4778
  {
1829
- "name": "getDeviceactionvpn",
1830
- "summary": "Create VPN list",
1831
- "description": "Create VPN list",
1832
- "input": [],
4779
+ "name": "generatevManageModeDevices",
4780
+ "summary": "generatevManageModeDevices",
4781
+ "description": "Generate vManage mode devices",
4782
+ "input": [
4783
+ {
4784
+ "name": "type",
4785
+ "type": "string",
4786
+ "info": "Type: Must be one of [vedge, controller, vmanage]",
4787
+ "required": true,
4788
+ "schema": {
4789
+ "title": "type",
4790
+ "type": "string"
4791
+ }
4792
+ }
4793
+ ],
1833
4794
  "output": {
1834
4795
  "name": "result",
1835
4796
  "type": "object",
@@ -1843,23 +4804,23 @@
1843
4804
  "admin"
1844
4805
  ],
1845
4806
  "route": {
1846
- "verb": "GET",
1847
- "path": "/getDeviceactionvpn"
4807
+ "verb": "POST",
4808
+ "path": "/generatevManageModeDevices"
1848
4809
  },
1849
4810
  "task": true
1850
4811
  },
1851
4812
  {
1852
- "name": "getDeviceactionztpupgrade",
1853
- "summary": "Process ZTP upgrade configuration.",
1854
- "description": "Process ZTP upgrade configuration.",
4813
+ "name": "getCompatibleDevices",
4814
+ "summary": "getCompatibleDevices",
4815
+ "description": "Get compatible devices",
1855
4816
  "input": [
1856
4817
  {
1857
- "name": "body",
4818
+ "name": "oldDeviceUUID",
1858
4819
  "type": "string",
1859
- "info": "",
1860
- "required": false,
4820
+ "info": "Device UUID: string",
4821
+ "required": true,
1861
4822
  "schema": {
1862
- "title": "body",
4823
+ "title": "oldDeviceUUID",
1863
4824
  "type": "string"
1864
4825
  }
1865
4826
  }
@@ -1878,22 +4839,22 @@
1878
4839
  ],
1879
4840
  "route": {
1880
4841
  "verb": "POST",
1881
- "path": "/getDeviceactionztpupgrade"
4842
+ "path": "/getCompatibleDevices"
1882
4843
  },
1883
4844
  "task": true
1884
4845
  },
1885
4846
  {
1886
- "name": "postDeviceactionztpupgrade",
1887
- "summary": "Process ZTP upgrade configuration.",
1888
- "description": "Process ZTP upgrade configuration.",
4847
+ "name": "getVpnForDevice",
4848
+ "summary": "getVpnForDevice",
4849
+ "description": "Get configured vpn for the device",
1889
4850
  "input": [
1890
4851
  {
1891
- "name": "body",
4852
+ "name": "uuid",
1892
4853
  "type": "string",
1893
- "info": "",
1894
- "required": false,
4854
+ "info": "Device UUID: string",
4855
+ "required": true,
1895
4856
  "schema": {
1896
- "title": "body",
4857
+ "title": "uuid",
1897
4858
  "type": "string"
1898
4859
  }
1899
4860
  }
@@ -1912,23 +4873,22 @@
1912
4873
  ],
1913
4874
  "route": {
1914
4875
  "verb": "POST",
1915
- "path": "/postDeviceactionztpupgrade"
4876
+ "path": "/getVpnForDevice"
1916
4877
  },
1917
4878
  "task": true
1918
4879
  },
1919
4880
  {
1920
- "name": "getDeviceactionztpupgradesetting",
1921
- "summary": "Process ZTP upgrade configuration.",
1922
- "description": "Process ZTP upgrade configuration.",
4881
+ "name": "rmaUpdate",
4882
+ "summary": "rmaUpdate",
4883
+ "description": "Update New Device",
1923
4884
  "input": [
1924
4885
  {
1925
4886
  "name": "body",
1926
- "type": "string",
1927
- "info": "",
4887
+ "type": "object",
4888
+ "info": ": object",
1928
4889
  "required": false,
1929
4890
  "schema": {
1930
- "title": "body",
1931
- "type": "string"
4891
+ "type": "object"
1932
4892
  }
1933
4893
  }
1934
4894
  ],
@@ -1946,22 +4906,22 @@
1946
4906
  ],
1947
4907
  "route": {
1948
4908
  "verb": "POST",
1949
- "path": "/getDeviceactionztpupgradesetting"
4909
+ "path": "/rmaUpdate"
1950
4910
  },
1951
4911
  "task": true
1952
4912
  },
1953
4913
  {
1954
- "name": "postDeviceactionztpupgradesetting",
1955
- "summary": "Process ZTP upgrade configuration.",
1956
- "description": "Process ZTP upgrade configuration.",
4914
+ "name": "deActivatePolicy",
4915
+ "summary": "deActivatePolicy",
4916
+ "description": "Deactivate vsmart policy",
1957
4917
  "input": [
1958
4918
  {
1959
- "name": "body",
4919
+ "name": "policyId",
1960
4920
  "type": "string",
1961
- "info": "",
1962
- "required": false,
4921
+ "info": "Policy Id: string",
4922
+ "required": true,
1963
4923
  "schema": {
1964
- "title": "body",
4924
+ "title": "policyId",
1965
4925
  "type": "string"
1966
4926
  }
1967
4927
  }
@@ -1980,20 +4940,20 @@
1980
4940
  ],
1981
4941
  "route": {
1982
4942
  "verb": "POST",
1983
- "path": "/postDeviceactionztpupgradesetting"
4943
+ "path": "/deActivatePolicy"
1984
4944
  },
1985
4945
  "task": true
1986
4946
  },
1987
4947
  {
1988
- "name": "activateVsmartPolicy",
1989
- "summary": "Activate a vSmart controller policy by policy ID",
1990
- "description": "Activate a vSmart controller policy by policy ID",
4948
+ "name": "activatePolicy",
4949
+ "summary": "activatePolicy",
4950
+ "description": "Activate vsmart policy",
1991
4951
  "input": [
1992
4952
  {
1993
4953
  "name": "policyId",
1994
4954
  "type": "string",
1995
- "info": "policy id to activate",
1996
- "required": false,
4955
+ "info": "Policy Id: string",
4956
+ "required": true,
1997
4957
  "schema": {
1998
4958
  "title": "policyId",
1999
4959
  "type": "string"
@@ -2002,11 +4962,11 @@
2002
4962
  {
2003
4963
  "name": "body",
2004
4964
  "type": "object",
2005
- "info": "body param",
2006
- "required": false,
4965
+ "info": "Policy JSON: object",
4966
+ "required": true,
2007
4967
  "schema": {
2008
- "title": "body",
2009
- "type": "object"
4968
+ "type": "object",
4969
+ "description": "Policy JSON"
2010
4970
  }
2011
4971
  }
2012
4972
  ],
@@ -2024,26 +4984,15 @@
2024
4984
  ],
2025
4985
  "route": {
2026
4986
  "verb": "POST",
2027
- "path": "/activateVsmartPolicy"
4987
+ "path": "/activatePolicy"
2028
4988
  },
2029
4989
  "task": true
2030
4990
  },
2031
4991
  {
2032
- "name": "deactivateVsmartPolicy",
2033
- "summary": "Deactivate a vSmart controller policy by policy ID",
2034
- "description": "Deactivate a vSmart controller policy by policy ID",
2035
- "input": [
2036
- {
2037
- "name": "policyId",
2038
- "type": "string",
2039
- "info": "policy id to deactivate",
2040
- "required": false,
2041
- "schema": {
2042
- "title": "policyId",
2043
- "type": "string"
2044
- }
2045
- }
2046
- ],
4992
+ "name": "checkVSmartConnectivityStatus",
4993
+ "summary": "checkVSmartConnectivityStatus",
4994
+ "description": "Check VSmart Connectivity Status",
4995
+ "input": [],
2047
4996
  "output": {
2048
4997
  "name": "result",
2049
4998
  "type": "object",
@@ -2057,24 +5006,24 @@
2057
5006
  "admin"
2058
5007
  ],
2059
5008
  "route": {
2060
- "verb": "POST",
2061
- "path": "/deactivateVsmartPolicy"
5009
+ "verb": "GET",
5010
+ "path": "/checkVSmartConnectivityStatus"
2062
5011
  },
2063
5012
  "task": true
2064
5013
  },
2065
5014
  {
2066
- "name": "getDeviceVsmartStatus",
2067
- "summary": "Display the status of device vSmart policy",
2068
- "description": "Display the status of device vSmart policy",
5015
+ "name": "applicationAwareRoutingStatistics",
5016
+ "summary": "applicationAwareRoutingStatistics",
5017
+ "description": "Getting statistics for application aware routing",
2069
5018
  "input": [
2070
5019
  {
2071
- "name": "policyId",
2072
- "type": "string",
2073
- "info": "vsmart policy id",
2074
- "required": false,
5020
+ "name": "body",
5021
+ "type": "object",
5022
+ "info": "body param",
5023
+ "required": true,
2075
5024
  "schema": {
2076
- "title": "policyId",
2077
- "type": "string"
5025
+ "type": "object",
5026
+ "description": "body param"
2078
5027
  }
2079
5028
  }
2080
5029
  ],
@@ -2092,7 +5041,7 @@
2092
5041
  ],
2093
5042
  "route": {
2094
5043
  "verb": "POST",
2095
- "path": "/getDeviceVsmartStatus"
5044
+ "path": "/applicationAwareRoutingStatistics"
2096
5045
  },
2097
5046
  "task": true
2098
5047
  }