@itentialopensource/adapter-zscaler 0.6.7 → 0.8.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 (54) hide show
  1. package/AUTH.md +39 -0
  2. package/BROKER.md +199 -0
  3. package/CALLS.md +511 -0
  4. package/CHANGELOG.md +3 -94
  5. package/CODE_OF_CONDUCT.md +12 -17
  6. package/CONTRIBUTING.md +3 -148
  7. package/ENHANCE.md +69 -0
  8. package/PROPERTIES.md +641 -0
  9. package/README.md +235 -576
  10. package/SUMMARY.md +9 -0
  11. package/SYSTEMINFO.md +11 -0
  12. package/TROUBLESHOOT.md +47 -0
  13. package/adapter.js +292 -640
  14. package/adapterBase.js +843 -419
  15. package/changelogs/CHANGELOG.md +118 -0
  16. package/entities/.generic/action.json +105 -0
  17. package/entities/.generic/schema.json +6 -1
  18. package/error.json +6 -0
  19. package/metadata.json +49 -0
  20. package/package.json +25 -24
  21. package/pronghorn.json +527 -116
  22. package/propertiesDecorators.json +14 -0
  23. package/propertiesSchema.json +827 -6
  24. package/refs?service=git-upload-pack +0 -0
  25. package/report/adapter-openapi.json +1828 -0
  26. package/report/adapter-openapi.yaml +1462 -0
  27. package/report/adapterInfo.json +10 -0
  28. package/report/updateReport1653331963274.json +120 -0
  29. package/report/updateReport1691508819418.json +120 -0
  30. package/report/updateReport1692203278243.json +120 -0
  31. package/report/updateReport1694468959859.json +120 -0
  32. package/report/updateReport1698422816279.json +120 -0
  33. package/sampleProperties.json +153 -3
  34. package/test/integration/adapterTestBasicGet.js +3 -5
  35. package/test/integration/adapterTestConnectivity.js +91 -42
  36. package/test/integration/adapterTestIntegration.js +155 -109
  37. package/test/unit/adapterBaseTestUnit.js +388 -308
  38. package/test/unit/adapterTestUnit.js +399 -260
  39. package/utils/adapterInfo.js +206 -0
  40. package/utils/addAuth.js +1 -1
  41. package/utils/artifactize.js +1 -1
  42. package/utils/checkMigrate.js +1 -1
  43. package/utils/entitiesToDB.js +12 -57
  44. package/utils/findPath.js +1 -1
  45. package/utils/methodDocumentor.js +273 -0
  46. package/utils/modify.js +13 -15
  47. package/utils/packModificationScript.js +1 -1
  48. package/utils/pre-commit.sh +5 -0
  49. package/utils/taskMover.js +309 -0
  50. package/utils/tbScript.js +123 -53
  51. package/utils/tbUtils.js +87 -49
  52. package/utils/testRunner.js +17 -17
  53. package/utils/troubleshootingAdapter.js +9 -6
  54. package/workflows/README.md +0 -3
@@ -0,0 +1,1462 @@
1
+ openapi: 3.0.0
2
+ info:
3
+ title: adapter-zscaler
4
+ contact: {}
5
+ version: '1.0.0'
6
+ servers:
7
+ - url: https://{defaultHost}
8
+ variables:
9
+ defaultHost:
10
+ default: www.example.com
11
+ paths:
12
+ /authenticatedSession:
13
+ get:
14
+ summary: getAuthenticatedSession
15
+ description: ''
16
+ operationId: getAuthenticatedSession
17
+ parameters: []
18
+ responses:
19
+ '200':
20
+ description: Successful operation
21
+ headers: {}
22
+ content:
23
+ application/json:
24
+ schema:
25
+ type: object
26
+ deprecated: false
27
+ post:
28
+ summary: postAuthenticatedSession
29
+ description: ''
30
+ operationId: postAuthenticatedSession
31
+ parameters:
32
+ - name: credentials
33
+ in: query
34
+ description: ''
35
+ required: true
36
+ style: form
37
+ explode: true
38
+ schema:
39
+ type: object
40
+ requestBody:
41
+ description: ''
42
+ content:
43
+ application/json:
44
+ schema:
45
+ type: object
46
+ required: false
47
+ responses:
48
+ '200':
49
+ description: Successful operation
50
+ headers: {}
51
+ content:
52
+ application/json:
53
+ schema:
54
+ type: object
55
+ deprecated: false
56
+ delete:
57
+ summary: deleteAuthenticatedSession
58
+ description: ''
59
+ operationId: deleteAuthenticatedSession
60
+ parameters: []
61
+ responses:
62
+ '200':
63
+ description: Successful operation
64
+ headers: {}
65
+ content:
66
+ application/json:
67
+ schema:
68
+ type: object
69
+ deprecated: false
70
+ /auditReport:
71
+ get:
72
+ summary: getAuditReport
73
+ description: ''
74
+ operationId: getAuditReport
75
+ parameters: []
76
+ responses:
77
+ '200':
78
+ description: Successful operation
79
+ headers: {}
80
+ content:
81
+ application/json:
82
+ schema:
83
+ type: object
84
+ deprecated: false
85
+ post:
86
+ summary: postAuditReport
87
+ description: ''
88
+ operationId: postAuditReport
89
+ parameters: []
90
+ responses:
91
+ '200':
92
+ description: Successful operation
93
+ headers: {}
94
+ content:
95
+ application/json:
96
+ schema:
97
+ type: object
98
+ deprecated: false
99
+ delete:
100
+ summary: deleteAuditReport
101
+ description: ''
102
+ operationId: deleteAuditReport
103
+ parameters: []
104
+ responses:
105
+ '200':
106
+ description: Successful operation
107
+ headers: {}
108
+ content:
109
+ application/json:
110
+ schema:
111
+ type: object
112
+ deprecated: false
113
+ /auditReport/download:
114
+ get:
115
+ summary: getAuditReportdownload
116
+ description: ''
117
+ operationId: getAuditReportdownload
118
+ parameters: []
119
+ responses:
120
+ '200':
121
+ description: Successful operation
122
+ headers: {}
123
+ content:
124
+ application/json:
125
+ schema:
126
+ type: object
127
+ deprecated: false
128
+ /auditlogEntryReport:
129
+ get:
130
+ summary: getAuditlogEntryReport
131
+ description: ''
132
+ operationId: getAuditlogEntryReport
133
+ parameters: []
134
+ responses:
135
+ '200':
136
+ description: Successful operation
137
+ headers: {}
138
+ content:
139
+ application/json:
140
+ schema:
141
+ type: object
142
+ deprecated: false
143
+ post:
144
+ summary: postAuditlogEntryReport
145
+ description: ''
146
+ operationId: postAuditlogEntryReport
147
+ parameters:
148
+ - name: request
149
+ in: query
150
+ description: ''
151
+ style: form
152
+ explode: true
153
+ schema:
154
+ type: object
155
+ requestBody:
156
+ description: ''
157
+ content:
158
+ application/json:
159
+ schema:
160
+ type: object
161
+ required: false
162
+ responses:
163
+ '200':
164
+ description: Successful operation
165
+ headers: {}
166
+ content:
167
+ application/json:
168
+ schema:
169
+ type: object
170
+ deprecated: false
171
+ delete:
172
+ summary: deleteAuditlogEntryReport
173
+ description: ''
174
+ operationId: deleteAuditlogEntryReport
175
+ parameters: []
176
+ responses:
177
+ '200':
178
+ description: Successful operation
179
+ headers: {}
180
+ content:
181
+ application/json:
182
+ schema:
183
+ type: object
184
+ deprecated: false
185
+ /auditlogEntryReport/download:
186
+ get:
187
+ summary: getAuditlogEntryReportdownload
188
+ description: ''
189
+ operationId: getAuditlogEntryReportdownload
190
+ parameters: []
191
+ responses:
192
+ '200':
193
+ description: Successful operation
194
+ headers: {}
195
+ content:
196
+ application/json:
197
+ schema:
198
+ type: object
199
+ deprecated: false
200
+ /departments:
201
+ get:
202
+ summary: getDepartments
203
+ description: ''
204
+ operationId: getDepartments
205
+ parameters: []
206
+ responses:
207
+ '200':
208
+ description: Successful operation
209
+ headers: {}
210
+ content:
211
+ application/json:
212
+ schema:
213
+ type: object
214
+ deprecated: false
215
+ /departments/{id}:
216
+ get:
217
+ summary: getDepartmentsid
218
+ description: ''
219
+ operationId: getDepartmentsid
220
+ parameters:
221
+ - name: id
222
+ in: path
223
+ description: ''
224
+ required: true
225
+ style: simple
226
+ schema:
227
+ type: number
228
+ format: double
229
+ responses:
230
+ '200':
231
+ description: Successful operation
232
+ headers: {}
233
+ content:
234
+ application/json:
235
+ schema:
236
+ type: object
237
+ deprecated: false
238
+ /groups:
239
+ get:
240
+ summary: getGroups
241
+ description: ''
242
+ operationId: getGroups
243
+ parameters:
244
+ - name: search
245
+ in: query
246
+ description: ''
247
+ style: form
248
+ explode: true
249
+ schema:
250
+ type: string
251
+ - name: page
252
+ in: query
253
+ description: ''
254
+ style: form
255
+ explode: true
256
+ schema:
257
+ type: number
258
+ format: double
259
+ - name: pageSize
260
+ in: query
261
+ description: ''
262
+ style: form
263
+ explode: true
264
+ schema:
265
+ type: number
266
+ format: double
267
+ responses:
268
+ '200':
269
+ description: Successful operation
270
+ headers: {}
271
+ content:
272
+ application/json:
273
+ schema:
274
+ type: object
275
+ deprecated: false
276
+ /groups/{groupId}:
277
+ get:
278
+ summary: getGroupsgroupId
279
+ description: ''
280
+ operationId: getGroupsgroupId
281
+ parameters:
282
+ - name: groupId
283
+ in: path
284
+ description: ''
285
+ required: true
286
+ style: simple
287
+ schema:
288
+ type: number
289
+ format: double
290
+ responses:
291
+ '200':
292
+ description: Successful operation
293
+ headers: {}
294
+ content:
295
+ application/json:
296
+ schema:
297
+ type: object
298
+ deprecated: false
299
+ /users:
300
+ get:
301
+ summary: getUsers
302
+ description: ''
303
+ operationId: getUsers
304
+ parameters:
305
+ - name: name
306
+ in: query
307
+ description: ''
308
+ style: form
309
+ explode: true
310
+ schema:
311
+ type: string
312
+ - name: dept
313
+ in: query
314
+ description: ''
315
+ style: form
316
+ explode: true
317
+ schema:
318
+ type: string
319
+ - name: group
320
+ in: query
321
+ description: ''
322
+ style: form
323
+ explode: true
324
+ schema:
325
+ type: string
326
+ - name: page
327
+ in: query
328
+ description: ''
329
+ style: form
330
+ explode: true
331
+ schema:
332
+ type: number
333
+ format: double
334
+ - name: pageSize
335
+ in: query
336
+ description: ''
337
+ style: form
338
+ explode: true
339
+ schema:
340
+ type: number
341
+ format: double
342
+ responses:
343
+ '200':
344
+ description: Successful operation
345
+ headers: {}
346
+ content:
347
+ application/json:
348
+ schema:
349
+ type: object
350
+ deprecated: false
351
+ post:
352
+ summary: postUsers
353
+ description: ''
354
+ operationId: postUsers
355
+ parameters:
356
+ - name: user
357
+ in: query
358
+ description: ''
359
+ style: form
360
+ explode: true
361
+ schema:
362
+ type: object
363
+ requestBody:
364
+ description: ''
365
+ content:
366
+ application/json:
367
+ schema:
368
+ type: object
369
+ required: false
370
+ responses:
371
+ '200':
372
+ description: Successful operation
373
+ headers: {}
374
+ content:
375
+ application/json:
376
+ schema:
377
+ type: object
378
+ deprecated: false
379
+ /users/bulkDelete:
380
+ post:
381
+ summary: postUsersbulkDelete
382
+ description: ''
383
+ operationId: postUsersbulkDelete
384
+ parameters:
385
+ - name: userIds
386
+ in: query
387
+ description: ''
388
+ style: form
389
+ explode: true
390
+ schema:
391
+ type: object
392
+ requestBody:
393
+ description: ''
394
+ content:
395
+ application/json:
396
+ schema:
397
+ type: object
398
+ required: false
399
+ responses:
400
+ '200':
401
+ description: Successful operation
402
+ headers: {}
403
+ content:
404
+ application/json:
405
+ schema:
406
+ type: object
407
+ deprecated: false
408
+ /users/{userId}:
409
+ get:
410
+ summary: getUsersuserId
411
+ description: ''
412
+ operationId: getUsersuserId
413
+ parameters:
414
+ - name: userId
415
+ in: path
416
+ description: ''
417
+ required: true
418
+ style: simple
419
+ schema:
420
+ type: number
421
+ format: double
422
+ responses:
423
+ '200':
424
+ description: Successful operation
425
+ headers: {}
426
+ content:
427
+ application/json:
428
+ schema:
429
+ type: object
430
+ deprecated: false
431
+ put:
432
+ summary: putUsersuserId
433
+ description: ''
434
+ operationId: putUsersuserId
435
+ parameters:
436
+ - name: userId
437
+ in: path
438
+ description: ''
439
+ required: true
440
+ style: simple
441
+ schema:
442
+ type: number
443
+ format: double
444
+ - name: user
445
+ in: query
446
+ description: ''
447
+ style: form
448
+ explode: true
449
+ schema:
450
+ type: object
451
+ requestBody:
452
+ description: ''
453
+ content:
454
+ application/json:
455
+ schema:
456
+ type: object
457
+ required: false
458
+ responses:
459
+ '200':
460
+ description: Successful operation
461
+ headers: {}
462
+ content:
463
+ application/json:
464
+ schema:
465
+ type: object
466
+ deprecated: false
467
+ delete:
468
+ summary: deleteUsersuserId
469
+ description: ''
470
+ operationId: deleteUsersuserId
471
+ parameters:
472
+ - name: userId
473
+ in: path
474
+ description: ''
475
+ required: true
476
+ style: simple
477
+ schema:
478
+ type: number
479
+ format: double
480
+ responses:
481
+ '200':
482
+ description: Successful operation
483
+ headers: {}
484
+ content:
485
+ application/json:
486
+ schema:
487
+ type: object
488
+ deprecated: false
489
+ /security:
490
+ get:
491
+ summary: getSecurity
492
+ description: ''
493
+ operationId: getSecurity
494
+ parameters: []
495
+ responses:
496
+ '200':
497
+ description: Successful operation
498
+ headers: {}
499
+ content:
500
+ application/json:
501
+ schema:
502
+ type: object
503
+ deprecated: false
504
+ put:
505
+ summary: putSecurity
506
+ description: ''
507
+ operationId: putSecurity
508
+ parameters:
509
+ - name: policy
510
+ in: query
511
+ description: ''
512
+ style: form
513
+ explode: true
514
+ schema:
515
+ type: object
516
+ requestBody:
517
+ description: ''
518
+ content:
519
+ application/json:
520
+ schema:
521
+ type: object
522
+ required: false
523
+ responses:
524
+ '200':
525
+ description: Successful operation
526
+ headers: {}
527
+ content:
528
+ application/json:
529
+ schema:
530
+ type: object
531
+ deprecated: false
532
+ /security/advanced:
533
+ get:
534
+ summary: getSecurityadvanced
535
+ description: ''
536
+ operationId: getSecurityadvanced
537
+ parameters: []
538
+ responses:
539
+ '200':
540
+ description: Successful operation
541
+ headers: {}
542
+ content:
543
+ application/json:
544
+ schema:
545
+ type: object
546
+ deprecated: false
547
+ put:
548
+ summary: putSecurityadvanced
549
+ description: ''
550
+ operationId: putSecurityadvanced
551
+ parameters:
552
+ - name: advSettings
553
+ in: query
554
+ description: ''
555
+ style: form
556
+ explode: true
557
+ schema:
558
+ type: object
559
+ requestBody:
560
+ description: ''
561
+ content:
562
+ application/json:
563
+ schema:
564
+ type: object
565
+ required: false
566
+ responses:
567
+ '200':
568
+ description: Successful operation
569
+ headers: {}
570
+ content:
571
+ application/json:
572
+ schema:
573
+ type: object
574
+ deprecated: false
575
+ /security/advanced/blacklistUrls:
576
+ post:
577
+ summary: postSecurityadvancedblacklistUrls
578
+ description: ''
579
+ operationId: postSecurityadvancedblacklistUrls
580
+ parameters:
581
+ - name: action
582
+ in: query
583
+ description: ''
584
+ required: true
585
+ style: form
586
+ explode: true
587
+ schema:
588
+ type: string
589
+ requestBody:
590
+ description: ''
591
+ content:
592
+ application/json:
593
+ schema:
594
+ type: object
595
+ required: false
596
+ responses:
597
+ '200':
598
+ description: Successful operation
599
+ headers: {}
600
+ content:
601
+ application/json:
602
+ schema:
603
+ type: object
604
+ deprecated: false
605
+ /sslSettings/certchain:
606
+ delete:
607
+ summary: deleteSslSettingscertchain
608
+ description: ''
609
+ operationId: deleteSslSettingscertchain
610
+ parameters: []
611
+ responses:
612
+ '200':
613
+ description: Successful operation
614
+ headers: {}
615
+ content:
616
+ application/json:
617
+ schema:
618
+ type: object
619
+ deprecated: false
620
+ /sslSettings/downloadcsr:
621
+ get:
622
+ summary: getSslSettingsdownloadcsr
623
+ description: ''
624
+ operationId: getSslSettingsdownloadcsr
625
+ parameters: []
626
+ responses:
627
+ '200':
628
+ description: Successful operation
629
+ headers: {}
630
+ content:
631
+ application/json:
632
+ schema:
633
+ type: object
634
+ deprecated: false
635
+ /sslSettings/generatecsr:
636
+ post:
637
+ summary: postSslSettingsgeneratecsr
638
+ description: ''
639
+ operationId: postSslSettingsgeneratecsr
640
+ parameters:
641
+ - name: cert
642
+ in: query
643
+ description: ''
644
+ required: true
645
+ style: form
646
+ explode: true
647
+ schema:
648
+ type: object
649
+ requestBody:
650
+ description: ''
651
+ content:
652
+ application/json:
653
+ schema:
654
+ type: object
655
+ required: false
656
+ responses:
657
+ '200':
658
+ description: Successful operation
659
+ headers: {}
660
+ content:
661
+ application/json:
662
+ schema:
663
+ type: object
664
+ deprecated: false
665
+ /sslSettings/showcert:
666
+ get:
667
+ summary: getSslSettingsshowcert
668
+ description: ''
669
+ operationId: getSslSettingsshowcert
670
+ parameters: []
671
+ responses:
672
+ '200':
673
+ description: Successful operation
674
+ headers: {}
675
+ content:
676
+ application/json:
677
+ schema:
678
+ type: object
679
+ deprecated: false
680
+ /sslSettings/uploadcert/text:
681
+ post:
682
+ summary: postSslSettingsuploadcerttext
683
+ description: ''
684
+ operationId: postSslSettingsuploadcerttext
685
+ parameters:
686
+ - name: fileInputStream
687
+ in: query
688
+ description: ''
689
+ style: form
690
+ explode: true
691
+ schema:
692
+ type: object
693
+ requestBody:
694
+ description: ''
695
+ content:
696
+ application/json:
697
+ schema:
698
+ type: object
699
+ required: false
700
+ responses:
701
+ '200':
702
+ description: Successful operation
703
+ headers: {}
704
+ content:
705
+ application/json:
706
+ schema:
707
+ type: object
708
+ deprecated: false
709
+ /sslSettings/uploadcertchain/text:
710
+ post:
711
+ summary: postSslSettingsuploadcertchaintext
712
+ description: ''
713
+ operationId: postSslSettingsuploadcertchaintext
714
+ parameters:
715
+ - name: fileInputStream
716
+ in: query
717
+ description: ''
718
+ style: form
719
+ explode: true
720
+ schema:
721
+ type: object
722
+ requestBody:
723
+ description: ''
724
+ content:
725
+ application/json:
726
+ schema:
727
+ type: object
728
+ required: false
729
+ responses:
730
+ '200':
731
+ description: Successful operation
732
+ headers: {}
733
+ content:
734
+ application/json:
735
+ schema:
736
+ type: object
737
+ deprecated: false
738
+ /urlCategories:
739
+ get:
740
+ summary: getUrlCategories
741
+ description: ''
742
+ operationId: getUrlCategories
743
+ parameters:
744
+ - name: customOnly
745
+ in: query
746
+ description: ''
747
+ style: form
748
+ explode: true
749
+ schema:
750
+ type: boolean
751
+ responses:
752
+ '200':
753
+ description: Successful operation
754
+ headers: {}
755
+ content:
756
+ application/json:
757
+ schema:
758
+ type: object
759
+ deprecated: false
760
+ post:
761
+ summary: postUrlCategories
762
+ description: ''
763
+ operationId: postUrlCategories
764
+ parameters:
765
+ - name: customCategory
766
+ in: query
767
+ description: ''
768
+ style: form
769
+ explode: true
770
+ schema:
771
+ type: object
772
+ requestBody:
773
+ description: ''
774
+ content:
775
+ application/json:
776
+ schema:
777
+ type: object
778
+ required: false
779
+ responses:
780
+ '200':
781
+ description: Successful operation
782
+ headers: {}
783
+ content:
784
+ application/json:
785
+ schema:
786
+ type: object
787
+ deprecated: false
788
+ /urlCategories/lite:
789
+ get:
790
+ summary: getUrlCategorieslite
791
+ description: ''
792
+ operationId: getUrlCategorieslite
793
+ parameters: []
794
+ responses:
795
+ '200':
796
+ description: Successful operation
797
+ headers: {}
798
+ content:
799
+ application/json:
800
+ schema:
801
+ type: object
802
+ deprecated: false
803
+ /urlCategories/urlQuota:
804
+ get:
805
+ summary: getUrlCategoriesurlQuota
806
+ description: ''
807
+ operationId: getUrlCategoriesurlQuota
808
+ parameters: []
809
+ responses:
810
+ '200':
811
+ description: Successful operation
812
+ headers: {}
813
+ content:
814
+ application/json:
815
+ schema:
816
+ type: object
817
+ deprecated: false
818
+ /urlCategories/{categoryId}:
819
+ get:
820
+ summary: getUrlCategoriescategoryId
821
+ description: ''
822
+ operationId: getUrlCategoriescategoryId
823
+ parameters:
824
+ - name: categoryId
825
+ in: path
826
+ description: ''
827
+ required: true
828
+ style: simple
829
+ schema:
830
+ type: string
831
+ responses:
832
+ '200':
833
+ description: Successful operation
834
+ headers: {}
835
+ content:
836
+ application/json:
837
+ schema:
838
+ type: object
839
+ deprecated: false
840
+ put:
841
+ summary: putUrlCategoriescategoryId
842
+ description: ''
843
+ operationId: putUrlCategoriescategoryId
844
+ parameters:
845
+ - name: categoryId
846
+ in: path
847
+ description: ''
848
+ required: true
849
+ style: simple
850
+ schema:
851
+ type: string
852
+ - name: action
853
+ in: query
854
+ description: ''
855
+ style: form
856
+ explode: true
857
+ schema:
858
+ type: string
859
+ - name: customCategory
860
+ in: query
861
+ description: ''
862
+ style: form
863
+ explode: true
864
+ schema:
865
+ type: object
866
+ requestBody:
867
+ description: ''
868
+ content:
869
+ application/json:
870
+ schema:
871
+ type: object
872
+ required: false
873
+ responses:
874
+ '200':
875
+ description: Successful operation
876
+ headers: {}
877
+ content:
878
+ application/json:
879
+ schema:
880
+ type: object
881
+ deprecated: false
882
+ delete:
883
+ summary: deleteUrlCategoriescategoryId
884
+ description: ''
885
+ operationId: deleteUrlCategoriescategoryId
886
+ parameters:
887
+ - name: categoryId
888
+ in: path
889
+ description: ''
890
+ required: true
891
+ style: simple
892
+ schema:
893
+ type: string
894
+ responses:
895
+ '200':
896
+ description: Successful operation
897
+ headers: {}
898
+ content:
899
+ application/json:
900
+ schema:
901
+ type: object
902
+ deprecated: false
903
+ /urlLookup:
904
+ post:
905
+ summary: postUrlLookup
906
+ description: ''
907
+ operationId: postUrlLookup
908
+ parameters:
909
+ - name: urls
910
+ in: query
911
+ description: ''
912
+ style: form
913
+ explode: true
914
+ schema:
915
+ type: array
916
+ items: {}
917
+ requestBody:
918
+ description: ''
919
+ content:
920
+ application/json:
921
+ schema:
922
+ type: object
923
+ required: false
924
+ responses:
925
+ '200':
926
+ description: Successful operation
927
+ headers: {}
928
+ content:
929
+ application/json:
930
+ schema:
931
+ type: object
932
+ deprecated: false
933
+ /vpnCredentials:
934
+ get:
935
+ summary: getVpnCredentials
936
+ description: ''
937
+ operationId: getVpnCredentials
938
+ parameters:
939
+ - name: search
940
+ in: query
941
+ description: ''
942
+ style: form
943
+ explode: true
944
+ schema:
945
+ type: string
946
+ - name: type
947
+ in: query
948
+ description: ''
949
+ style: form
950
+ explode: true
951
+ schema:
952
+ type: string
953
+ - name: includeOnlyWithoutLocation
954
+ in: query
955
+ description: ''
956
+ style: form
957
+ explode: true
958
+ schema:
959
+ type: boolean
960
+ - name: locationId
961
+ in: query
962
+ description: ''
963
+ style: form
964
+ explode: true
965
+ schema:
966
+ type: number
967
+ format: double
968
+ - name: managedBy
969
+ in: query
970
+ description: ''
971
+ style: form
972
+ explode: true
973
+ schema:
974
+ type: number
975
+ format: double
976
+ - name: page
977
+ in: query
978
+ description: ''
979
+ style: form
980
+ explode: true
981
+ schema:
982
+ type: number
983
+ format: double
984
+ - name: pageSize
985
+ in: query
986
+ description: ''
987
+ style: form
988
+ explode: true
989
+ schema:
990
+ type: number
991
+ format: double
992
+ responses:
993
+ '200':
994
+ description: Successful operation
995
+ headers: {}
996
+ content:
997
+ application/json:
998
+ schema:
999
+ type: object
1000
+ deprecated: false
1001
+ post:
1002
+ summary: postVpnCredentials
1003
+ description: ''
1004
+ operationId: postVpnCredentials
1005
+ parameters:
1006
+ - name: vpnCred
1007
+ in: query
1008
+ description: ''
1009
+ style: form
1010
+ explode: true
1011
+ schema:
1012
+ type: object
1013
+ requestBody:
1014
+ description: ''
1015
+ content:
1016
+ application/json:
1017
+ schema:
1018
+ type: object
1019
+ required: false
1020
+ responses:
1021
+ '200':
1022
+ description: Successful operation
1023
+ headers: {}
1024
+ content:
1025
+ application/json:
1026
+ schema:
1027
+ type: object
1028
+ deprecated: false
1029
+ /vpnCredentials/bulkDelete:
1030
+ post:
1031
+ summary: postVpnCredentialsbulkDelete
1032
+ description: ''
1033
+ operationId: postVpnCredentialsbulkDelete
1034
+ parameters:
1035
+ - name: ids
1036
+ in: query
1037
+ description: ''
1038
+ style: form
1039
+ explode: true
1040
+ schema:
1041
+ type: object
1042
+ requestBody:
1043
+ description: ''
1044
+ content:
1045
+ application/json:
1046
+ schema:
1047
+ type: object
1048
+ required: false
1049
+ responses:
1050
+ '200':
1051
+ description: Successful operation
1052
+ headers: {}
1053
+ content:
1054
+ application/json:
1055
+ schema:
1056
+ type: object
1057
+ deprecated: false
1058
+ /vpnCredentials/{vpnId}:
1059
+ get:
1060
+ summary: getVpnCredentialsvpnId
1061
+ description: ''
1062
+ operationId: getVpnCredentialsvpnId
1063
+ parameters:
1064
+ - name: vpnId
1065
+ in: path
1066
+ description: ''
1067
+ required: true
1068
+ style: simple
1069
+ schema:
1070
+ type: number
1071
+ format: double
1072
+ responses:
1073
+ '200':
1074
+ description: Successful operation
1075
+ headers: {}
1076
+ content:
1077
+ application/json:
1078
+ schema:
1079
+ type: object
1080
+ deprecated: false
1081
+ put:
1082
+ summary: putVpnCredentialsvpnId
1083
+ description: ''
1084
+ operationId: putVpnCredentialsvpnId
1085
+ parameters:
1086
+ - name: vpnId
1087
+ in: path
1088
+ description: ''
1089
+ required: true
1090
+ style: simple
1091
+ schema:
1092
+ type: number
1093
+ format: double
1094
+ - name: vpnCred
1095
+ in: query
1096
+ description: ''
1097
+ style: form
1098
+ explode: true
1099
+ schema:
1100
+ type: object
1101
+ requestBody:
1102
+ description: ''
1103
+ content:
1104
+ application/json:
1105
+ schema:
1106
+ type: object
1107
+ required: false
1108
+ responses:
1109
+ '200':
1110
+ description: Successful operation
1111
+ headers: {}
1112
+ content:
1113
+ application/json:
1114
+ schema:
1115
+ type: object
1116
+ deprecated: false
1117
+ delete:
1118
+ summary: deleteVpnCredentialsvpnId
1119
+ description: ''
1120
+ operationId: deleteVpnCredentialsvpnId
1121
+ parameters:
1122
+ - name: vpnId
1123
+ in: path
1124
+ description: ''
1125
+ required: true
1126
+ style: simple
1127
+ schema:
1128
+ type: number
1129
+ format: double
1130
+ responses:
1131
+ '200':
1132
+ description: Successful operation
1133
+ headers: {}
1134
+ content:
1135
+ application/json:
1136
+ schema:
1137
+ type: object
1138
+ deprecated: false
1139
+ /locations:
1140
+ get:
1141
+ summary: getLocations
1142
+ description: ''
1143
+ operationId: getLocations
1144
+ parameters:
1145
+ - name: search
1146
+ in: query
1147
+ description: ''
1148
+ style: form
1149
+ explode: true
1150
+ schema:
1151
+ type: string
1152
+ - name: sslScanEnabled
1153
+ in: query
1154
+ description: ''
1155
+ style: form
1156
+ explode: true
1157
+ schema:
1158
+ type: boolean
1159
+ - name: xffEnabled
1160
+ in: query
1161
+ description: ''
1162
+ style: form
1163
+ explode: true
1164
+ schema:
1165
+ type: boolean
1166
+ - name: authRequired
1167
+ in: query
1168
+ description: ''
1169
+ style: form
1170
+ explode: true
1171
+ schema:
1172
+ type: boolean
1173
+ - name: bwEnforced
1174
+ in: query
1175
+ description: ''
1176
+ style: form
1177
+ explode: true
1178
+ schema:
1179
+ type: boolean
1180
+ - name: page
1181
+ in: query
1182
+ description: ''
1183
+ style: form
1184
+ explode: true
1185
+ schema:
1186
+ type: number
1187
+ format: double
1188
+ - name: pageSize
1189
+ in: query
1190
+ description: ''
1191
+ style: form
1192
+ explode: true
1193
+ schema:
1194
+ type: number
1195
+ format: double
1196
+ responses:
1197
+ '200':
1198
+ description: Successful operation
1199
+ headers: {}
1200
+ content:
1201
+ application/json:
1202
+ schema:
1203
+ type: object
1204
+ deprecated: false
1205
+ post:
1206
+ summary: postLocations
1207
+ description: ''
1208
+ operationId: postLocations
1209
+ parameters:
1210
+ - name: location
1211
+ in: query
1212
+ description: ''
1213
+ style: form
1214
+ explode: true
1215
+ schema:
1216
+ type: object
1217
+ requestBody:
1218
+ description: ''
1219
+ content:
1220
+ application/json:
1221
+ schema:
1222
+ type: object
1223
+ required: false
1224
+ responses:
1225
+ '200':
1226
+ description: Successful operation
1227
+ headers: {}
1228
+ content:
1229
+ application/json:
1230
+ schema:
1231
+ type: object
1232
+ deprecated: false
1233
+ /locations/bulkDelete:
1234
+ post:
1235
+ summary: postLocationsbulkDelete
1236
+ description: ''
1237
+ operationId: postLocationsbulkDelete
1238
+ parameters:
1239
+ - name: LocationIds
1240
+ in: query
1241
+ description: ''
1242
+ style: form
1243
+ explode: true
1244
+ schema:
1245
+ type: object
1246
+ requestBody:
1247
+ description: ''
1248
+ content:
1249
+ application/json:
1250
+ schema:
1251
+ type: object
1252
+ required: false
1253
+ responses:
1254
+ '200':
1255
+ description: Successful operation
1256
+ headers: {}
1257
+ content:
1258
+ application/json:
1259
+ schema:
1260
+ type: object
1261
+ deprecated: false
1262
+ /locations/lite:
1263
+ get:
1264
+ summary: getLocationslite
1265
+ description: ''
1266
+ operationId: getLocationslite
1267
+ parameters:
1268
+ - name: sslScanEnabled
1269
+ in: query
1270
+ description: ''
1271
+ style: form
1272
+ explode: true
1273
+ schema:
1274
+ type: boolean
1275
+ - name: search
1276
+ in: query
1277
+ description: ''
1278
+ style: form
1279
+ explode: true
1280
+ schema:
1281
+ type: string
1282
+ - name: page
1283
+ in: query
1284
+ description: ''
1285
+ style: form
1286
+ explode: true
1287
+ schema:
1288
+ type: number
1289
+ format: double
1290
+ - name: pageSize
1291
+ in: query
1292
+ description: ''
1293
+ style: form
1294
+ explode: true
1295
+ schema:
1296
+ type: number
1297
+ format: double
1298
+ responses:
1299
+ '200':
1300
+ description: Successful operation
1301
+ headers: {}
1302
+ content:
1303
+ application/json:
1304
+ schema:
1305
+ type: object
1306
+ deprecated: false
1307
+ /locations/{locationId}:
1308
+ get:
1309
+ summary: getLocationslocationId
1310
+ description: ''
1311
+ operationId: getLocationslocationId
1312
+ parameters:
1313
+ - name: locationId
1314
+ in: path
1315
+ description: ''
1316
+ required: true
1317
+ style: simple
1318
+ schema:
1319
+ type: number
1320
+ format: double
1321
+ responses:
1322
+ '200':
1323
+ description: Successful operation
1324
+ headers: {}
1325
+ content:
1326
+ application/json:
1327
+ schema:
1328
+ type: object
1329
+ deprecated: false
1330
+ put:
1331
+ summary: putLocationslocationId
1332
+ description: ''
1333
+ operationId: putLocationslocationId
1334
+ parameters:
1335
+ - name: locationId
1336
+ in: path
1337
+ description: ''
1338
+ required: true
1339
+ style: simple
1340
+ schema:
1341
+ type: number
1342
+ format: double
1343
+ - name: location
1344
+ in: query
1345
+ description: ''
1346
+ style: form
1347
+ explode: true
1348
+ schema:
1349
+ type: object
1350
+ requestBody:
1351
+ description: ''
1352
+ content:
1353
+ application/json:
1354
+ schema:
1355
+ type: object
1356
+ required: false
1357
+ responses:
1358
+ '200':
1359
+ description: Successful operation
1360
+ headers: {}
1361
+ content:
1362
+ application/json:
1363
+ schema:
1364
+ type: object
1365
+ deprecated: false
1366
+ delete:
1367
+ summary: deleteLocationslocationId
1368
+ description: ''
1369
+ operationId: deleteLocationslocationId
1370
+ parameters:
1371
+ - name: locationId
1372
+ in: path
1373
+ description: ''
1374
+ required: true
1375
+ style: simple
1376
+ schema:
1377
+ type: number
1378
+ format: double
1379
+ responses:
1380
+ '200':
1381
+ description: Successful operation
1382
+ headers: {}
1383
+ content:
1384
+ application/json:
1385
+ schema:
1386
+ type: object
1387
+ deprecated: false
1388
+ /sandbox/report/quota:
1389
+ get:
1390
+ summary: getSandboxreportquota
1391
+ description: ''
1392
+ operationId: getSandboxreportquota
1393
+ parameters: []
1394
+ responses:
1395
+ '200':
1396
+ description: Successful operation
1397
+ headers: {}
1398
+ content:
1399
+ application/json:
1400
+ schema:
1401
+ type: object
1402
+ deprecated: false
1403
+ /sandbox/report/{md5Hash}:
1404
+ get:
1405
+ summary: getSandboxreportmd5Hash
1406
+ description: ''
1407
+ operationId: getSandboxreportmd5Hash
1408
+ parameters:
1409
+ - name: md5Hash
1410
+ in: path
1411
+ description: ''
1412
+ required: true
1413
+ style: simple
1414
+ schema:
1415
+ type: string
1416
+ - name: details
1417
+ in: query
1418
+ description: ''
1419
+ style: form
1420
+ explode: true
1421
+ schema:
1422
+ type: string
1423
+ responses:
1424
+ '200':
1425
+ description: Successful operation
1426
+ headers: {}
1427
+ content:
1428
+ application/json:
1429
+ schema:
1430
+ type: object
1431
+ deprecated: false
1432
+ /status:
1433
+ get:
1434
+ summary: getStatus
1435
+ description: ''
1436
+ operationId: getStatus
1437
+ parameters: []
1438
+ responses:
1439
+ '200':
1440
+ description: Successful operation
1441
+ headers: {}
1442
+ content:
1443
+ application/json:
1444
+ schema:
1445
+ type: object
1446
+ deprecated: false
1447
+ /status/activate:
1448
+ post:
1449
+ summary: postStatusactivate
1450
+ description: ''
1451
+ operationId: postStatusactivate
1452
+ parameters: []
1453
+ responses:
1454
+ '200':
1455
+ description: Successful operation
1456
+ headers: {}
1457
+ content:
1458
+ application/json:
1459
+ schema:
1460
+ type: object
1461
+ deprecated: false
1462
+ tags: []