@itentialopensource/adapter-zscaler 0.10.10 → 0.10.12

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 (43) hide show
  1. package/CALLS.md +588 -0
  2. package/adapter.js +9953 -0
  3. package/entities/APIAuthentication/action.json +165 -0
  4. package/entities/APIAuthentication/schema.json +26 -0
  5. package/entities/AdvancedSettings/action.json +45 -0
  6. package/entities/AdvancedSettings/schema.json +20 -0
  7. package/entities/AdvancedThreatProtectionPolicy/action.json +127 -0
  8. package/entities/AdvancedThreatProtectionPolicy/schema.json +24 -0
  9. package/entities/AuthenticationSettings/action.json +66 -0
  10. package/entities/AuthenticationSettings/schema.json +21 -0
  11. package/entities/CloudAppControlPolicy/action.json +247 -0
  12. package/entities/CloudAppControlPolicy/schema.json +41 -0
  13. package/entities/CloudApplications/action.json +46 -0
  14. package/entities/CloudApplications/schema.json +20 -0
  15. package/entities/CloudNanologStreamingServiceNSS/action.json +252 -0
  16. package/entities/CloudNanologStreamingServiceNSS/schema.json +30 -0
  17. package/entities/DNSControlPolicy/action.json +106 -0
  18. package/entities/DNSControlPolicy/schema.json +23 -0
  19. package/entities/FileTypeControlPolicy/action.json +127 -0
  20. package/entities/FileTypeControlPolicy/schema.json +24 -0
  21. package/entities/ForwardingControlPolicy/action.json +204 -0
  22. package/entities/ForwardingControlPolicy/schema.json +11 -1
  23. package/entities/IPSControlPolicy/action.json +106 -0
  24. package/entities/IPSControlPolicy/schema.json +23 -0
  25. package/entities/MalwareProtectionPolicy/action.json +168 -0
  26. package/entities/MalwareProtectionPolicy/schema.json +26 -0
  27. package/entities/OrganizationDetails/action.json +67 -0
  28. package/entities/OrganizationDetails/schema.json +21 -0
  29. package/entities/RemoteAssistanceSupport/action.json +45 -0
  30. package/entities/RemoteAssistanceSupport/schema.json +20 -0
  31. package/entities/SSLInspectionPolicy/action.json +106 -0
  32. package/entities/SSLInspectionPolicy/schema.json +23 -0
  33. package/entities/SandBoxPolicy/action.json +168 -0
  34. package/entities/SandBoxPolicy/schema.json +26 -0
  35. package/entities/URLFilteringPolicy/action.json +148 -0
  36. package/entities/URLFilteringPolicy/schema.json +25 -0
  37. package/entities/URLFilteringandCloudAppControlSettings/action.json +45 -0
  38. package/entities/URLFilteringandCloudAppControlSettings/schema.json +20 -0
  39. package/package.json +2 -2
  40. package/pronghorn.json +4332 -0
  41. package/report/adapterInfo.json +7 -7
  42. package/test/integration/adapterTestIntegration.js +2481 -0
  43. package/test/unit/adapterTestUnit.js +2384 -1
package/pronghorn.json CHANGED
@@ -20334,6 +20334,4338 @@
20334
20334
  "path": "/putUrlCategoriesReviewDomainAddURLs"
20335
20335
  },
20336
20336
  "task": true
20337
+ },
20338
+ {
20339
+ "name": "getWebApplicationRulesRuleTypeAvailableActions",
20340
+ "summary": "Fetches the granular actions supported for the applications.",
20341
+ "description": "Fetches the granular actions supported for the applications.",
20342
+ "input": [
20343
+ {
20344
+ "name": "ruleType",
20345
+ "type": "string",
20346
+ "info": "The rule type selected from the available options. Available values : [ \"SOCIAL_NETWORKING\", \"STREAMING_MEDIA\", \"WEBMAIL\", \"INSTANT_MESSAGING\", \"BUSINESS_PRODU...(description truncated): string",
20347
+ "required": true,
20348
+ "schema": {
20349
+ "title": "ruleType",
20350
+ "type": "string"
20351
+ }
20352
+ },
20353
+ {
20354
+ "name": "iapMetadata",
20355
+ "type": "object",
20356
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
20357
+ "required": false,
20358
+ "schema": {
20359
+ "title": "iapMetadata",
20360
+ "type": "object"
20361
+ }
20362
+ }
20363
+ ],
20364
+ "output": {
20365
+ "name": "result",
20366
+ "type": "object",
20367
+ "description": "A JSON Object containing status, code and the result",
20368
+ "schema": {
20369
+ "title": "result",
20370
+ "type": "object"
20371
+ }
20372
+ },
20373
+ "roles": [
20374
+ "admin"
20375
+ ],
20376
+ "route": {
20377
+ "verb": "POST",
20378
+ "path": "/getWebApplicationRulesRuleTypeAvailableActions"
20379
+ },
20380
+ "task": true
20381
+ },
20382
+ {
20383
+ "name": "getWebApplicationRulesRuleTypeMapping",
20384
+ "summary": "Gets the backend keys that match the application type string.",
20385
+ "description": "Gets the backend keys that match the application type string.",
20386
+ "input": [
20387
+ {
20388
+ "name": "iapMetadata",
20389
+ "type": "object",
20390
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
20391
+ "required": false,
20392
+ "schema": {
20393
+ "title": "iapMetadata",
20394
+ "type": "object"
20395
+ }
20396
+ }
20397
+ ],
20398
+ "output": {
20399
+ "name": "result",
20400
+ "type": "object",
20401
+ "description": "A JSON Object containing status, code and the result",
20402
+ "schema": {
20403
+ "title": "result",
20404
+ "type": "object"
20405
+ }
20406
+ },
20407
+ "roles": [
20408
+ "admin"
20409
+ ],
20410
+ "route": {
20411
+ "verb": "GET",
20412
+ "path": "/getWebApplicationRulesRuleTypeMapping"
20413
+ },
20414
+ "task": true
20415
+ },
20416
+ {
20417
+ "name": "getWebApplicationRulesRuleType",
20418
+ "summary": "Gets the list of cloud application rules by the type of rule.",
20419
+ "description": "Gets the list of cloud application rules by the type of rule.",
20420
+ "input": [
20421
+ {
20422
+ "name": "ruleType",
20423
+ "type": "string",
20424
+ "info": "The rule type selected from the available options. Available values : [ \"SOCIAL_NETWORKING\", \"STREAMING_MEDIA\", \"WEBMAIL\", \"INSTANT_MESSAGING\", \"BUSINESS_PRODUC...(description truncated): string",
20425
+ "required": true,
20426
+ "schema": {
20427
+ "title": "ruleType",
20428
+ "type": "string"
20429
+ }
20430
+ },
20431
+ {
20432
+ "name": "search",
20433
+ "type": "string",
20434
+ "info": "The search string used to match against a rule type option.: string",
20435
+ "required": false,
20436
+ "schema": {
20437
+ "title": "search",
20438
+ "type": "string"
20439
+ }
20440
+ },
20441
+ {
20442
+ "name": "body",
20443
+ "type": "object",
20444
+ "info": ": object",
20445
+ "required": true,
20446
+ "schema": {
20447
+ "type": "object",
20448
+ "definitions": {}
20449
+ }
20450
+ },
20451
+ {
20452
+ "name": "iapMetadata",
20453
+ "type": "object",
20454
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
20455
+ "required": false,
20456
+ "schema": {
20457
+ "title": "iapMetadata",
20458
+ "type": "object"
20459
+ }
20460
+ }
20461
+ ],
20462
+ "output": {
20463
+ "name": "result",
20464
+ "type": "object",
20465
+ "description": "A JSON Object containing status, code and the result",
20466
+ "schema": {
20467
+ "title": "result",
20468
+ "type": "object"
20469
+ }
20470
+ },
20471
+ "roles": [
20472
+ "admin"
20473
+ ],
20474
+ "route": {
20475
+ "verb": "POST",
20476
+ "path": "/getWebApplicationRulesRuleType"
20477
+ },
20478
+ "task": true
20479
+ },
20480
+ {
20481
+ "name": "postWebApplicationRulesRuleType",
20482
+ "summary": "Adds a new cloud application rule.",
20483
+ "description": "Adds a new cloud application rule.",
20484
+ "input": [
20485
+ {
20486
+ "name": "ruleType",
20487
+ "type": "string",
20488
+ "info": "The rule type selected from the available options. Available values : [ \"SOCIAL_NETWORKING\", \"STREAMING_MEDIA\", \"WEBMAIL\", \"INSTANT_MESSAGING\", \"BUSINESS_PRODU...(description truncated): string",
20489
+ "required": true,
20490
+ "schema": {
20491
+ "title": "ruleType",
20492
+ "type": "string"
20493
+ }
20494
+ },
20495
+ {
20496
+ "name": "iapMetadata",
20497
+ "type": "object",
20498
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
20499
+ "required": false,
20500
+ "schema": {
20501
+ "title": "iapMetadata",
20502
+ "type": "object"
20503
+ }
20504
+ }
20505
+ ],
20506
+ "output": {
20507
+ "name": "result",
20508
+ "type": "object",
20509
+ "description": "A JSON Object containing status, code and the result",
20510
+ "schema": {
20511
+ "title": "result",
20512
+ "type": "object"
20513
+ }
20514
+ },
20515
+ "roles": [
20516
+ "admin"
20517
+ ],
20518
+ "route": {
20519
+ "verb": "POST",
20520
+ "path": "/postWebApplicationRulesRuleType"
20521
+ },
20522
+ "task": true
20523
+ },
20524
+ {
20525
+ "name": "postWebApplicationRulesRuleTypeRuleId",
20526
+ "summary": "Duplicates a Cloud App Control policy rule.",
20527
+ "description": "Duplicates a Cloud App Control policy rule.",
20528
+ "input": [
20529
+ {
20530
+ "name": "ruleType",
20531
+ "type": "string",
20532
+ "info": "The rule type selected from the available options. Available values : [ \"SOCIAL_NETWORKING\", \"STREAMING_MEDIA\", \"WEBMAIL\", \"INSTANT_MESSAGING\", \"BUSINESS_PRODU...(description truncated): string",
20533
+ "required": true,
20534
+ "schema": {
20535
+ "title": "ruleType",
20536
+ "type": "string"
20537
+ }
20538
+ },
20539
+ {
20540
+ "name": "ruleId",
20541
+ "type": "number",
20542
+ "info": "The ID of the Cloud App Control policy rule.: 123",
20543
+ "required": true,
20544
+ "schema": {
20545
+ "title": "ruleId",
20546
+ "type": "number"
20547
+ }
20548
+ },
20549
+ {
20550
+ "name": "name",
20551
+ "type": "string",
20552
+ "info": "The duplicated Cloud App Control policy rule's name.: string",
20553
+ "required": false,
20554
+ "schema": {
20555
+ "title": "name",
20556
+ "type": "string"
20557
+ }
20558
+ },
20559
+ {
20560
+ "name": "iapMetadata",
20561
+ "type": "object",
20562
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
20563
+ "required": false,
20564
+ "schema": {
20565
+ "title": "iapMetadata",
20566
+ "type": "object"
20567
+ }
20568
+ }
20569
+ ],
20570
+ "output": {
20571
+ "name": "result",
20572
+ "type": "object",
20573
+ "description": "A JSON Object containing status, code and the result",
20574
+ "schema": {
20575
+ "title": "result",
20576
+ "type": "object"
20577
+ }
20578
+ },
20579
+ "roles": [
20580
+ "admin"
20581
+ ],
20582
+ "route": {
20583
+ "verb": "POST",
20584
+ "path": "/postWebApplicationRulesRuleTypeRuleId"
20585
+ },
20586
+ "task": true
20587
+ },
20588
+ {
20589
+ "name": "getWebApplicationRulesRuleTypeRuleId",
20590
+ "summary": "Gets a Cloud App Control policy rule by the rule type and ID.",
20591
+ "description": "Gets a Cloud App Control policy rule by the rule type and ID.",
20592
+ "input": [
20593
+ {
20594
+ "name": "ruleType",
20595
+ "type": "string",
20596
+ "info": "The rule type selected from the available options. Available values : [ \"SOCIAL_NETWORKING\", \"STREAMING_MEDIA\", \"WEBMAIL\", \"INSTANT_MESSAGING\", \"BUSINESS_PRODU...(description truncated): string",
20597
+ "required": true,
20598
+ "schema": {
20599
+ "title": "ruleType",
20600
+ "type": "string"
20601
+ }
20602
+ },
20603
+ {
20604
+ "name": "ruleId",
20605
+ "type": "number",
20606
+ "info": "The ID of the Cloud App Control policy rule.: 123",
20607
+ "required": true,
20608
+ "schema": {
20609
+ "title": "ruleId",
20610
+ "type": "number"
20611
+ }
20612
+ },
20613
+ {
20614
+ "name": "iapMetadata",
20615
+ "type": "object",
20616
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
20617
+ "required": false,
20618
+ "schema": {
20619
+ "title": "iapMetadata",
20620
+ "type": "object"
20621
+ }
20622
+ }
20623
+ ],
20624
+ "output": {
20625
+ "name": "result",
20626
+ "type": "object",
20627
+ "description": "A JSON Object containing status, code and the result",
20628
+ "schema": {
20629
+ "title": "result",
20630
+ "type": "object"
20631
+ }
20632
+ },
20633
+ "roles": [
20634
+ "admin"
20635
+ ],
20636
+ "route": {
20637
+ "verb": "POST",
20638
+ "path": "/getWebApplicationRulesRuleTypeRuleId"
20639
+ },
20640
+ "task": true
20641
+ },
20642
+ {
20643
+ "name": "putWebApplicationRulesRuleTypeRuleId",
20644
+ "summary": "Updates the Cloud App Control policy rule.",
20645
+ "description": "Updates the Cloud App Control policy rule.",
20646
+ "input": [
20647
+ {
20648
+ "name": "ruleType",
20649
+ "type": "string",
20650
+ "info": "The rule type selected from the available options. Available values : [ \"SOCIAL_NETWORKING\", \"STREAMING_MEDIA\", \"WEBMAIL\", \"INSTANT_MESSAGING\", \"BUSINESS_PRODU...(description truncated): string",
20651
+ "required": true,
20652
+ "schema": {
20653
+ "title": "ruleType",
20654
+ "type": "string"
20655
+ }
20656
+ },
20657
+ {
20658
+ "name": "ruleId",
20659
+ "type": "number",
20660
+ "info": "The ID of the Cloud App Control policy rule.: 123",
20661
+ "required": true,
20662
+ "schema": {
20663
+ "title": "ruleId",
20664
+ "type": "number"
20665
+ }
20666
+ },
20667
+ {
20668
+ "name": "body",
20669
+ "type": "object",
20670
+ "info": ": object",
20671
+ "required": true,
20672
+ "schema": {
20673
+ "type": "object",
20674
+ "definitions": {}
20675
+ }
20676
+ },
20677
+ {
20678
+ "name": "iapMetadata",
20679
+ "type": "object",
20680
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
20681
+ "required": false,
20682
+ "schema": {
20683
+ "title": "iapMetadata",
20684
+ "type": "object"
20685
+ }
20686
+ }
20687
+ ],
20688
+ "output": {
20689
+ "name": "result",
20690
+ "type": "object",
20691
+ "description": "A JSON Object containing status, code and the result",
20692
+ "schema": {
20693
+ "title": "result",
20694
+ "type": "object"
20695
+ }
20696
+ },
20697
+ "roles": [
20698
+ "admin"
20699
+ ],
20700
+ "route": {
20701
+ "verb": "POST",
20702
+ "path": "/putWebApplicationRulesRuleTypeRuleId"
20703
+ },
20704
+ "task": true
20705
+ },
20706
+ {
20707
+ "name": "deleteWebApplicationRulesRuleTypeRuleId",
20708
+ "summary": "Deletes a Cloud App Control policy rule.",
20709
+ "description": "Deletes a Cloud App Control policy rule.",
20710
+ "input": [
20711
+ {
20712
+ "name": "ruleType",
20713
+ "type": "string",
20714
+ "info": "The rule type selected from the available options. Available values : [ \"SOCIAL_NETWORKING\", \"STREAMING_MEDIA\", \"WEBMAIL\", \"INSTANT_MESSAGING\", \"BUSINESS_PRODU...(description truncated): string",
20715
+ "required": true,
20716
+ "schema": {
20717
+ "title": "ruleType",
20718
+ "type": "string"
20719
+ }
20720
+ },
20721
+ {
20722
+ "name": "ruleId",
20723
+ "type": "number",
20724
+ "info": "The ID of the Cloud App Control policy rule.: 123",
20725
+ "required": true,
20726
+ "schema": {
20727
+ "title": "ruleId",
20728
+ "type": "number"
20729
+ }
20730
+ },
20731
+ {
20732
+ "name": "iapMetadata",
20733
+ "type": "object",
20734
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
20735
+ "required": false,
20736
+ "schema": {
20737
+ "title": "iapMetadata",
20738
+ "type": "object"
20739
+ }
20740
+ }
20741
+ ],
20742
+ "output": {
20743
+ "name": "result",
20744
+ "type": "object",
20745
+ "description": "A JSON Object containing status, code and the result",
20746
+ "schema": {
20747
+ "title": "result",
20748
+ "type": "object"
20749
+ }
20750
+ },
20751
+ "roles": [
20752
+ "admin"
20753
+ ],
20754
+ "route": {
20755
+ "verb": "POST",
20756
+ "path": "/deleteWebApplicationRulesRuleTypeRuleId"
20757
+ },
20758
+ "task": true
20759
+ },
20760
+ {
20761
+ "name": "postForwardingRules",
20762
+ "summary": "Adds a new forwarding rule. To learn more, see Configuring Forwarding Policy.",
20763
+ "description": "Adds a new forwarding rule. To learn more, see Configuring Forwarding Policy.",
20764
+ "input": [
20765
+ {
20766
+ "name": "body",
20767
+ "type": "object",
20768
+ "info": ": object",
20769
+ "required": true,
20770
+ "schema": {
20771
+ "type": "object",
20772
+ "definitions": {}
20773
+ }
20774
+ },
20775
+ {
20776
+ "name": "iapMetadata",
20777
+ "type": "object",
20778
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
20779
+ "required": false,
20780
+ "schema": {
20781
+ "title": "iapMetadata",
20782
+ "type": "object"
20783
+ }
20784
+ }
20785
+ ],
20786
+ "output": {
20787
+ "name": "result",
20788
+ "type": "object",
20789
+ "description": "A JSON Object containing status, code and the result",
20790
+ "schema": {
20791
+ "title": "result",
20792
+ "type": "object"
20793
+ }
20794
+ },
20795
+ "roles": [
20796
+ "admin"
20797
+ ],
20798
+ "route": {
20799
+ "verb": "POST",
20800
+ "path": "/postForwardingRules"
20801
+ },
20802
+ "task": true
20803
+ },
20804
+ {
20805
+ "name": "getForwardingRulesRuleId",
20806
+ "summary": "Gets information for a forwarding rule using the specified ID",
20807
+ "description": "Gets information for a forwarding rule using the specified ID",
20808
+ "input": [
20809
+ {
20810
+ "name": "ruleId",
20811
+ "type": "number",
20812
+ "info": "The ID of the forwarding rule: 123",
20813
+ "required": true,
20814
+ "schema": {
20815
+ "title": "ruleId",
20816
+ "type": "number"
20817
+ }
20818
+ },
20819
+ {
20820
+ "name": "iapMetadata",
20821
+ "type": "object",
20822
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
20823
+ "required": false,
20824
+ "schema": {
20825
+ "title": "iapMetadata",
20826
+ "type": "object"
20827
+ }
20828
+ }
20829
+ ],
20830
+ "output": {
20831
+ "name": "result",
20832
+ "type": "object",
20833
+ "description": "A JSON Object containing status, code and the result",
20834
+ "schema": {
20835
+ "title": "result",
20836
+ "type": "object"
20837
+ }
20838
+ },
20839
+ "roles": [
20840
+ "admin"
20841
+ ],
20842
+ "route": {
20843
+ "verb": "POST",
20844
+ "path": "/getForwardingRulesRuleId"
20845
+ },
20846
+ "task": true
20847
+ },
20848
+ {
20849
+ "name": "putForwardingRulesRuleId",
20850
+ "summary": "Updates information for a forwarding rule using the specified ID",
20851
+ "description": "Updates information for a forwarding rule using the specified ID",
20852
+ "input": [
20853
+ {
20854
+ "name": "ruleId",
20855
+ "type": "number",
20856
+ "info": "The ID of the forwarding rule: 123",
20857
+ "required": true,
20858
+ "schema": {
20859
+ "title": "ruleId",
20860
+ "type": "number"
20861
+ }
20862
+ },
20863
+ {
20864
+ "name": "body",
20865
+ "type": "object",
20866
+ "info": ": object",
20867
+ "required": true,
20868
+ "schema": {
20869
+ "type": "object",
20870
+ "definitions": {}
20871
+ }
20872
+ },
20873
+ {
20874
+ "name": "iapMetadata",
20875
+ "type": "object",
20876
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
20877
+ "required": false,
20878
+ "schema": {
20879
+ "title": "iapMetadata",
20880
+ "type": "object"
20881
+ }
20882
+ }
20883
+ ],
20884
+ "output": {
20885
+ "name": "result",
20886
+ "type": "object",
20887
+ "description": "A JSON Object containing status, code and the result",
20888
+ "schema": {
20889
+ "title": "result",
20890
+ "type": "object"
20891
+ }
20892
+ },
20893
+ "roles": [
20894
+ "admin"
20895
+ ],
20896
+ "route": {
20897
+ "verb": "POST",
20898
+ "path": "/putForwardingRulesRuleId"
20899
+ },
20900
+ "task": true
20901
+ },
20902
+ {
20903
+ "name": "deleteForwardingRulesRuleId",
20904
+ "summary": "Deletes a forwarding rule using the specified ID",
20905
+ "description": "Deletes a forwarding rule using the specified ID",
20906
+ "input": [
20907
+ {
20908
+ "name": "ruleId",
20909
+ "type": "number",
20910
+ "info": "The ID of the forwarding rule: 123",
20911
+ "required": true,
20912
+ "schema": {
20913
+ "title": "ruleId",
20914
+ "type": "number"
20915
+ }
20916
+ },
20917
+ {
20918
+ "name": "iapMetadata",
20919
+ "type": "object",
20920
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
20921
+ "required": false,
20922
+ "schema": {
20923
+ "title": "iapMetadata",
20924
+ "type": "object"
20925
+ }
20926
+ }
20927
+ ],
20928
+ "output": {
20929
+ "name": "result",
20930
+ "type": "object",
20931
+ "description": "A JSON Object containing status, code and the result",
20932
+ "schema": {
20933
+ "title": "result",
20934
+ "type": "object"
20935
+ }
20936
+ },
20937
+ "roles": [
20938
+ "admin"
20939
+ ],
20940
+ "route": {
20941
+ "verb": "POST",
20942
+ "path": "/deleteForwardingRulesRuleId"
20943
+ },
20944
+ "task": true
20945
+ },
20946
+ {
20947
+ "name": "postZpaGateways",
20948
+ "summary": "Adds a new custom ZPA gateway. The ZPA gateway can be used in a forwarding control policy to forwar",
20949
+ "description": "Adds a new custom ZPA gateway. The ZPA gateway can be used in a forwarding control policy to forward traffic to ZPA for Source IP Anchoring. To learn more, see Configuring ZPA Gateway.",
20950
+ "input": [
20951
+ {
20952
+ "name": "body",
20953
+ "type": "object",
20954
+ "info": ": object",
20955
+ "required": true,
20956
+ "schema": {
20957
+ "type": "object",
20958
+ "definitions": {}
20959
+ }
20960
+ },
20961
+ {
20962
+ "name": "iapMetadata",
20963
+ "type": "object",
20964
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
20965
+ "required": false,
20966
+ "schema": {
20967
+ "title": "iapMetadata",
20968
+ "type": "object"
20969
+ }
20970
+ }
20971
+ ],
20972
+ "output": {
20973
+ "name": "result",
20974
+ "type": "object",
20975
+ "description": "A JSON Object containing status, code and the result",
20976
+ "schema": {
20977
+ "title": "result",
20978
+ "type": "object"
20979
+ }
20980
+ },
20981
+ "roles": [
20982
+ "admin"
20983
+ ],
20984
+ "route": {
20985
+ "verb": "POST",
20986
+ "path": "/postZpaGateways"
20987
+ },
20988
+ "task": true
20989
+ },
20990
+ {
20991
+ "name": "getZpaGatewaysGatewayId",
20992
+ "summary": "Gets information for a ZPA gateway using the specified ID",
20993
+ "description": "Gets information for a ZPA gateway using the specified ID",
20994
+ "input": [
20995
+ {
20996
+ "name": "gatewayId",
20997
+ "type": "number",
20998
+ "info": "The ID of the ZPA gateway: 123",
20999
+ "required": true,
21000
+ "schema": {
21001
+ "title": "gatewayId",
21002
+ "type": "number"
21003
+ }
21004
+ },
21005
+ {
21006
+ "name": "iapMetadata",
21007
+ "type": "object",
21008
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21009
+ "required": false,
21010
+ "schema": {
21011
+ "title": "iapMetadata",
21012
+ "type": "object"
21013
+ }
21014
+ }
21015
+ ],
21016
+ "output": {
21017
+ "name": "result",
21018
+ "type": "object",
21019
+ "description": "A JSON Object containing status, code and the result",
21020
+ "schema": {
21021
+ "title": "result",
21022
+ "type": "object"
21023
+ }
21024
+ },
21025
+ "roles": [
21026
+ "admin"
21027
+ ],
21028
+ "route": {
21029
+ "verb": "POST",
21030
+ "path": "/getZpaGatewaysGatewayId"
21031
+ },
21032
+ "task": true
21033
+ },
21034
+ {
21035
+ "name": "putZpaGatewaysGatewayId",
21036
+ "summary": "Updates information for a ZPA gateway using the specified ID",
21037
+ "description": "Updates information for a ZPA gateway using the specified ID",
21038
+ "input": [
21039
+ {
21040
+ "name": "gatewayId",
21041
+ "type": "number",
21042
+ "info": "The ID of the ZPA gateway: 123",
21043
+ "required": true,
21044
+ "schema": {
21045
+ "title": "gatewayId",
21046
+ "type": "number"
21047
+ }
21048
+ },
21049
+ {
21050
+ "name": "body",
21051
+ "type": "object",
21052
+ "info": ": object",
21053
+ "required": true,
21054
+ "schema": {
21055
+ "type": "object",
21056
+ "definitions": {}
21057
+ }
21058
+ },
21059
+ {
21060
+ "name": "iapMetadata",
21061
+ "type": "object",
21062
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21063
+ "required": false,
21064
+ "schema": {
21065
+ "title": "iapMetadata",
21066
+ "type": "object"
21067
+ }
21068
+ }
21069
+ ],
21070
+ "output": {
21071
+ "name": "result",
21072
+ "type": "object",
21073
+ "description": "A JSON Object containing status, code and the result",
21074
+ "schema": {
21075
+ "title": "result",
21076
+ "type": "object"
21077
+ }
21078
+ },
21079
+ "roles": [
21080
+ "admin"
21081
+ ],
21082
+ "route": {
21083
+ "verb": "POST",
21084
+ "path": "/putZpaGatewaysGatewayId"
21085
+ },
21086
+ "task": true
21087
+ },
21088
+ {
21089
+ "name": "deleteZpaGatewaysGatewayId",
21090
+ "summary": "Deletes a ZPA gateway using the specified ID",
21091
+ "description": "Deletes a ZPA gateway using the specified ID",
21092
+ "input": [
21093
+ {
21094
+ "name": "gatewayId",
21095
+ "type": "number",
21096
+ "info": "The ID of the ZPA gateway: 123",
21097
+ "required": true,
21098
+ "schema": {
21099
+ "title": "gatewayId",
21100
+ "type": "number"
21101
+ }
21102
+ },
21103
+ {
21104
+ "name": "iapMetadata",
21105
+ "type": "object",
21106
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21107
+ "required": false,
21108
+ "schema": {
21109
+ "title": "iapMetadata",
21110
+ "type": "object"
21111
+ }
21112
+ }
21113
+ ],
21114
+ "output": {
21115
+ "name": "result",
21116
+ "type": "object",
21117
+ "description": "A JSON Object containing status, code and the result",
21118
+ "schema": {
21119
+ "title": "result",
21120
+ "type": "object"
21121
+ }
21122
+ },
21123
+ "roles": [
21124
+ "admin"
21125
+ ],
21126
+ "route": {
21127
+ "verb": "POST",
21128
+ "path": "/deleteZpaGatewaysGatewayId"
21129
+ },
21130
+ "task": true
21131
+ },
21132
+ {
21133
+ "name": "getProxyGateways",
21134
+ "summary": "Retrieves the proxy gateway information. To learn more, see About Gateways for Proxies.",
21135
+ "description": "Retrieves the proxy gateway information. To learn more, see About Gateways for Proxies.",
21136
+ "input": [
21137
+ {
21138
+ "name": "iapMetadata",
21139
+ "type": "object",
21140
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21141
+ "required": false,
21142
+ "schema": {
21143
+ "title": "iapMetadata",
21144
+ "type": "object"
21145
+ }
21146
+ }
21147
+ ],
21148
+ "output": {
21149
+ "name": "result",
21150
+ "type": "object",
21151
+ "description": "A JSON Object containing status, code and the result",
21152
+ "schema": {
21153
+ "title": "result",
21154
+ "type": "object"
21155
+ }
21156
+ },
21157
+ "roles": [
21158
+ "admin"
21159
+ ],
21160
+ "route": {
21161
+ "verb": "GET",
21162
+ "path": "/getProxyGateways"
21163
+ },
21164
+ "task": true
21165
+ },
21166
+ {
21167
+ "name": "getProxyGatewaysLite",
21168
+ "summary": "Retrieves the name and ID of the proxy. To learn more, see About Gateways for Proxies.",
21169
+ "description": "Retrieves the name and ID of the proxy. To learn more, see About Gateways for Proxies.",
21170
+ "input": [
21171
+ {
21172
+ "name": "iapMetadata",
21173
+ "type": "object",
21174
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21175
+ "required": false,
21176
+ "schema": {
21177
+ "title": "iapMetadata",
21178
+ "type": "object"
21179
+ }
21180
+ }
21181
+ ],
21182
+ "output": {
21183
+ "name": "result",
21184
+ "type": "object",
21185
+ "description": "A JSON Object containing status, code and the result",
21186
+ "schema": {
21187
+ "title": "result",
21188
+ "type": "object"
21189
+ }
21190
+ },
21191
+ "roles": [
21192
+ "admin"
21193
+ ],
21194
+ "route": {
21195
+ "verb": "GET",
21196
+ "path": "/getProxyGatewaysLite"
21197
+ },
21198
+ "task": true
21199
+ },
21200
+ {
21201
+ "name": "getAtpMalwareInspection",
21202
+ "summary": "Retrieves the traffic inspection configurations of Malware Protection policy",
21203
+ "description": "Retrieves the traffic inspection configurations of Malware Protection policy",
21204
+ "input": [
21205
+ {
21206
+ "name": "iapMetadata",
21207
+ "type": "object",
21208
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21209
+ "required": false,
21210
+ "schema": {
21211
+ "title": "iapMetadata",
21212
+ "type": "object"
21213
+ }
21214
+ }
21215
+ ],
21216
+ "output": {
21217
+ "name": "result",
21218
+ "type": "object",
21219
+ "description": "A JSON Object containing status, code and the result",
21220
+ "schema": {
21221
+ "title": "result",
21222
+ "type": "object"
21223
+ }
21224
+ },
21225
+ "roles": [
21226
+ "admin"
21227
+ ],
21228
+ "route": {
21229
+ "verb": "GET",
21230
+ "path": "/getAtpMalwareInspection"
21231
+ },
21232
+ "task": true
21233
+ },
21234
+ {
21235
+ "name": "putAtpMalwareInspection",
21236
+ "summary": "Updates the traffic inspection configurations of Malware Protection policy",
21237
+ "description": "Updates the traffic inspection configurations of Malware Protection policy",
21238
+ "input": [
21239
+ {
21240
+ "name": "body",
21241
+ "type": "object",
21242
+ "info": ": object",
21243
+ "required": true,
21244
+ "schema": {
21245
+ "type": "object",
21246
+ "definitions": {}
21247
+ }
21248
+ },
21249
+ {
21250
+ "name": "iapMetadata",
21251
+ "type": "object",
21252
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21253
+ "required": false,
21254
+ "schema": {
21255
+ "title": "iapMetadata",
21256
+ "type": "object"
21257
+ }
21258
+ }
21259
+ ],
21260
+ "output": {
21261
+ "name": "result",
21262
+ "type": "object",
21263
+ "description": "A JSON Object containing status, code and the result",
21264
+ "schema": {
21265
+ "title": "result",
21266
+ "type": "object"
21267
+ }
21268
+ },
21269
+ "roles": [
21270
+ "admin"
21271
+ ],
21272
+ "route": {
21273
+ "verb": "POST",
21274
+ "path": "/putAtpMalwareInspection"
21275
+ },
21276
+ "task": true
21277
+ },
21278
+ {
21279
+ "name": "getAtpMalwareProtocols",
21280
+ "summary": "Retrieves the protocol inspection configurations of Malware Protection policy",
21281
+ "description": "Retrieves the protocol inspection configurations of Malware Protection policy",
21282
+ "input": [
21283
+ {
21284
+ "name": "iapMetadata",
21285
+ "type": "object",
21286
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21287
+ "required": false,
21288
+ "schema": {
21289
+ "title": "iapMetadata",
21290
+ "type": "object"
21291
+ }
21292
+ }
21293
+ ],
21294
+ "output": {
21295
+ "name": "result",
21296
+ "type": "object",
21297
+ "description": "A JSON Object containing status, code and the result",
21298
+ "schema": {
21299
+ "title": "result",
21300
+ "type": "object"
21301
+ }
21302
+ },
21303
+ "roles": [
21304
+ "admin"
21305
+ ],
21306
+ "route": {
21307
+ "verb": "GET",
21308
+ "path": "/getAtpMalwareProtocols"
21309
+ },
21310
+ "task": true
21311
+ },
21312
+ {
21313
+ "name": "putAtpMalwareProtocols",
21314
+ "summary": "Updates the protocol inspection configurations of Malware Protection policy",
21315
+ "description": "Updates the protocol inspection configurations of Malware Protection policy",
21316
+ "input": [
21317
+ {
21318
+ "name": "body",
21319
+ "type": "object",
21320
+ "info": ": object",
21321
+ "required": true,
21322
+ "schema": {
21323
+ "type": "object",
21324
+ "definitions": {}
21325
+ }
21326
+ },
21327
+ {
21328
+ "name": "iapMetadata",
21329
+ "type": "object",
21330
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21331
+ "required": false,
21332
+ "schema": {
21333
+ "title": "iapMetadata",
21334
+ "type": "object"
21335
+ }
21336
+ }
21337
+ ],
21338
+ "output": {
21339
+ "name": "result",
21340
+ "type": "object",
21341
+ "description": "A JSON Object containing status, code and the result",
21342
+ "schema": {
21343
+ "title": "result",
21344
+ "type": "object"
21345
+ }
21346
+ },
21347
+ "roles": [
21348
+ "admin"
21349
+ ],
21350
+ "route": {
21351
+ "verb": "POST",
21352
+ "path": "/putAtpMalwareProtocols"
21353
+ },
21354
+ "task": true
21355
+ },
21356
+ {
21357
+ "name": "getMalwareSettings",
21358
+ "summary": "Retrieves the malware protection policy configuration details",
21359
+ "description": "Retrieves the malware protection policy configuration details",
21360
+ "input": [
21361
+ {
21362
+ "name": "iapMetadata",
21363
+ "type": "object",
21364
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21365
+ "required": false,
21366
+ "schema": {
21367
+ "title": "iapMetadata",
21368
+ "type": "object"
21369
+ }
21370
+ }
21371
+ ],
21372
+ "output": {
21373
+ "name": "result",
21374
+ "type": "object",
21375
+ "description": "A JSON Object containing status, code and the result",
21376
+ "schema": {
21377
+ "title": "result",
21378
+ "type": "object"
21379
+ }
21380
+ },
21381
+ "roles": [
21382
+ "admin"
21383
+ ],
21384
+ "route": {
21385
+ "verb": "GET",
21386
+ "path": "/getMalwareSettings"
21387
+ },
21388
+ "task": true
21389
+ },
21390
+ {
21391
+ "name": "putMalwareSettings",
21392
+ "summary": "Updates the malware protection policy configuration details",
21393
+ "description": "Updates the malware protection policy configuration details",
21394
+ "input": [
21395
+ {
21396
+ "name": "body",
21397
+ "type": "object",
21398
+ "info": ": object",
21399
+ "required": true,
21400
+ "schema": {
21401
+ "type": "object",
21402
+ "definitions": {}
21403
+ }
21404
+ },
21405
+ {
21406
+ "name": "iapMetadata",
21407
+ "type": "object",
21408
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21409
+ "required": false,
21410
+ "schema": {
21411
+ "title": "iapMetadata",
21412
+ "type": "object"
21413
+ }
21414
+ }
21415
+ ],
21416
+ "output": {
21417
+ "name": "result",
21418
+ "type": "object",
21419
+ "description": "A JSON Object containing status, code and the result",
21420
+ "schema": {
21421
+ "title": "result",
21422
+ "type": "object"
21423
+ }
21424
+ },
21425
+ "roles": [
21426
+ "admin"
21427
+ ],
21428
+ "route": {
21429
+ "verb": "POST",
21430
+ "path": "/putMalwareSettings"
21431
+ },
21432
+ "task": true
21433
+ },
21434
+ {
21435
+ "name": "getMalwarePolicy",
21436
+ "summary": "Retrieves information about the security exceptions configured for the Malware Protection policy",
21437
+ "description": "Retrieves information about the security exceptions configured for the Malware Protection policy",
21438
+ "input": [
21439
+ {
21440
+ "name": "iapMetadata",
21441
+ "type": "object",
21442
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21443
+ "required": false,
21444
+ "schema": {
21445
+ "title": "iapMetadata",
21446
+ "type": "object"
21447
+ }
21448
+ }
21449
+ ],
21450
+ "output": {
21451
+ "name": "result",
21452
+ "type": "object",
21453
+ "description": "A JSON Object containing status, code and the result",
21454
+ "schema": {
21455
+ "title": "result",
21456
+ "type": "object"
21457
+ }
21458
+ },
21459
+ "roles": [
21460
+ "admin"
21461
+ ],
21462
+ "route": {
21463
+ "verb": "GET",
21464
+ "path": "/getMalwarePolicy"
21465
+ },
21466
+ "task": true
21467
+ },
21468
+ {
21469
+ "name": "putMalwarePolicy",
21470
+ "summary": "Updates security exceptions for the Malware Protection policy",
21471
+ "description": "Updates security exceptions for the Malware Protection policy",
21472
+ "input": [
21473
+ {
21474
+ "name": "iapMetadata",
21475
+ "type": "object",
21476
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21477
+ "required": false,
21478
+ "schema": {
21479
+ "title": "iapMetadata",
21480
+ "type": "object"
21481
+ }
21482
+ }
21483
+ ],
21484
+ "output": {
21485
+ "name": "result",
21486
+ "type": "object",
21487
+ "description": "A JSON Object containing status, code and the result",
21488
+ "schema": {
21489
+ "title": "result",
21490
+ "type": "object"
21491
+ }
21492
+ },
21493
+ "roles": [
21494
+ "admin"
21495
+ ],
21496
+ "route": {
21497
+ "verb": "GET",
21498
+ "path": "/putMalwarePolicy"
21499
+ },
21500
+ "task": true
21501
+ },
21502
+ {
21503
+ "name": "getAdvancedThreatSettings",
21504
+ "summary": "Retrieves the advanced threat configuration settings in the ZIA Admin Portal",
21505
+ "description": "Retrieves the advanced threat configuration settings in the ZIA Admin Portal",
21506
+ "input": [
21507
+ {
21508
+ "name": "iapMetadata",
21509
+ "type": "object",
21510
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21511
+ "required": false,
21512
+ "schema": {
21513
+ "title": "iapMetadata",
21514
+ "type": "object"
21515
+ }
21516
+ }
21517
+ ],
21518
+ "output": {
21519
+ "name": "result",
21520
+ "type": "object",
21521
+ "description": "A JSON Object containing status, code and the result",
21522
+ "schema": {
21523
+ "title": "result",
21524
+ "type": "object"
21525
+ }
21526
+ },
21527
+ "roles": [
21528
+ "admin"
21529
+ ],
21530
+ "route": {
21531
+ "verb": "GET",
21532
+ "path": "/getAdvancedThreatSettings"
21533
+ },
21534
+ "task": true
21535
+ },
21536
+ {
21537
+ "name": "putAdvancedThreatSettings",
21538
+ "summary": "Updates the advanced threat configuration settings.",
21539
+ "description": "Updates the advanced threat configuration settings.",
21540
+ "input": [
21541
+ {
21542
+ "name": "body",
21543
+ "type": "object",
21544
+ "info": ": object",
21545
+ "required": true,
21546
+ "schema": {
21547
+ "type": "object",
21548
+ "definitions": {}
21549
+ }
21550
+ },
21551
+ {
21552
+ "name": "iapMetadata",
21553
+ "type": "object",
21554
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21555
+ "required": false,
21556
+ "schema": {
21557
+ "title": "iapMetadata",
21558
+ "type": "object"
21559
+ }
21560
+ }
21561
+ ],
21562
+ "output": {
21563
+ "name": "result",
21564
+ "type": "object",
21565
+ "description": "A JSON Object containing status, code and the result",
21566
+ "schema": {
21567
+ "title": "result",
21568
+ "type": "object"
21569
+ }
21570
+ },
21571
+ "roles": [
21572
+ "admin"
21573
+ ],
21574
+ "route": {
21575
+ "verb": "POST",
21576
+ "path": "/putAdvancedThreatSettings"
21577
+ },
21578
+ "task": true
21579
+ },
21580
+ {
21581
+ "name": "getMaliciousUrls",
21582
+ "summary": "Retrieves the malicious URLs added to the denylist in the Advanced Threat Protection (ATP) policy",
21583
+ "description": "Retrieves the malicious URLs added to the denylist in the Advanced Threat Protection (ATP) policy",
21584
+ "input": [
21585
+ {
21586
+ "name": "iapMetadata",
21587
+ "type": "object",
21588
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21589
+ "required": false,
21590
+ "schema": {
21591
+ "title": "iapMetadata",
21592
+ "type": "object"
21593
+ }
21594
+ }
21595
+ ],
21596
+ "output": {
21597
+ "name": "result",
21598
+ "type": "object",
21599
+ "description": "A JSON Object containing status, code and the result",
21600
+ "schema": {
21601
+ "title": "result",
21602
+ "type": "object"
21603
+ }
21604
+ },
21605
+ "roles": [
21606
+ "admin"
21607
+ ],
21608
+ "route": {
21609
+ "verb": "GET",
21610
+ "path": "/getMaliciousUrls"
21611
+ },
21612
+ "task": true
21613
+ },
21614
+ {
21615
+ "name": "putMaliciousUrls",
21616
+ "summary": "Updates the malicious URLs added to the denylist in ATP policy",
21617
+ "description": "Updates the malicious URLs added to the denylist in ATP policy",
21618
+ "input": [
21619
+ {
21620
+ "name": "body",
21621
+ "type": "object",
21622
+ "info": ": object",
21623
+ "required": true,
21624
+ "schema": {
21625
+ "type": "object",
21626
+ "definitions": {}
21627
+ }
21628
+ },
21629
+ {
21630
+ "name": "iapMetadata",
21631
+ "type": "object",
21632
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21633
+ "required": false,
21634
+ "schema": {
21635
+ "title": "iapMetadata",
21636
+ "type": "object"
21637
+ }
21638
+ }
21639
+ ],
21640
+ "output": {
21641
+ "name": "result",
21642
+ "type": "object",
21643
+ "description": "A JSON Object containing status, code and the result",
21644
+ "schema": {
21645
+ "title": "result",
21646
+ "type": "object"
21647
+ }
21648
+ },
21649
+ "roles": [
21650
+ "admin"
21651
+ ],
21652
+ "route": {
21653
+ "verb": "POST",
21654
+ "path": "/putMaliciousUrls"
21655
+ },
21656
+ "task": true
21657
+ },
21658
+ {
21659
+ "name": "getSecurityExceptions",
21660
+ "summary": "Retrieves information about the security exceptions configured for the ATP policy",
21661
+ "description": "Retrieves information about the security exceptions configured for the ATP policy",
21662
+ "input": [
21663
+ {
21664
+ "name": "iapMetadata",
21665
+ "type": "object",
21666
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21667
+ "required": false,
21668
+ "schema": {
21669
+ "title": "iapMetadata",
21670
+ "type": "object"
21671
+ }
21672
+ }
21673
+ ],
21674
+ "output": {
21675
+ "name": "result",
21676
+ "type": "object",
21677
+ "description": "A JSON Object containing status, code and the result",
21678
+ "schema": {
21679
+ "title": "result",
21680
+ "type": "object"
21681
+ }
21682
+ },
21683
+ "roles": [
21684
+ "admin"
21685
+ ],
21686
+ "route": {
21687
+ "verb": "GET",
21688
+ "path": "/getSecurityExceptions"
21689
+ },
21690
+ "task": true
21691
+ },
21692
+ {
21693
+ "name": "putSecurityExceptions",
21694
+ "summary": "Updates security exceptions for the ATP policy.",
21695
+ "description": "Updates security exceptions for the ATP policy.",
21696
+ "input": [
21697
+ {
21698
+ "name": "iapMetadata",
21699
+ "type": "object",
21700
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21701
+ "required": false,
21702
+ "schema": {
21703
+ "title": "iapMetadata",
21704
+ "type": "object"
21705
+ }
21706
+ }
21707
+ ],
21708
+ "output": {
21709
+ "name": "result",
21710
+ "type": "object",
21711
+ "description": "A JSON Object containing status, code and the result",
21712
+ "schema": {
21713
+ "title": "result",
21714
+ "type": "object"
21715
+ }
21716
+ },
21717
+ "roles": [
21718
+ "admin"
21719
+ ],
21720
+ "route": {
21721
+ "verb": "GET",
21722
+ "path": "/putSecurityExceptions"
21723
+ },
21724
+ "task": true
21725
+ },
21726
+ {
21727
+ "name": "getfileTypeRules",
21728
+ "summary": "Retrieves all the rules in the File Type Control policy.",
21729
+ "description": "Retrieves all the rules in the File Type Control policy.",
21730
+ "input": [
21731
+ {
21732
+ "name": "iapMetadata",
21733
+ "type": "object",
21734
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21735
+ "required": false,
21736
+ "schema": {
21737
+ "title": "iapMetadata",
21738
+ "type": "object"
21739
+ }
21740
+ }
21741
+ ],
21742
+ "output": {
21743
+ "name": "result",
21744
+ "type": "object",
21745
+ "description": "A JSON Object containing status, code and the result",
21746
+ "schema": {
21747
+ "title": "result",
21748
+ "type": "object"
21749
+ }
21750
+ },
21751
+ "roles": [
21752
+ "admin"
21753
+ ],
21754
+ "route": {
21755
+ "verb": "GET",
21756
+ "path": "/getfileTypeRules"
21757
+ },
21758
+ "task": true
21759
+ },
21760
+ {
21761
+ "name": "postFileTypeRules",
21762
+ "summary": "Adds a new File Type Control policy rule.",
21763
+ "description": "Adds a new File Type Control policy rule.",
21764
+ "input": [
21765
+ {
21766
+ "name": "body",
21767
+ "type": "object",
21768
+ "info": ": object",
21769
+ "required": true,
21770
+ "schema": {
21771
+ "type": "object",
21772
+ "definitions": {}
21773
+ }
21774
+ },
21775
+ {
21776
+ "name": "iapMetadata",
21777
+ "type": "object",
21778
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21779
+ "required": false,
21780
+ "schema": {
21781
+ "title": "iapMetadata",
21782
+ "type": "object"
21783
+ }
21784
+ }
21785
+ ],
21786
+ "output": {
21787
+ "name": "result",
21788
+ "type": "object",
21789
+ "description": "A JSON Object containing status, code and the result",
21790
+ "schema": {
21791
+ "title": "result",
21792
+ "type": "object"
21793
+ }
21794
+ },
21795
+ "roles": [
21796
+ "admin"
21797
+ ],
21798
+ "route": {
21799
+ "verb": "POST",
21800
+ "path": "/postFileTypeRules"
21801
+ },
21802
+ "task": true
21803
+ },
21804
+ {
21805
+ "name": "getLite",
21806
+ "summary": "Retrieves all the rules in the File Type Control policy.",
21807
+ "description": "Retrieves all the rules in the File Type Control policy.",
21808
+ "input": [
21809
+ {
21810
+ "name": "iapMetadata",
21811
+ "type": "object",
21812
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21813
+ "required": false,
21814
+ "schema": {
21815
+ "title": "iapMetadata",
21816
+ "type": "object"
21817
+ }
21818
+ }
21819
+ ],
21820
+ "output": {
21821
+ "name": "result",
21822
+ "type": "object",
21823
+ "description": "A JSON Object containing status, code and the result",
21824
+ "schema": {
21825
+ "title": "result",
21826
+ "type": "object"
21827
+ }
21828
+ },
21829
+ "roles": [
21830
+ "admin"
21831
+ ],
21832
+ "route": {
21833
+ "verb": "GET",
21834
+ "path": "/getLite"
21835
+ },
21836
+ "task": true
21837
+ },
21838
+ {
21839
+ "name": "getFileTypeRulesRuleId",
21840
+ "summary": "Retrieves the File Type Control policy rule information for the specified ID.",
21841
+ "description": "Retrieves the File Type Control policy rule information for the specified ID.",
21842
+ "input": [
21843
+ {
21844
+ "name": "ruleId",
21845
+ "type": "number",
21846
+ "info": "Unique identifier for the policy rule: 123",
21847
+ "required": true,
21848
+ "schema": {
21849
+ "title": "ruleId",
21850
+ "type": "number"
21851
+ }
21852
+ },
21853
+ {
21854
+ "name": "iapMetadata",
21855
+ "type": "object",
21856
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21857
+ "required": false,
21858
+ "schema": {
21859
+ "title": "iapMetadata",
21860
+ "type": "object"
21861
+ }
21862
+ }
21863
+ ],
21864
+ "output": {
21865
+ "name": "result",
21866
+ "type": "object",
21867
+ "description": "A JSON Object containing status, code and the result",
21868
+ "schema": {
21869
+ "title": "result",
21870
+ "type": "object"
21871
+ }
21872
+ },
21873
+ "roles": [
21874
+ "admin"
21875
+ ],
21876
+ "route": {
21877
+ "verb": "POST",
21878
+ "path": "/getFileTypeRulesRuleId"
21879
+ },
21880
+ "task": true
21881
+ },
21882
+ {
21883
+ "name": "putFileTypeRulesRuleId",
21884
+ "summary": "Updates the File Type Control policy rule information for the specified ID.",
21885
+ "description": "Updates the File Type Control policy rule information for the specified ID.",
21886
+ "input": [
21887
+ {
21888
+ "name": "ruleId",
21889
+ "type": "number",
21890
+ "info": "Unique identifier for the policy rule: 123",
21891
+ "required": true,
21892
+ "schema": {
21893
+ "title": "ruleId",
21894
+ "type": "number"
21895
+ }
21896
+ },
21897
+ {
21898
+ "name": "body",
21899
+ "type": "object",
21900
+ "info": ": object",
21901
+ "required": true,
21902
+ "schema": {
21903
+ "type": "object",
21904
+ "definitions": {}
21905
+ }
21906
+ },
21907
+ {
21908
+ "name": "iapMetadata",
21909
+ "type": "object",
21910
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21911
+ "required": false,
21912
+ "schema": {
21913
+ "title": "iapMetadata",
21914
+ "type": "object"
21915
+ }
21916
+ }
21917
+ ],
21918
+ "output": {
21919
+ "name": "result",
21920
+ "type": "object",
21921
+ "description": "A JSON Object containing status, code and the result",
21922
+ "schema": {
21923
+ "title": "result",
21924
+ "type": "object"
21925
+ }
21926
+ },
21927
+ "roles": [
21928
+ "admin"
21929
+ ],
21930
+ "route": {
21931
+ "verb": "POST",
21932
+ "path": "/putFileTypeRulesRuleId"
21933
+ },
21934
+ "task": true
21935
+ },
21936
+ {
21937
+ "name": "deleteFileTypeRulesRuleId",
21938
+ "summary": "Deletes a File Type Control policy rule information for the specified ID.",
21939
+ "description": "Deletes a File Type Control policy rule information for the specified ID.",
21940
+ "input": [
21941
+ {
21942
+ "name": "ruleId",
21943
+ "type": "number",
21944
+ "info": "Unique identifier for the policy rule: 123",
21945
+ "required": true,
21946
+ "schema": {
21947
+ "title": "ruleId",
21948
+ "type": "number"
21949
+ }
21950
+ },
21951
+ {
21952
+ "name": "iapMetadata",
21953
+ "type": "object",
21954
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21955
+ "required": false,
21956
+ "schema": {
21957
+ "title": "iapMetadata",
21958
+ "type": "object"
21959
+ }
21960
+ }
21961
+ ],
21962
+ "output": {
21963
+ "name": "result",
21964
+ "type": "object",
21965
+ "description": "A JSON Object containing status, code and the result",
21966
+ "schema": {
21967
+ "title": "result",
21968
+ "type": "object"
21969
+ }
21970
+ },
21971
+ "roles": [
21972
+ "admin"
21973
+ ],
21974
+ "route": {
21975
+ "verb": "POST",
21976
+ "path": "/deleteFileTypeRulesRuleId"
21977
+ },
21978
+ "task": true
21979
+ },
21980
+ {
21981
+ "name": "getSandboxRules",
21982
+ "summary": "Retrieves the list of all Sandbox policy rules configured in the ZIA Admin Portal.",
21983
+ "description": "Retrieves the list of all Sandbox policy rules configured in the ZIA Admin Portal.",
21984
+ "input": [
21985
+ {
21986
+ "name": "iapMetadata",
21987
+ "type": "object",
21988
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
21989
+ "required": false,
21990
+ "schema": {
21991
+ "title": "iapMetadata",
21992
+ "type": "object"
21993
+ }
21994
+ }
21995
+ ],
21996
+ "output": {
21997
+ "name": "result",
21998
+ "type": "object",
21999
+ "description": "A JSON Object containing status, code and the result",
22000
+ "schema": {
22001
+ "title": "result",
22002
+ "type": "object"
22003
+ }
22004
+ },
22005
+ "roles": [
22006
+ "admin"
22007
+ ],
22008
+ "route": {
22009
+ "verb": "GET",
22010
+ "path": "/getSandboxRules"
22011
+ },
22012
+ "task": true
22013
+ },
22014
+ {
22015
+ "name": "postSandboxRules",
22016
+ "summary": "Adds a Sandbox policy rule.",
22017
+ "description": "Adds a Sandbox policy rule.",
22018
+ "input": [
22019
+ {
22020
+ "name": "body",
22021
+ "type": "object",
22022
+ "info": ": object",
22023
+ "required": true,
22024
+ "schema": {
22025
+ "type": "object",
22026
+ "definitions": {}
22027
+ }
22028
+ },
22029
+ {
22030
+ "name": "iapMetadata",
22031
+ "type": "object",
22032
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22033
+ "required": false,
22034
+ "schema": {
22035
+ "title": "iapMetadata",
22036
+ "type": "object"
22037
+ }
22038
+ }
22039
+ ],
22040
+ "output": {
22041
+ "name": "result",
22042
+ "type": "object",
22043
+ "description": "A JSON Object containing status, code and the result",
22044
+ "schema": {
22045
+ "title": "result",
22046
+ "type": "object"
22047
+ }
22048
+ },
22049
+ "roles": [
22050
+ "admin"
22051
+ ],
22052
+ "route": {
22053
+ "verb": "POST",
22054
+ "path": "/postSandboxRules"
22055
+ },
22056
+ "task": true
22057
+ },
22058
+ {
22059
+ "name": "getSandboxRulesRuleId",
22060
+ "summary": "Retrieves the Sandbox policy rule information based on the specified ID",
22061
+ "description": "Retrieves the Sandbox policy rule information based on the specified ID",
22062
+ "input": [
22063
+ {
22064
+ "name": "ruleId",
22065
+ "type": "number",
22066
+ "info": "Unique identifier of the Sandbox policy rule: 123",
22067
+ "required": true,
22068
+ "schema": {
22069
+ "title": "ruleId",
22070
+ "type": "number"
22071
+ }
22072
+ },
22073
+ {
22074
+ "name": "iapMetadata",
22075
+ "type": "object",
22076
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22077
+ "required": false,
22078
+ "schema": {
22079
+ "title": "iapMetadata",
22080
+ "type": "object"
22081
+ }
22082
+ }
22083
+ ],
22084
+ "output": {
22085
+ "name": "result",
22086
+ "type": "object",
22087
+ "description": "A JSON Object containing status, code and the result",
22088
+ "schema": {
22089
+ "title": "result",
22090
+ "type": "object"
22091
+ }
22092
+ },
22093
+ "roles": [
22094
+ "admin"
22095
+ ],
22096
+ "route": {
22097
+ "verb": "POST",
22098
+ "path": "/getSandboxRulesRuleId"
22099
+ },
22100
+ "task": true
22101
+ },
22102
+ {
22103
+ "name": "putSandboxRulesRuleId",
22104
+ "summary": "Updates the Sandbox policy rule configuration for the specified ID",
22105
+ "description": "Updates the Sandbox policy rule configuration for the specified ID",
22106
+ "input": [
22107
+ {
22108
+ "name": "ruleId",
22109
+ "type": "number",
22110
+ "info": "Unique identifier of the Sandbox policy rule: 123",
22111
+ "required": true,
22112
+ "schema": {
22113
+ "title": "ruleId",
22114
+ "type": "number"
22115
+ }
22116
+ },
22117
+ {
22118
+ "name": "body",
22119
+ "type": "object",
22120
+ "info": ": object",
22121
+ "required": true,
22122
+ "schema": {
22123
+ "type": "object",
22124
+ "definitions": {}
22125
+ }
22126
+ },
22127
+ {
22128
+ "name": "iapMetadata",
22129
+ "type": "object",
22130
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22131
+ "required": false,
22132
+ "schema": {
22133
+ "title": "iapMetadata",
22134
+ "type": "object"
22135
+ }
22136
+ }
22137
+ ],
22138
+ "output": {
22139
+ "name": "result",
22140
+ "type": "object",
22141
+ "description": "A JSON Object containing status, code and the result",
22142
+ "schema": {
22143
+ "title": "result",
22144
+ "type": "object"
22145
+ }
22146
+ },
22147
+ "roles": [
22148
+ "admin"
22149
+ ],
22150
+ "route": {
22151
+ "verb": "POST",
22152
+ "path": "/putSandboxRulesRuleId"
22153
+ },
22154
+ "task": true
22155
+ },
22156
+ {
22157
+ "name": "deleteSandboxRulesRuleId",
22158
+ "summary": "Deletes the Sandbox policy rule based on the specified ID",
22159
+ "description": "Deletes the Sandbox policy rule based on the specified ID",
22160
+ "input": [
22161
+ {
22162
+ "name": "ruleId",
22163
+ "type": "number",
22164
+ "info": "Unique identifier of the Sandbox policy rule: 123",
22165
+ "required": true,
22166
+ "schema": {
22167
+ "title": "ruleId",
22168
+ "type": "number"
22169
+ }
22170
+ },
22171
+ {
22172
+ "name": "iapMetadata",
22173
+ "type": "object",
22174
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22175
+ "required": false,
22176
+ "schema": {
22177
+ "title": "iapMetadata",
22178
+ "type": "object"
22179
+ }
22180
+ }
22181
+ ],
22182
+ "output": {
22183
+ "name": "result",
22184
+ "type": "object",
22185
+ "description": "A JSON Object containing status, code and the result",
22186
+ "schema": {
22187
+ "title": "result",
22188
+ "type": "object"
22189
+ }
22190
+ },
22191
+ "roles": [
22192
+ "admin"
22193
+ ],
22194
+ "route": {
22195
+ "verb": "POST",
22196
+ "path": "/deleteSandboxRulesRuleId"
22197
+ },
22198
+ "task": true
22199
+ },
22200
+ {
22201
+ "name": "getBehavioralAnalysisAdvancedSettings",
22202
+ "summary": "Gets the custom list of MD5 file hashes that are blocked by Sandbox",
22203
+ "description": "Gets the custom list of MD5 file hashes that are blocked by Sandbox",
22204
+ "input": [
22205
+ {
22206
+ "name": "iapMetadata",
22207
+ "type": "object",
22208
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22209
+ "required": false,
22210
+ "schema": {
22211
+ "title": "iapMetadata",
22212
+ "type": "object"
22213
+ }
22214
+ }
22215
+ ],
22216
+ "output": {
22217
+ "name": "result",
22218
+ "type": "object",
22219
+ "description": "A JSON Object containing status, code and the result",
22220
+ "schema": {
22221
+ "title": "result",
22222
+ "type": "object"
22223
+ }
22224
+ },
22225
+ "roles": [
22226
+ "admin"
22227
+ ],
22228
+ "route": {
22229
+ "verb": "GET",
22230
+ "path": "/getBehavioralAnalysisAdvancedSettings"
22231
+ },
22232
+ "task": true
22233
+ },
22234
+ {
22235
+ "name": "putBehavioralAnalysisAdvancedSettings",
22236
+ "summary": "Updates the custom list of MD5 file hashes that are blocked by Sandbox. This overwrites a previousl",
22237
+ "description": "Updates the custom list of MD5 file hashes that are blocked by Sandbox. This overwrites a previously generated blocklist. If you need to completely erase the blocklist, submit an empty list. Note: Only the file types that are supported by Sandbox analysis can be blocked using MD5 hashes.",
22238
+ "input": [
22239
+ {
22240
+ "name": "body",
22241
+ "type": "object",
22242
+ "info": ": object",
22243
+ "required": true,
22244
+ "schema": {
22245
+ "type": "object",
22246
+ "definitions": {}
22247
+ }
22248
+ },
22249
+ {
22250
+ "name": "iapMetadata",
22251
+ "type": "object",
22252
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22253
+ "required": false,
22254
+ "schema": {
22255
+ "title": "iapMetadata",
22256
+ "type": "object"
22257
+ }
22258
+ }
22259
+ ],
22260
+ "output": {
22261
+ "name": "result",
22262
+ "type": "object",
22263
+ "description": "A JSON Object containing status, code and the result",
22264
+ "schema": {
22265
+ "title": "result",
22266
+ "type": "object"
22267
+ }
22268
+ },
22269
+ "roles": [
22270
+ "admin"
22271
+ ],
22272
+ "route": {
22273
+ "verb": "POST",
22274
+ "path": "/putBehavioralAnalysisAdvancedSettings"
22275
+ },
22276
+ "task": true
22277
+ },
22278
+ {
22279
+ "name": "getBehavioralAnalysisAdvancedSettingsFileHashCount",
22280
+ "summary": "Gets the used and unused quota for blocking MD5 file hashes with Sandbox",
22281
+ "description": "Gets the used and unused quota for blocking MD5 file hashes with Sandbox",
22282
+ "input": [
22283
+ {
22284
+ "name": "iapMetadata",
22285
+ "type": "object",
22286
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22287
+ "required": false,
22288
+ "schema": {
22289
+ "title": "iapMetadata",
22290
+ "type": "object"
22291
+ }
22292
+ }
22293
+ ],
22294
+ "output": {
22295
+ "name": "result",
22296
+ "type": "object",
22297
+ "description": "A JSON Object containing status, code and the result",
22298
+ "schema": {
22299
+ "title": "result",
22300
+ "type": "object"
22301
+ }
22302
+ },
22303
+ "roles": [
22304
+ "admin"
22305
+ ],
22306
+ "route": {
22307
+ "verb": "GET",
22308
+ "path": "/getBehavioralAnalysisAdvancedSettingsFileHashCount"
22309
+ },
22310
+ "task": true
22311
+ },
22312
+ {
22313
+ "name": "getAdvancedUrlFilterAndCloudAppSettings",
22314
+ "summary": "Retrieves information about URL and Cloud App Control advanced policy settings",
22315
+ "description": "Retrieves information about URL and Cloud App Control advanced policy settings",
22316
+ "input": [
22317
+ {
22318
+ "name": "iapMetadata",
22319
+ "type": "object",
22320
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22321
+ "required": false,
22322
+ "schema": {
22323
+ "title": "iapMetadata",
22324
+ "type": "object"
22325
+ }
22326
+ }
22327
+ ],
22328
+ "output": {
22329
+ "name": "result",
22330
+ "type": "object",
22331
+ "description": "A JSON Object containing status, code and the result",
22332
+ "schema": {
22333
+ "title": "result",
22334
+ "type": "object"
22335
+ }
22336
+ },
22337
+ "roles": [
22338
+ "admin"
22339
+ ],
22340
+ "route": {
22341
+ "verb": "GET",
22342
+ "path": "/getAdvancedUrlFilterAndCloudAppSettings"
22343
+ },
22344
+ "task": true
22345
+ },
22346
+ {
22347
+ "name": "putAdvancedUrlFilterAndCloudAppSettings",
22348
+ "summary": "Updates the URL and Cloud App Control advanced policy settings",
22349
+ "description": "Updates the URL and Cloud App Control advanced policy settings",
22350
+ "input": [
22351
+ {
22352
+ "name": "body",
22353
+ "type": "object",
22354
+ "info": ": object",
22355
+ "required": true,
22356
+ "schema": {
22357
+ "type": "object",
22358
+ "definitions": {}
22359
+ }
22360
+ },
22361
+ {
22362
+ "name": "iapMetadata",
22363
+ "type": "object",
22364
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22365
+ "required": false,
22366
+ "schema": {
22367
+ "title": "iapMetadata",
22368
+ "type": "object"
22369
+ }
22370
+ }
22371
+ ],
22372
+ "output": {
22373
+ "name": "result",
22374
+ "type": "object",
22375
+ "description": "A JSON Object containing status, code and the result",
22376
+ "schema": {
22377
+ "title": "result",
22378
+ "type": "object"
22379
+ }
22380
+ },
22381
+ "roles": [
22382
+ "admin"
22383
+ ],
22384
+ "route": {
22385
+ "verb": "POST",
22386
+ "path": "/putAdvancedUrlFilterAndCloudAppSettings"
22387
+ },
22388
+ "task": true
22389
+ },
22390
+ {
22391
+ "name": "getFirewallDnsRules",
22392
+ "summary": "Retrieves the list of DNS Control policy rules configured in the ZIA Admin Portal",
22393
+ "description": "Retrieves the list of DNS Control policy rules configured in the ZIA Admin Portal",
22394
+ "input": [
22395
+ {
22396
+ "name": "iapMetadata",
22397
+ "type": "object",
22398
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22399
+ "required": false,
22400
+ "schema": {
22401
+ "title": "iapMetadata",
22402
+ "type": "object"
22403
+ }
22404
+ }
22405
+ ],
22406
+ "output": {
22407
+ "name": "result",
22408
+ "type": "object",
22409
+ "description": "A JSON Object containing status, code and the result",
22410
+ "schema": {
22411
+ "title": "result",
22412
+ "type": "object"
22413
+ }
22414
+ },
22415
+ "roles": [
22416
+ "admin"
22417
+ ],
22418
+ "route": {
22419
+ "verb": "GET",
22420
+ "path": "/getFirewallDnsRules"
22421
+ },
22422
+ "task": true
22423
+ },
22424
+ {
22425
+ "name": "postFirewallDnsRules",
22426
+ "summary": "Adds a new DNS Control policy rule. To learn more, see Configuring the DNS Control Policy.",
22427
+ "description": "Adds a new DNS Control policy rule. To learn more, see Configuring the DNS Control Policy.",
22428
+ "input": [
22429
+ {
22430
+ "name": "body",
22431
+ "type": "object",
22432
+ "info": ": object",
22433
+ "required": true,
22434
+ "schema": {
22435
+ "type": "object",
22436
+ "definitions": {}
22437
+ }
22438
+ },
22439
+ {
22440
+ "name": "iapMetadata",
22441
+ "type": "object",
22442
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22443
+ "required": false,
22444
+ "schema": {
22445
+ "title": "iapMetadata",
22446
+ "type": "object"
22447
+ }
22448
+ }
22449
+ ],
22450
+ "output": {
22451
+ "name": "result",
22452
+ "type": "object",
22453
+ "description": "A JSON Object containing status, code and the result",
22454
+ "schema": {
22455
+ "title": "result",
22456
+ "type": "object"
22457
+ }
22458
+ },
22459
+ "roles": [
22460
+ "admin"
22461
+ ],
22462
+ "route": {
22463
+ "verb": "POST",
22464
+ "path": "/postFirewallDnsRules"
22465
+ },
22466
+ "task": true
22467
+ },
22468
+ {
22469
+ "name": "getFirewallDnsRulesRuleId",
22470
+ "summary": "Retrieves the DNS Control policy rule information based on the specified ID",
22471
+ "description": "Retrieves the DNS Control policy rule information based on the specified ID",
22472
+ "input": [
22473
+ {
22474
+ "name": "ruleId",
22475
+ "type": "number",
22476
+ "info": "The unique identifier for the rule: 123",
22477
+ "required": true,
22478
+ "schema": {
22479
+ "title": "ruleId",
22480
+ "type": "number"
22481
+ }
22482
+ },
22483
+ {
22484
+ "name": "iapMetadata",
22485
+ "type": "object",
22486
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22487
+ "required": false,
22488
+ "schema": {
22489
+ "title": "iapMetadata",
22490
+ "type": "object"
22491
+ }
22492
+ }
22493
+ ],
22494
+ "output": {
22495
+ "name": "result",
22496
+ "type": "object",
22497
+ "description": "A JSON Object containing status, code and the result",
22498
+ "schema": {
22499
+ "title": "result",
22500
+ "type": "object"
22501
+ }
22502
+ },
22503
+ "roles": [
22504
+ "admin"
22505
+ ],
22506
+ "route": {
22507
+ "verb": "POST",
22508
+ "path": "/getFirewallDnsRulesRuleId"
22509
+ },
22510
+ "task": true
22511
+ },
22512
+ {
22513
+ "name": "putFirewallDnsRulesRuleId",
22514
+ "summary": "Updates the DNS Control policy rule information based on the specified ID. To learn more about the",
22515
+ "description": "Updates the DNS Control policy rule information based on the specified ID. To learn more about the rule configuration, see Configuring the DNS Control Policy.",
22516
+ "input": [
22517
+ {
22518
+ "name": "ruleId",
22519
+ "type": "number",
22520
+ "info": "The unique identifier for the rule: 123",
22521
+ "required": true,
22522
+ "schema": {
22523
+ "title": "ruleId",
22524
+ "type": "number"
22525
+ }
22526
+ },
22527
+ {
22528
+ "name": "body",
22529
+ "type": "object",
22530
+ "info": ": object",
22531
+ "required": true,
22532
+ "schema": {
22533
+ "type": "object",
22534
+ "definitions": {}
22535
+ }
22536
+ },
22537
+ {
22538
+ "name": "iapMetadata",
22539
+ "type": "object",
22540
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22541
+ "required": false,
22542
+ "schema": {
22543
+ "title": "iapMetadata",
22544
+ "type": "object"
22545
+ }
22546
+ }
22547
+ ],
22548
+ "output": {
22549
+ "name": "result",
22550
+ "type": "object",
22551
+ "description": "A JSON Object containing status, code and the result",
22552
+ "schema": {
22553
+ "title": "result",
22554
+ "type": "object"
22555
+ }
22556
+ },
22557
+ "roles": [
22558
+ "admin"
22559
+ ],
22560
+ "route": {
22561
+ "verb": "POST",
22562
+ "path": "/putFirewallDnsRulesRuleId"
22563
+ },
22564
+ "task": true
22565
+ },
22566
+ {
22567
+ "name": "deleteFirewallDnsRulesRuleId",
22568
+ "summary": "Deletes the DNS Control policy rule information based on the specified ID",
22569
+ "description": "Deletes the DNS Control policy rule information based on the specified ID",
22570
+ "input": [
22571
+ {
22572
+ "name": "ruleId",
22573
+ "type": "number",
22574
+ "info": "The unique identifier for the rule: 123",
22575
+ "required": true,
22576
+ "schema": {
22577
+ "title": "ruleId",
22578
+ "type": "number"
22579
+ }
22580
+ },
22581
+ {
22582
+ "name": "iapMetadata",
22583
+ "type": "object",
22584
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22585
+ "required": false,
22586
+ "schema": {
22587
+ "title": "iapMetadata",
22588
+ "type": "object"
22589
+ }
22590
+ }
22591
+ ],
22592
+ "output": {
22593
+ "name": "result",
22594
+ "type": "object",
22595
+ "description": "A JSON Object containing status, code and the result",
22596
+ "schema": {
22597
+ "title": "result",
22598
+ "type": "object"
22599
+ }
22600
+ },
22601
+ "roles": [
22602
+ "admin"
22603
+ ],
22604
+ "route": {
22605
+ "verb": "POST",
22606
+ "path": "/deleteFirewallDnsRulesRuleId"
22607
+ },
22608
+ "task": true
22609
+ },
22610
+ {
22611
+ "name": "getFirewallIpsRules",
22612
+ "summary": "Retrieves the list of IPS Control policy rules configured in the ZIA Admin Portal",
22613
+ "description": "Retrieves the list of IPS Control policy rules configured in the ZIA Admin Portal",
22614
+ "input": [
22615
+ {
22616
+ "name": "iapMetadata",
22617
+ "type": "object",
22618
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22619
+ "required": false,
22620
+ "schema": {
22621
+ "title": "iapMetadata",
22622
+ "type": "object"
22623
+ }
22624
+ }
22625
+ ],
22626
+ "output": {
22627
+ "name": "result",
22628
+ "type": "object",
22629
+ "description": "A JSON Object containing status, code and the result",
22630
+ "schema": {
22631
+ "title": "result",
22632
+ "type": "object"
22633
+ }
22634
+ },
22635
+ "roles": [
22636
+ "admin"
22637
+ ],
22638
+ "route": {
22639
+ "verb": "GET",
22640
+ "path": "/getFirewallIpsRules"
22641
+ },
22642
+ "task": true
22643
+ },
22644
+ {
22645
+ "name": "postFirewallIpsRules",
22646
+ "summary": "Adds a new IPS Control policy rule. To learn more, see Configuring the IPS Control Policy.",
22647
+ "description": "Adds a new IPS Control policy rule. To learn more, see Configuring the IPS Control Policy.",
22648
+ "input": [
22649
+ {
22650
+ "name": "body",
22651
+ "type": "object",
22652
+ "info": ": object",
22653
+ "required": true,
22654
+ "schema": {
22655
+ "type": "object",
22656
+ "definitions": {}
22657
+ }
22658
+ },
22659
+ {
22660
+ "name": "iapMetadata",
22661
+ "type": "object",
22662
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22663
+ "required": false,
22664
+ "schema": {
22665
+ "title": "iapMetadata",
22666
+ "type": "object"
22667
+ }
22668
+ }
22669
+ ],
22670
+ "output": {
22671
+ "name": "result",
22672
+ "type": "object",
22673
+ "description": "A JSON Object containing status, code and the result",
22674
+ "schema": {
22675
+ "title": "result",
22676
+ "type": "object"
22677
+ }
22678
+ },
22679
+ "roles": [
22680
+ "admin"
22681
+ ],
22682
+ "route": {
22683
+ "verb": "POST",
22684
+ "path": "/postFirewallIpsRules"
22685
+ },
22686
+ "task": true
22687
+ },
22688
+ {
22689
+ "name": "getFirewallIpsRulesRuleId",
22690
+ "summary": "Retrieves the IPS Control policy rule information based on the specified ID",
22691
+ "description": "Retrieves the IPS Control policy rule information based on the specified ID",
22692
+ "input": [
22693
+ {
22694
+ "name": "ruleId",
22695
+ "type": "number",
22696
+ "info": "The unique identifier for the rule: 123",
22697
+ "required": true,
22698
+ "schema": {
22699
+ "title": "ruleId",
22700
+ "type": "number"
22701
+ }
22702
+ },
22703
+ {
22704
+ "name": "iapMetadata",
22705
+ "type": "object",
22706
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22707
+ "required": false,
22708
+ "schema": {
22709
+ "title": "iapMetadata",
22710
+ "type": "object"
22711
+ }
22712
+ }
22713
+ ],
22714
+ "output": {
22715
+ "name": "result",
22716
+ "type": "object",
22717
+ "description": "A JSON Object containing status, code and the result",
22718
+ "schema": {
22719
+ "title": "result",
22720
+ "type": "object"
22721
+ }
22722
+ },
22723
+ "roles": [
22724
+ "admin"
22725
+ ],
22726
+ "route": {
22727
+ "verb": "POST",
22728
+ "path": "/getFirewallIpsRulesRuleId"
22729
+ },
22730
+ "task": true
22731
+ },
22732
+ {
22733
+ "name": "putFirewallIpsRulesRuleId",
22734
+ "summary": "Updates the IPS Control policy rule information based on the specified ID",
22735
+ "description": "Updates the IPS Control policy rule information based on the specified ID",
22736
+ "input": [
22737
+ {
22738
+ "name": "ruleId",
22739
+ "type": "number",
22740
+ "info": "The unique identifier for the rule: 123",
22741
+ "required": true,
22742
+ "schema": {
22743
+ "title": "ruleId",
22744
+ "type": "number"
22745
+ }
22746
+ },
22747
+ {
22748
+ "name": "body",
22749
+ "type": "object",
22750
+ "info": ": object",
22751
+ "required": true,
22752
+ "schema": {
22753
+ "type": "object",
22754
+ "definitions": {}
22755
+ }
22756
+ },
22757
+ {
22758
+ "name": "iapMetadata",
22759
+ "type": "object",
22760
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22761
+ "required": false,
22762
+ "schema": {
22763
+ "title": "iapMetadata",
22764
+ "type": "object"
22765
+ }
22766
+ }
22767
+ ],
22768
+ "output": {
22769
+ "name": "result",
22770
+ "type": "object",
22771
+ "description": "A JSON Object containing status, code and the result",
22772
+ "schema": {
22773
+ "title": "result",
22774
+ "type": "object"
22775
+ }
22776
+ },
22777
+ "roles": [
22778
+ "admin"
22779
+ ],
22780
+ "route": {
22781
+ "verb": "POST",
22782
+ "path": "/putFirewallIpsRulesRuleId"
22783
+ },
22784
+ "task": true
22785
+ },
22786
+ {
22787
+ "name": "deleteFirewallIpsRulesRuleId",
22788
+ "summary": "Deletes the IPS Control policy rule information based on the specified ID",
22789
+ "description": "Deletes the IPS Control policy rule information based on the specified ID",
22790
+ "input": [
22791
+ {
22792
+ "name": "ruleId",
22793
+ "type": "number",
22794
+ "info": "The unique identifier for the rule: 123",
22795
+ "required": true,
22796
+ "schema": {
22797
+ "title": "ruleId",
22798
+ "type": "number"
22799
+ }
22800
+ },
22801
+ {
22802
+ "name": "iapMetadata",
22803
+ "type": "object",
22804
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22805
+ "required": false,
22806
+ "schema": {
22807
+ "title": "iapMetadata",
22808
+ "type": "object"
22809
+ }
22810
+ }
22811
+ ],
22812
+ "output": {
22813
+ "name": "result",
22814
+ "type": "object",
22815
+ "description": "A JSON Object containing status, code and the result",
22816
+ "schema": {
22817
+ "title": "result",
22818
+ "type": "object"
22819
+ }
22820
+ },
22821
+ "roles": [
22822
+ "admin"
22823
+ ],
22824
+ "route": {
22825
+ "verb": "POST",
22826
+ "path": "/deleteFirewallIpsRulesRuleId"
22827
+ },
22828
+ "task": true
22829
+ },
22830
+ {
22831
+ "name": "getAdvancedSettings",
22832
+ "summary": "Retrieves information about the advanced settings configured in the ZIA Admin Portal",
22833
+ "description": "Retrieves information about the advanced settings configured in the ZIA Admin Portal",
22834
+ "input": [
22835
+ {
22836
+ "name": "iapMetadata",
22837
+ "type": "object",
22838
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22839
+ "required": false,
22840
+ "schema": {
22841
+ "title": "iapMetadata",
22842
+ "type": "object"
22843
+ }
22844
+ }
22845
+ ],
22846
+ "output": {
22847
+ "name": "result",
22848
+ "type": "object",
22849
+ "description": "A JSON Object containing status, code and the result",
22850
+ "schema": {
22851
+ "title": "result",
22852
+ "type": "object"
22853
+ }
22854
+ },
22855
+ "roles": [
22856
+ "admin"
22857
+ ],
22858
+ "route": {
22859
+ "verb": "GET",
22860
+ "path": "/getAdvancedSettings"
22861
+ },
22862
+ "task": true
22863
+ },
22864
+ {
22865
+ "name": "putAdvancedSettings",
22866
+ "summary": "Updates the advanced settings configuration in the ZIA Admin Portal. To learn more, see Configuring",
22867
+ "description": "Updates the advanced settings configuration in the ZIA Admin Portal. To learn more, see Configuring Advanced Settings.",
22868
+ "input": [
22869
+ {
22870
+ "name": "body",
22871
+ "type": "object",
22872
+ "info": ": object",
22873
+ "required": true,
22874
+ "schema": {
22875
+ "type": "object",
22876
+ "definitions": {}
22877
+ }
22878
+ },
22879
+ {
22880
+ "name": "iapMetadata",
22881
+ "type": "object",
22882
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22883
+ "required": false,
22884
+ "schema": {
22885
+ "title": "iapMetadata",
22886
+ "type": "object"
22887
+ }
22888
+ }
22889
+ ],
22890
+ "output": {
22891
+ "name": "result",
22892
+ "type": "object",
22893
+ "description": "A JSON Object containing status, code and the result",
22894
+ "schema": {
22895
+ "title": "result",
22896
+ "type": "object"
22897
+ }
22898
+ },
22899
+ "roles": [
22900
+ "admin"
22901
+ ],
22902
+ "route": {
22903
+ "verb": "POST",
22904
+ "path": "/putAdvancedSettings"
22905
+ },
22906
+ "task": true
22907
+ },
22908
+ {
22909
+ "name": "getNssFeeds",
22910
+ "summary": "Retrieves the cloud NSS feeds configured in the ZIA Admin Portal",
22911
+ "description": "Retrieves the cloud NSS feeds configured in the ZIA Admin Portal",
22912
+ "input": [
22913
+ {
22914
+ "name": "iapMetadata",
22915
+ "type": "object",
22916
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22917
+ "required": false,
22918
+ "schema": {
22919
+ "title": "iapMetadata",
22920
+ "type": "object"
22921
+ }
22922
+ }
22923
+ ],
22924
+ "output": {
22925
+ "name": "result",
22926
+ "type": "object",
22927
+ "description": "A JSON Object containing status, code and the result",
22928
+ "schema": {
22929
+ "title": "result",
22930
+ "type": "object"
22931
+ }
22932
+ },
22933
+ "roles": [
22934
+ "admin"
22935
+ ],
22936
+ "route": {
22937
+ "verb": "GET",
22938
+ "path": "/getNssFeeds"
22939
+ },
22940
+ "task": true
22941
+ },
22942
+ {
22943
+ "name": "postNssFeeds",
22944
+ "summary": "Adds a new cloud NSS feed. To learn more, see Adding Cloud NSS Feeds.",
22945
+ "description": "Adds a new cloud NSS feed. To learn more, see Adding Cloud NSS Feeds.",
22946
+ "input": [
22947
+ {
22948
+ "name": "body",
22949
+ "type": "object",
22950
+ "info": ": object",
22951
+ "required": true,
22952
+ "schema": {
22953
+ "type": "object",
22954
+ "definitions": {}
22955
+ }
22956
+ },
22957
+ {
22958
+ "name": "iapMetadata",
22959
+ "type": "object",
22960
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
22961
+ "required": false,
22962
+ "schema": {
22963
+ "title": "iapMetadata",
22964
+ "type": "object"
22965
+ }
22966
+ }
22967
+ ],
22968
+ "output": {
22969
+ "name": "result",
22970
+ "type": "object",
22971
+ "description": "A JSON Object containing status, code and the result",
22972
+ "schema": {
22973
+ "title": "result",
22974
+ "type": "object"
22975
+ }
22976
+ },
22977
+ "roles": [
22978
+ "admin"
22979
+ ],
22980
+ "route": {
22981
+ "verb": "POST",
22982
+ "path": "/postNssFeeds"
22983
+ },
22984
+ "task": true
22985
+ },
22986
+ {
22987
+ "name": "getNssFeedsFeedId",
22988
+ "summary": "Retrieves information about cloud NSS feed based on the specified ID",
22989
+ "description": "Retrieves information about cloud NSS feed based on the specified ID",
22990
+ "input": [
22991
+ {
22992
+ "name": "feedId",
22993
+ "type": "number",
22994
+ "info": "Unique identifier for the cloud NSS feed: 123",
22995
+ "required": true,
22996
+ "schema": {
22997
+ "title": "feedId",
22998
+ "type": "number"
22999
+ }
23000
+ },
23001
+ {
23002
+ "name": "iapMetadata",
23003
+ "type": "object",
23004
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23005
+ "required": false,
23006
+ "schema": {
23007
+ "title": "iapMetadata",
23008
+ "type": "object"
23009
+ }
23010
+ }
23011
+ ],
23012
+ "output": {
23013
+ "name": "result",
23014
+ "type": "object",
23015
+ "description": "A JSON Object containing status, code and the result",
23016
+ "schema": {
23017
+ "title": "result",
23018
+ "type": "object"
23019
+ }
23020
+ },
23021
+ "roles": [
23022
+ "admin"
23023
+ ],
23024
+ "route": {
23025
+ "verb": "POST",
23026
+ "path": "/getNssFeedsFeedId"
23027
+ },
23028
+ "task": true
23029
+ },
23030
+ {
23031
+ "name": "putNssFeedsFeedId",
23032
+ "summary": "Updates cloud NSS feed configuration based on the specified ID. To learn more, see Adding Cloud NSS",
23033
+ "description": "Updates cloud NSS feed configuration based on the specified ID. To learn more, see Adding Cloud NSS Feeds.",
23034
+ "input": [
23035
+ {
23036
+ "name": "feedId",
23037
+ "type": "number",
23038
+ "info": "Unique identifier for the cloud NSS feed: 123",
23039
+ "required": true,
23040
+ "schema": {
23041
+ "title": "feedId",
23042
+ "type": "number"
23043
+ }
23044
+ },
23045
+ {
23046
+ "name": "body",
23047
+ "type": "object",
23048
+ "info": ": object",
23049
+ "required": true,
23050
+ "schema": {
23051
+ "type": "object",
23052
+ "definitions": {}
23053
+ }
23054
+ },
23055
+ {
23056
+ "name": "iapMetadata",
23057
+ "type": "object",
23058
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23059
+ "required": false,
23060
+ "schema": {
23061
+ "title": "iapMetadata",
23062
+ "type": "object"
23063
+ }
23064
+ }
23065
+ ],
23066
+ "output": {
23067
+ "name": "result",
23068
+ "type": "object",
23069
+ "description": "A JSON Object containing status, code and the result",
23070
+ "schema": {
23071
+ "title": "result",
23072
+ "type": "object"
23073
+ }
23074
+ },
23075
+ "roles": [
23076
+ "admin"
23077
+ ],
23078
+ "route": {
23079
+ "verb": "POST",
23080
+ "path": "/putNssFeedsFeedId"
23081
+ },
23082
+ "task": true
23083
+ },
23084
+ {
23085
+ "name": "deleteNssFeedsFeedId",
23086
+ "summary": "Deletes cloud NSS feed configuration based on the specified ID",
23087
+ "description": "Deletes cloud NSS feed configuration based on the specified ID",
23088
+ "input": [
23089
+ {
23090
+ "name": "feedId",
23091
+ "type": "number",
23092
+ "info": "Unique identifier for the cloud NSS feed: 123",
23093
+ "required": true,
23094
+ "schema": {
23095
+ "title": "feedId",
23096
+ "type": "number"
23097
+ }
23098
+ },
23099
+ {
23100
+ "name": "cloudNss",
23101
+ "type": "boolean",
23102
+ "info": "A Boolean value indicating whether the feed is cloud NSS feed: boolean",
23103
+ "required": false,
23104
+ "schema": {
23105
+ "title": "cloudNss",
23106
+ "type": "boolean"
23107
+ }
23108
+ },
23109
+ {
23110
+ "name": "iapMetadata",
23111
+ "type": "object",
23112
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23113
+ "required": false,
23114
+ "schema": {
23115
+ "title": "iapMetadata",
23116
+ "type": "object"
23117
+ }
23118
+ }
23119
+ ],
23120
+ "output": {
23121
+ "name": "result",
23122
+ "type": "object",
23123
+ "description": "A JSON Object containing status, code and the result",
23124
+ "schema": {
23125
+ "title": "result",
23126
+ "type": "object"
23127
+ }
23128
+ },
23129
+ "roles": [
23130
+ "admin"
23131
+ ],
23132
+ "route": {
23133
+ "verb": "POST",
23134
+ "path": "/deleteNssFeedsFeedId"
23135
+ },
23136
+ "task": true
23137
+ },
23138
+ {
23139
+ "name": "getNssFeedsFeedOutputDefaults",
23140
+ "summary": "Retrieves the default cloud NSS feed output format for different log types",
23141
+ "description": "Retrieves the default cloud NSS feed output format for different log types",
23142
+ "input": [
23143
+ {
23144
+ "name": "type",
23145
+ "type": "string",
23146
+ "info": "The type of logs that you are streaming. Available values : [ 0:\"ADMIN_AUDIT\" 1:\"WEBLOG\" 2:\"ALERT\" 3:\"FWLOG\" 4:\"DNSLOG\" 5:\"MULTIFEEDLOG\" 6:\"CASB_FILELOG\" 7:\"CASB_MAILLOG\"...(description truncated): [object Object]",
23147
+ "required": false,
23148
+ "schema": {
23149
+ "title": "type",
23150
+ "type": "string"
23151
+ }
23152
+ },
23153
+ {
23154
+ "name": "multiFeedType",
23155
+ "type": "string",
23156
+ "info": "This field is used to set the multi-feed type to Tunnel. Available values : [ \"ANY\", \"NONE\", \"WEB\", \"FW\", \"DNS\", \"EMAIL\", \"NSSALERTS\", \"BW\", \"CSTAT\", ...(description truncated): string",
23157
+ "required": false,
23158
+ "schema": {
23159
+ "title": "multiFeedType",
23160
+ "type": "string"
23161
+ }
23162
+ },
23163
+ {
23164
+ "name": "fieldFormat",
23165
+ "type": "string",
23166
+ "info": "The feed output type of your SIEM. Available values : [ \"QRADAR\", \"CSV\", \"TAB_SEPARATED\", \"SPLUNK_CIM\", \"ARCSIGHT_CEF\", \"SYMANTEC_MSS\", \"LOGRHYTHM\", \"NAME...(description truncated): string",
23167
+ "required": false,
23168
+ "schema": {
23169
+ "title": "fieldFormat",
23170
+ "type": "string"
23171
+ }
23172
+ },
23173
+ {
23174
+ "name": "iapMetadata",
23175
+ "type": "object",
23176
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23177
+ "required": false,
23178
+ "schema": {
23179
+ "title": "iapMetadata",
23180
+ "type": "object"
23181
+ }
23182
+ }
23183
+ ],
23184
+ "output": {
23185
+ "name": "result",
23186
+ "type": "object",
23187
+ "description": "A JSON Object containing status, code and the result",
23188
+ "schema": {
23189
+ "title": "result",
23190
+ "type": "object"
23191
+ }
23192
+ },
23193
+ "roles": [
23194
+ "admin"
23195
+ ],
23196
+ "route": {
23197
+ "verb": "POST",
23198
+ "path": "/getNssFeedsFeedOutputDefaults"
23199
+ },
23200
+ "task": true
23201
+ },
23202
+ {
23203
+ "name": "getNssFeedsTestConnectivityFeedId",
23204
+ "summary": "Tests the connectivity of cloud NSS feed based on the specified ID",
23205
+ "description": "Tests the connectivity of cloud NSS feed based on the specified ID",
23206
+ "input": [
23207
+ {
23208
+ "name": "feedId",
23209
+ "type": "number",
23210
+ "info": "Unique identifier for the cloud NSS feed: 123",
23211
+ "required": true,
23212
+ "schema": {
23213
+ "title": "feedId",
23214
+ "type": "number"
23215
+ }
23216
+ },
23217
+ {
23218
+ "name": "iapMetadata",
23219
+ "type": "object",
23220
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23221
+ "required": false,
23222
+ "schema": {
23223
+ "title": "iapMetadata",
23224
+ "type": "object"
23225
+ }
23226
+ }
23227
+ ],
23228
+ "output": {
23229
+ "name": "result",
23230
+ "type": "object",
23231
+ "description": "A JSON Object containing status, code and the result",
23232
+ "schema": {
23233
+ "title": "result",
23234
+ "type": "object"
23235
+ }
23236
+ },
23237
+ "roles": [
23238
+ "admin"
23239
+ ],
23240
+ "route": {
23241
+ "verb": "POST",
23242
+ "path": "/getNssFeedsTestConnectivityFeedId"
23243
+ },
23244
+ "task": true
23245
+ },
23246
+ {
23247
+ "name": "postNssFeedsValidateFeedFormat",
23248
+ "summary": "Validates the cloud NSS feed format and returns the validation result",
23249
+ "description": "Validates the cloud NSS feed format and returns the validation result",
23250
+ "input": [
23251
+ {
23252
+ "name": "type",
23253
+ "type": "string",
23254
+ "info": "The cloud NSS log type. Available values : [ \"ADMIN_AUDIT\", \"VM_GBL_METRICS\", \"INST_GBL_METRICS\", \"DEVICE_METRICS\", \"WEBLOG\", \"ALERT\", \"TUNNEL_SAMPLES\", \"...(description truncated): [object Object]",
23255
+ "required": false,
23256
+ "schema": {
23257
+ "title": "type",
23258
+ "type": "string"
23259
+ }
23260
+ },
23261
+ {
23262
+ "name": "iapMetadata",
23263
+ "type": "object",
23264
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23265
+ "required": false,
23266
+ "schema": {
23267
+ "title": "iapMetadata",
23268
+ "type": "object"
23269
+ }
23270
+ }
23271
+ ],
23272
+ "output": {
23273
+ "name": "result",
23274
+ "type": "object",
23275
+ "description": "A JSON Object containing status, code and the result",
23276
+ "schema": {
23277
+ "title": "result",
23278
+ "type": "object"
23279
+ }
23280
+ },
23281
+ "roles": [
23282
+ "admin"
23283
+ ],
23284
+ "route": {
23285
+ "verb": "POST",
23286
+ "path": "/postNssFeedsValidateFeedFormat"
23287
+ },
23288
+ "task": true
23289
+ },
23290
+ {
23291
+ "name": "getOrgInformation",
23292
+ "summary": "Retrieves detailed organization information, including headquarter location, geolocation, address,",
23293
+ "description": "Retrieves detailed organization information, including headquarter location, geolocation, address, and contact details.",
23294
+ "input": [
23295
+ {
23296
+ "name": "iapMetadata",
23297
+ "type": "object",
23298
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23299
+ "required": false,
23300
+ "schema": {
23301
+ "title": "iapMetadata",
23302
+ "type": "object"
23303
+ }
23304
+ }
23305
+ ],
23306
+ "output": {
23307
+ "name": "result",
23308
+ "type": "object",
23309
+ "description": "A JSON Object containing status, code and the result",
23310
+ "schema": {
23311
+ "title": "result",
23312
+ "type": "object"
23313
+ }
23314
+ },
23315
+ "roles": [
23316
+ "admin"
23317
+ ],
23318
+ "route": {
23319
+ "verb": "GET",
23320
+ "path": "/getOrgInformation"
23321
+ },
23322
+ "task": true
23323
+ },
23324
+ {
23325
+ "name": "getOrgInformationLite",
23326
+ "summary": "Retrieves minimal organization information.",
23327
+ "description": "Retrieves minimal organization information.",
23328
+ "input": [
23329
+ {
23330
+ "name": "iapMetadata",
23331
+ "type": "object",
23332
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23333
+ "required": false,
23334
+ "schema": {
23335
+ "title": "iapMetadata",
23336
+ "type": "object"
23337
+ }
23338
+ }
23339
+ ],
23340
+ "output": {
23341
+ "name": "result",
23342
+ "type": "object",
23343
+ "description": "A JSON Object containing status, code and the result",
23344
+ "schema": {
23345
+ "title": "result",
23346
+ "type": "object"
23347
+ }
23348
+ },
23349
+ "roles": [
23350
+ "admin"
23351
+ ],
23352
+ "route": {
23353
+ "verb": "GET",
23354
+ "path": "/getOrgInformationLite"
23355
+ },
23356
+ "task": true
23357
+ },
23358
+ {
23359
+ "name": "getSubscriptions",
23360
+ "summary": "Retrieves information about the list of subscriptions enabled for your tenant. Subscriptions define",
23361
+ "description": "Retrieves information about the list of subscriptions enabled for your tenant. Subscriptions define the various features and levels of functionality that are available to your organization.",
23362
+ "input": [
23363
+ {
23364
+ "name": "iapMetadata",
23365
+ "type": "object",
23366
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23367
+ "required": false,
23368
+ "schema": {
23369
+ "title": "iapMetadata",
23370
+ "type": "object"
23371
+ }
23372
+ }
23373
+ ],
23374
+ "output": {
23375
+ "name": "result",
23376
+ "type": "object",
23377
+ "description": "A JSON Object containing status, code and the result",
23378
+ "schema": {
23379
+ "title": "result",
23380
+ "type": "object"
23381
+ }
23382
+ },
23383
+ "roles": [
23384
+ "admin"
23385
+ ],
23386
+ "route": {
23387
+ "verb": "GET",
23388
+ "path": "/getSubscriptions"
23389
+ },
23390
+ "task": true
23391
+ },
23392
+ {
23393
+ "name": "getRemoteAssistance",
23394
+ "summary": "Retrieves information about the Remote Assistance option configured in the ZIA Admin Portal. Using",
23395
+ "description": "Retrieves information about the Remote Assistance option configured in the ZIA Admin Portal. Using this option, you can allow Zscaler Support to access your organization’s ZIA Admin Portal for a specified time period to troubleshoot issues. To learn more, see Enabling Remote Assistance.",
23396
+ "input": [
23397
+ {
23398
+ "name": "iapMetadata",
23399
+ "type": "object",
23400
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23401
+ "required": false,
23402
+ "schema": {
23403
+ "title": "iapMetadata",
23404
+ "type": "object"
23405
+ }
23406
+ }
23407
+ ],
23408
+ "output": {
23409
+ "name": "result",
23410
+ "type": "object",
23411
+ "description": "A JSON Object containing status, code and the result",
23412
+ "schema": {
23413
+ "title": "result",
23414
+ "type": "object"
23415
+ }
23416
+ },
23417
+ "roles": [
23418
+ "admin"
23419
+ ],
23420
+ "route": {
23421
+ "verb": "GET",
23422
+ "path": "/getRemoteAssistance"
23423
+ },
23424
+ "task": true
23425
+ },
23426
+ {
23427
+ "name": "putRemoteAssistance",
23428
+ "summary": "Retrieves information about the Remote Assistance option configured in the ZIA Admin Portal. Using",
23429
+ "description": "Retrieves information about the Remote Assistance option configured in the ZIA Admin Portal. Using this option, you can allow Zscaler Support to access your organization’s ZIA Admin Portal for a specified time period to troubleshoot issues. To learn more, see Enabling Remote Assistance.",
23430
+ "input": [
23431
+ {
23432
+ "name": "iapMetadata",
23433
+ "type": "object",
23434
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23435
+ "required": false,
23436
+ "schema": {
23437
+ "title": "iapMetadata",
23438
+ "type": "object"
23439
+ }
23440
+ }
23441
+ ],
23442
+ "output": {
23443
+ "name": "result",
23444
+ "type": "object",
23445
+ "description": "A JSON Object containing status, code and the result",
23446
+ "schema": {
23447
+ "title": "result",
23448
+ "type": "object"
23449
+ }
23450
+ },
23451
+ "roles": [
23452
+ "admin"
23453
+ ],
23454
+ "route": {
23455
+ "verb": "GET",
23456
+ "path": "/putRemoteAssistance"
23457
+ },
23458
+ "task": true
23459
+ },
23460
+ {
23461
+ "name": "getSslInspectionRules",
23462
+ "summary": "Retrieves all SSL inspection rules",
23463
+ "description": "Retrieves all SSL inspection rules",
23464
+ "input": [
23465
+ {
23466
+ "name": "iapMetadata",
23467
+ "type": "object",
23468
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23469
+ "required": false,
23470
+ "schema": {
23471
+ "title": "iapMetadata",
23472
+ "type": "object"
23473
+ }
23474
+ }
23475
+ ],
23476
+ "output": {
23477
+ "name": "result",
23478
+ "type": "object",
23479
+ "description": "A JSON Object containing status, code and the result",
23480
+ "schema": {
23481
+ "title": "result",
23482
+ "type": "object"
23483
+ }
23484
+ },
23485
+ "roles": [
23486
+ "admin"
23487
+ ],
23488
+ "route": {
23489
+ "verb": "GET",
23490
+ "path": "/getSslInspectionRules"
23491
+ },
23492
+ "task": true
23493
+ },
23494
+ {
23495
+ "name": "postSslInspectionRules",
23496
+ "summary": "Creates a new SSL inspection rule",
23497
+ "description": "Creates a new SSL inspection rule",
23498
+ "input": [
23499
+ {
23500
+ "name": "body",
23501
+ "type": "object",
23502
+ "info": ": object",
23503
+ "required": true,
23504
+ "schema": {
23505
+ "type": "object",
23506
+ "definitions": {}
23507
+ }
23508
+ },
23509
+ {
23510
+ "name": "iapMetadata",
23511
+ "type": "object",
23512
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23513
+ "required": false,
23514
+ "schema": {
23515
+ "title": "iapMetadata",
23516
+ "type": "object"
23517
+ }
23518
+ }
23519
+ ],
23520
+ "output": {
23521
+ "name": "result",
23522
+ "type": "object",
23523
+ "description": "A JSON Object containing status, code and the result",
23524
+ "schema": {
23525
+ "title": "result",
23526
+ "type": "object"
23527
+ }
23528
+ },
23529
+ "roles": [
23530
+ "admin"
23531
+ ],
23532
+ "route": {
23533
+ "verb": "POST",
23534
+ "path": "/postSslInspectionRules"
23535
+ },
23536
+ "task": true
23537
+ },
23538
+ {
23539
+ "name": "getSslInspectionRulesRuleId",
23540
+ "summary": "Retrieves the SSL inspection rule based on the specified ID",
23541
+ "description": "Retrieves the SSL inspection rule based on the specified ID",
23542
+ "input": [
23543
+ {
23544
+ "name": "ruleId",
23545
+ "type": "number",
23546
+ "info": "Unique identifier for the SSL inspection rule: 123",
23547
+ "required": true,
23548
+ "schema": {
23549
+ "title": "ruleId",
23550
+ "type": "number"
23551
+ }
23552
+ },
23553
+ {
23554
+ "name": "iapMetadata",
23555
+ "type": "object",
23556
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23557
+ "required": false,
23558
+ "schema": {
23559
+ "title": "iapMetadata",
23560
+ "type": "object"
23561
+ }
23562
+ }
23563
+ ],
23564
+ "output": {
23565
+ "name": "result",
23566
+ "type": "object",
23567
+ "description": "A JSON Object containing status, code and the result",
23568
+ "schema": {
23569
+ "title": "result",
23570
+ "type": "object"
23571
+ }
23572
+ },
23573
+ "roles": [
23574
+ "admin"
23575
+ ],
23576
+ "route": {
23577
+ "verb": "POST",
23578
+ "path": "/getSslInspectionRulesRuleId"
23579
+ },
23580
+ "task": true
23581
+ },
23582
+ {
23583
+ "name": "putSslInspectionRulesRuleId",
23584
+ "summary": "Updates the SSL inspection rule based on the specified ID",
23585
+ "description": "Updates the SSL inspection rule based on the specified ID",
23586
+ "input": [
23587
+ {
23588
+ "name": "ruleId",
23589
+ "type": "number",
23590
+ "info": "Unique identifier for the SSL inspection rule: 123",
23591
+ "required": true,
23592
+ "schema": {
23593
+ "title": "ruleId",
23594
+ "type": "number"
23595
+ }
23596
+ },
23597
+ {
23598
+ "name": "body",
23599
+ "type": "object",
23600
+ "info": ": object",
23601
+ "required": true,
23602
+ "schema": {
23603
+ "type": "object",
23604
+ "definitions": {}
23605
+ }
23606
+ },
23607
+ {
23608
+ "name": "iapMetadata",
23609
+ "type": "object",
23610
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23611
+ "required": false,
23612
+ "schema": {
23613
+ "title": "iapMetadata",
23614
+ "type": "object"
23615
+ }
23616
+ }
23617
+ ],
23618
+ "output": {
23619
+ "name": "result",
23620
+ "type": "object",
23621
+ "description": "A JSON Object containing status, code and the result",
23622
+ "schema": {
23623
+ "title": "result",
23624
+ "type": "object"
23625
+ }
23626
+ },
23627
+ "roles": [
23628
+ "admin"
23629
+ ],
23630
+ "route": {
23631
+ "verb": "POST",
23632
+ "path": "/putSslInspectionRulesRuleId"
23633
+ },
23634
+ "task": true
23635
+ },
23636
+ {
23637
+ "name": "deleteSslInspectionRulesRuleId",
23638
+ "summary": "Deletes an existing SSL inspection rule based on the specified ID",
23639
+ "description": "Deletes an existing SSL inspection rule based on the specified ID",
23640
+ "input": [
23641
+ {
23642
+ "name": "ruleId",
23643
+ "type": "number",
23644
+ "info": "Unique identifier for the SSL inspection rule: 123",
23645
+ "required": true,
23646
+ "schema": {
23647
+ "title": "ruleId",
23648
+ "type": "number"
23649
+ }
23650
+ },
23651
+ {
23652
+ "name": "iapMetadata",
23653
+ "type": "object",
23654
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23655
+ "required": false,
23656
+ "schema": {
23657
+ "title": "iapMetadata",
23658
+ "type": "object"
23659
+ }
23660
+ }
23661
+ ],
23662
+ "output": {
23663
+ "name": "result",
23664
+ "type": "object",
23665
+ "description": "A JSON Object containing status, code and the result",
23666
+ "schema": {
23667
+ "title": "result",
23668
+ "type": "object"
23669
+ }
23670
+ },
23671
+ "roles": [
23672
+ "admin"
23673
+ ],
23674
+ "route": {
23675
+ "verb": "POST",
23676
+ "path": "/deleteSslInspectionRulesRuleId"
23677
+ },
23678
+ "task": true
23679
+ },
23680
+ {
23681
+ "name": "getCloudApplicationsPolicy",
23682
+ "summary": "Retrieves a list of Predefined and User Defined Cloud Applications associated with the DLP rules, C",
23683
+ "description": "Retrieves a list of Predefined and User Defined Cloud Applications associated with the DLP rules, Cloud App Control rules, Advanced Settings, Bandwidth Classes, and File Type Control rules. Retrieves AppInfo when groupResults is set to false and retrieves the application count grouped by application category when groupResults is set to true.",
23684
+ "input": [
23685
+ {
23686
+ "name": "search",
23687
+ "type": "string",
23688
+ "info": "Filter application by name: string",
23689
+ "required": false,
23690
+ "schema": {
23691
+ "title": "search",
23692
+ "type": "string"
23693
+ }
23694
+ },
23695
+ {
23696
+ "name": "pageSize",
23697
+ "type": "number",
23698
+ "info": "Set the size of response: 123",
23699
+ "required": false,
23700
+ "schema": {
23701
+ "title": "pageSize",
23702
+ "type": "number"
23703
+ }
23704
+ },
23705
+ {
23706
+ "name": "page",
23707
+ "type": "number",
23708
+ "info": "Set the page number of response: 123",
23709
+ "required": false,
23710
+ "schema": {
23711
+ "title": "page",
23712
+ "type": "number"
23713
+ }
23714
+ },
23715
+ {
23716
+ "name": "appClass",
23717
+ "type": "array",
23718
+ "info": "Filter application by application category. Available values : [ \"WEB_MAIL\", \"SOCIAL_NETWORKING\", \"STREAMING\", \"P2P\", \"INSTANT_MESSAGING\", \"WEB_SEARCH\", \"GE...(description truncated): array",
23719
+ "required": false,
23720
+ "schema": {
23721
+ "title": "appClass",
23722
+ "type": "array"
23723
+ }
23724
+ },
23725
+ {
23726
+ "name": "groupResults",
23727
+ "type": "boolean",
23728
+ "info": "Show count of applications grouped by application category: boolean",
23729
+ "required": false,
23730
+ "schema": {
23731
+ "title": "groupResults",
23732
+ "type": "boolean"
23733
+ }
23734
+ },
23735
+ {
23736
+ "name": "iapMetadata",
23737
+ "type": "object",
23738
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23739
+ "required": false,
23740
+ "schema": {
23741
+ "title": "iapMetadata",
23742
+ "type": "object"
23743
+ }
23744
+ }
23745
+ ],
23746
+ "output": {
23747
+ "name": "result",
23748
+ "type": "object",
23749
+ "description": "A JSON Object containing status, code and the result",
23750
+ "schema": {
23751
+ "title": "result",
23752
+ "type": "object"
23753
+ }
23754
+ },
23755
+ "roles": [
23756
+ "admin"
23757
+ ],
23758
+ "route": {
23759
+ "verb": "POST",
23760
+ "path": "/getCloudApplicationsPolicy"
23761
+ },
23762
+ "task": true
23763
+ },
23764
+ {
23765
+ "name": "getCloudApplicationsSslPolicy",
23766
+ "summary": "Retrieves a list of Predefined and User Defined Cloud Applications associated with the SSL Inspecti",
23767
+ "description": "Retrieves a list of Predefined and User Defined Cloud Applications associated with the SSL Inspection rules. Retrives AppInfo when groupResults is set to false and retrieves the application count grouped by application category when groupResults is set to true",
23768
+ "input": [
23769
+ {
23770
+ "name": "search",
23771
+ "type": "string",
23772
+ "info": "Filter application by name: string",
23773
+ "required": false,
23774
+ "schema": {
23775
+ "title": "search",
23776
+ "type": "string"
23777
+ }
23778
+ },
23779
+ {
23780
+ "name": "pageSize",
23781
+ "type": "number",
23782
+ "info": "Set the size of response: 123",
23783
+ "required": false,
23784
+ "schema": {
23785
+ "title": "pageSize",
23786
+ "type": "number"
23787
+ }
23788
+ },
23789
+ {
23790
+ "name": "page",
23791
+ "type": "number",
23792
+ "info": "Set the page number of response: 123",
23793
+ "required": false,
23794
+ "schema": {
23795
+ "title": "page",
23796
+ "type": "number"
23797
+ }
23798
+ },
23799
+ {
23800
+ "name": "appClass",
23801
+ "type": "array",
23802
+ "info": "Filter application by application category. Available values : [ \"WEB_MAIL\", \"SOCIAL_NETWORKING\", \"STREAMING\", \"P2P\", \"INSTANT_MESSAGING\", \"WEB_SEARCH\", \"GE...(description truncated): array",
23803
+ "required": false,
23804
+ "schema": {
23805
+ "title": "appClass",
23806
+ "type": "array"
23807
+ }
23808
+ },
23809
+ {
23810
+ "name": "groupResults",
23811
+ "type": "boolean",
23812
+ "info": "Show count of applications grouped by application category: boolean",
23813
+ "required": false,
23814
+ "schema": {
23815
+ "title": "groupResults",
23816
+ "type": "boolean"
23817
+ }
23818
+ },
23819
+ {
23820
+ "name": "iapMetadata",
23821
+ "type": "object",
23822
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23823
+ "required": false,
23824
+ "schema": {
23825
+ "title": "iapMetadata",
23826
+ "type": "object"
23827
+ }
23828
+ }
23829
+ ],
23830
+ "output": {
23831
+ "name": "result",
23832
+ "type": "object",
23833
+ "description": "A JSON Object containing status, code and the result",
23834
+ "schema": {
23835
+ "title": "result",
23836
+ "type": "object"
23837
+ }
23838
+ },
23839
+ "roles": [
23840
+ "admin"
23841
+ ],
23842
+ "route": {
23843
+ "verb": "POST",
23844
+ "path": "/getCloudApplicationsSslPolicy"
23845
+ },
23846
+ "task": true
23847
+ },
23848
+ {
23849
+ "name": "getAuthSettings",
23850
+ "summary": "Retrieves the organization's default authentication settings information, including authentication",
23851
+ "description": "Retrieves the organization's default authentication settings information, including authentication profile and Kerberos authentication information.",
23852
+ "input": [
23853
+ {
23854
+ "name": "iapMetadata",
23855
+ "type": "object",
23856
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23857
+ "required": false,
23858
+ "schema": {
23859
+ "title": "iapMetadata",
23860
+ "type": "object"
23861
+ }
23862
+ }
23863
+ ],
23864
+ "output": {
23865
+ "name": "result",
23866
+ "type": "object",
23867
+ "description": "A JSON Object containing status, code and the result",
23868
+ "schema": {
23869
+ "title": "result",
23870
+ "type": "object"
23871
+ }
23872
+ },
23873
+ "roles": [
23874
+ "admin"
23875
+ ],
23876
+ "route": {
23877
+ "verb": "GET",
23878
+ "path": "/getAuthSettings"
23879
+ },
23880
+ "task": true
23881
+ },
23882
+ {
23883
+ "name": "putAuthSettings",
23884
+ "summary": "Updates the organization's default authentication settings information.",
23885
+ "description": "Updates the organization's default authentication settings information.",
23886
+ "input": [
23887
+ {
23888
+ "name": "body",
23889
+ "type": "object",
23890
+ "info": ": object",
23891
+ "required": true,
23892
+ "schema": {
23893
+ "type": "object",
23894
+ "definitions": {}
23895
+ }
23896
+ },
23897
+ {
23898
+ "name": "iapMetadata",
23899
+ "type": "object",
23900
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23901
+ "required": false,
23902
+ "schema": {
23903
+ "title": "iapMetadata",
23904
+ "type": "object"
23905
+ }
23906
+ }
23907
+ ],
23908
+ "output": {
23909
+ "name": "result",
23910
+ "type": "object",
23911
+ "description": "A JSON Object containing status, code and the result",
23912
+ "schema": {
23913
+ "title": "result",
23914
+ "type": "object"
23915
+ }
23916
+ },
23917
+ "roles": [
23918
+ "admin"
23919
+ ],
23920
+ "route": {
23921
+ "verb": "POST",
23922
+ "path": "/putAuthSettings"
23923
+ },
23924
+ "task": true
23925
+ },
23926
+ {
23927
+ "name": "getAuthSettingsLite",
23928
+ "summary": "Retrieves organization's default authentication settings information.",
23929
+ "description": "Retrieves organization's default authentication settings information.",
23930
+ "input": [
23931
+ {
23932
+ "name": "iapMetadata",
23933
+ "type": "object",
23934
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23935
+ "required": false,
23936
+ "schema": {
23937
+ "title": "iapMetadata",
23938
+ "type": "object"
23939
+ }
23940
+ }
23941
+ ],
23942
+ "output": {
23943
+ "name": "result",
23944
+ "type": "object",
23945
+ "description": "A JSON Object containing status, code and the result",
23946
+ "schema": {
23947
+ "title": "result",
23948
+ "type": "object"
23949
+ }
23950
+ },
23951
+ "roles": [
23952
+ "admin"
23953
+ ],
23954
+ "route": {
23955
+ "verb": "GET",
23956
+ "path": "/getAuthSettingsLite"
23957
+ },
23958
+ "task": true
23959
+ },
23960
+ {
23961
+ "name": "getTimeWindowsLite",
23962
+ "summary": "Gets a name and ID dictionary of time intervals used by the Firewall policy or the URL Filtering po",
23963
+ "description": "Gets a name and ID dictionary of time intervals used by the Firewall policy or the URL Filtering policy.",
23964
+ "input": [
23965
+ {
23966
+ "name": "iapMetadata",
23967
+ "type": "object",
23968
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
23969
+ "required": false,
23970
+ "schema": {
23971
+ "title": "iapMetadata",
23972
+ "type": "object"
23973
+ }
23974
+ }
23975
+ ],
23976
+ "output": {
23977
+ "name": "result",
23978
+ "type": "object",
23979
+ "description": "A JSON Object containing status, code and the result",
23980
+ "schema": {
23981
+ "title": "result",
23982
+ "type": "object"
23983
+ }
23984
+ },
23985
+ "roles": [
23986
+ "admin"
23987
+ ],
23988
+ "route": {
23989
+ "verb": "GET",
23990
+ "path": "/getTimeWindowsLite"
23991
+ },
23992
+ "task": true
23993
+ },
23994
+ {
23995
+ "name": "postAuthenticatedSession__v1",
23996
+ "summary": "Creates an authenticated session. The response returns a cookie in the header called JSESSIONID tha",
23997
+ "description": "Creates an authenticated session. The response returns a cookie in the header called JSESSIONID that must be used in subsequent requests.",
23998
+ "input": [
23999
+ {
24000
+ "name": "iapMetadata",
24001
+ "type": "object",
24002
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
24003
+ "required": false,
24004
+ "schema": {
24005
+ "title": "iapMetadata",
24006
+ "type": "object"
24007
+ }
24008
+ }
24009
+ ],
24010
+ "output": {
24011
+ "name": "result",
24012
+ "type": "object",
24013
+ "description": "A JSON Object containing status, code and the result",
24014
+ "schema": {
24015
+ "title": "result",
24016
+ "type": "object"
24017
+ }
24018
+ },
24019
+ "roles": [
24020
+ "admin"
24021
+ ],
24022
+ "route": {
24023
+ "verb": "GET",
24024
+ "path": "/postAuthenticatedSession__v1"
24025
+ },
24026
+ "task": true
24027
+ },
24028
+ {
24029
+ "name": "postAuthenticatedSession__v2",
24030
+ "summary": "Creates an authenticated session. The response returns a cookie in the header called JSESSIONID tha",
24031
+ "description": "Creates an authenticated session. The response returns a cookie in the header called JSESSIONID that must be used in subsequent requests.",
24032
+ "input": [
24033
+ {
24034
+ "name": "iapMetadata",
24035
+ "type": "object",
24036
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
24037
+ "required": false,
24038
+ "schema": {
24039
+ "title": "iapMetadata",
24040
+ "type": "object"
24041
+ }
24042
+ }
24043
+ ],
24044
+ "output": {
24045
+ "name": "result",
24046
+ "type": "object",
24047
+ "description": "A JSON Object containing status, code and the result",
24048
+ "schema": {
24049
+ "title": "result",
24050
+ "type": "object"
24051
+ }
24052
+ },
24053
+ "roles": [
24054
+ "admin"
24055
+ ],
24056
+ "route": {
24057
+ "verb": "GET",
24058
+ "path": "/postAuthenticatedSession__v2"
24059
+ },
24060
+ "task": true
24061
+ },
24062
+ {
24063
+ "name": "postAuthenticatedSession__v3",
24064
+ "summary": "Creates an authenticated session. The response returns a cookie in the header called JSESSIONID tha",
24065
+ "description": "Creates an authenticated session. The response returns a cookie in the header called JSESSIONID that must be used in subsequent requests.",
24066
+ "input": [
24067
+ {
24068
+ "name": "iapMetadata",
24069
+ "type": "object",
24070
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
24071
+ "required": false,
24072
+ "schema": {
24073
+ "title": "iapMetadata",
24074
+ "type": "object"
24075
+ }
24076
+ }
24077
+ ],
24078
+ "output": {
24079
+ "name": "result",
24080
+ "type": "object",
24081
+ "description": "A JSON Object containing status, code and the result",
24082
+ "schema": {
24083
+ "title": "result",
24084
+ "type": "object"
24085
+ }
24086
+ },
24087
+ "roles": [
24088
+ "admin"
24089
+ ],
24090
+ "route": {
24091
+ "verb": "GET",
24092
+ "path": "/postAuthenticatedSession__v3"
24093
+ },
24094
+ "task": true
24095
+ },
24096
+ {
24097
+ "name": "getWebApplicationRulesRuleTypeAvailableActions__v1",
24098
+ "summary": "Fetches the granular actions supported for the applications.",
24099
+ "description": "Fetches the granular actions supported for the applications.",
24100
+ "input": [
24101
+ {
24102
+ "name": "ruleType",
24103
+ "type": "string",
24104
+ "info": "The rule type selected from the available options. Available values : [ \"SOCIAL_NETWORKING\", \"STREAMING_MEDIA\", \"WEBMAIL\", \"INSTANT_MESSAGING\", \"BUSINESS_PRODU...(description truncated): string",
24105
+ "required": true,
24106
+ "schema": {
24107
+ "title": "ruleType",
24108
+ "type": "string"
24109
+ }
24110
+ },
24111
+ {
24112
+ "name": "body",
24113
+ "type": "object",
24114
+ "info": ": object",
24115
+ "required": true,
24116
+ "schema": {
24117
+ "type": "object",
24118
+ "definitions": {}
24119
+ }
24120
+ },
24121
+ {
24122
+ "name": "iapMetadata",
24123
+ "type": "object",
24124
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
24125
+ "required": false,
24126
+ "schema": {
24127
+ "title": "iapMetadata",
24128
+ "type": "object"
24129
+ }
24130
+ }
24131
+ ],
24132
+ "output": {
24133
+ "name": "result",
24134
+ "type": "object",
24135
+ "description": "A JSON Object containing status, code and the result",
24136
+ "schema": {
24137
+ "title": "result",
24138
+ "type": "object"
24139
+ }
24140
+ },
24141
+ "roles": [
24142
+ "admin"
24143
+ ],
24144
+ "route": {
24145
+ "verb": "POST",
24146
+ "path": "/getWebApplicationRulesRuleTypeAvailableActions__v1"
24147
+ },
24148
+ "task": true
24149
+ },
24150
+ {
24151
+ "name": "getNssFeedsFeedOutputDefaults__v1",
24152
+ "summary": "Retrieves the default cloud NSS feed output format for different log types",
24153
+ "description": "Retrieves the default cloud NSS feed output format for different log types",
24154
+ "input": [
24155
+ {
24156
+ "name": "type",
24157
+ "type": "string",
24158
+ "info": "The type of logs that you are streaming. Available values : [ 0:\"ADMIN_AUDIT\" 1:\"WEBLOG\" 2:\"ALERT\" 3:\"FWLOG\" 4:\"DNSLOG\" 5:\"MULTIFEEDLOG\" 6:\"CASB_FILELOG\" 7:\"CASB_MAILLOG\"...(description truncated): string",
24159
+ "required": false,
24160
+ "schema": {
24161
+ "title": "type",
24162
+ "type": "string"
24163
+ }
24164
+ },
24165
+ {
24166
+ "name": "multiFeedType",
24167
+ "type": "string",
24168
+ "info": "This field is used to set the multi-feed type to Tunnel. Available values : [ \"ANY\", \"NONE\", \"WEB\", \"FW\", \"DNS\", \"EMAIL\", \"NSSALERTS\", \"BW\", \"CSTAT\", ...(description truncated): string",
24169
+ "required": false,
24170
+ "schema": {
24171
+ "title": "multiFeedType",
24172
+ "type": "string"
24173
+ }
24174
+ },
24175
+ {
24176
+ "name": "fieldFormat",
24177
+ "type": "string",
24178
+ "info": "The feed output type of your SIEM. Available values : [ \"QRADAR\", \"CSV\", \"TAB_SEPARATED\", \"SPLUNK_CIM\", \"ARCSIGHT_CEF\", \"SYMANTEC_MSS\", \"LOGRHYTHM\", \"NAME...(description truncated): string",
24179
+ "required": false,
24180
+ "schema": {
24181
+ "title": "fieldFormat",
24182
+ "type": "string"
24183
+ }
24184
+ },
24185
+ {
24186
+ "name": "iapMetadata",
24187
+ "type": "object",
24188
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
24189
+ "required": false,
24190
+ "schema": {
24191
+ "title": "iapMetadata",
24192
+ "type": "object"
24193
+ }
24194
+ }
24195
+ ],
24196
+ "output": {
24197
+ "name": "result",
24198
+ "type": "object",
24199
+ "description": "A JSON Object containing status, code and the result",
24200
+ "schema": {
24201
+ "title": "result",
24202
+ "type": "object"
24203
+ }
24204
+ },
24205
+ "roles": [
24206
+ "admin"
24207
+ ],
24208
+ "route": {
24209
+ "verb": "POST",
24210
+ "path": "/getNssFeedsFeedOutputDefaults__v1"
24211
+ },
24212
+ "task": true
24213
+ },
24214
+ {
24215
+ "name": "postAuthenticatedSession__v4",
24216
+ "summary": "Creates an authenticated session. The response returns a cookie in the header called JSESSIONID tha",
24217
+ "description": "Creates an authenticated session. The response returns a cookie in the header called JSESSIONID that must be used in subsequent requests.",
24218
+ "input": [
24219
+ {
24220
+ "name": "iapMetadata",
24221
+ "type": "object",
24222
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
24223
+ "required": false,
24224
+ "schema": {
24225
+ "title": "iapMetadata",
24226
+ "type": "object"
24227
+ }
24228
+ }
24229
+ ],
24230
+ "output": {
24231
+ "name": "result",
24232
+ "type": "object",
24233
+ "description": "A JSON Object containing status, code and the result",
24234
+ "schema": {
24235
+ "title": "result",
24236
+ "type": "object"
24237
+ }
24238
+ },
24239
+ "roles": [
24240
+ "admin"
24241
+ ],
24242
+ "route": {
24243
+ "verb": "GET",
24244
+ "path": "/postAuthenticatedSession__v4"
24245
+ },
24246
+ "task": true
24247
+ },
24248
+ {
24249
+ "name": "getWebApplicationRulesRuleTypeAvailableActions__v2",
24250
+ "summary": "Fetches the granular actions supported for the applications.",
24251
+ "description": "Fetches the granular actions supported for the applications.",
24252
+ "input": [
24253
+ {
24254
+ "name": "ruleType",
24255
+ "type": "string",
24256
+ "info": "The rule type selected from the available options. Available values : [ \"SOCIAL_NETWORKING\", \"STREAMING_MEDIA\", \"WEBMAIL\", \"INSTANT_MESSAGING\", \"BUSINESS_PRODU...(description truncated): string",
24257
+ "required": true,
24258
+ "schema": {
24259
+ "title": "ruleType",
24260
+ "type": "string"
24261
+ }
24262
+ },
24263
+ {
24264
+ "name": "body",
24265
+ "type": "object",
24266
+ "info": ": object",
24267
+ "required": true,
24268
+ "schema": {
24269
+ "type": "object",
24270
+ "definitions": {}
24271
+ }
24272
+ },
24273
+ {
24274
+ "name": "iapMetadata",
24275
+ "type": "object",
24276
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
24277
+ "required": false,
24278
+ "schema": {
24279
+ "title": "iapMetadata",
24280
+ "type": "object"
24281
+ }
24282
+ }
24283
+ ],
24284
+ "output": {
24285
+ "name": "result",
24286
+ "type": "object",
24287
+ "description": "A JSON Object containing status, code and the result",
24288
+ "schema": {
24289
+ "title": "result",
24290
+ "type": "object"
24291
+ }
24292
+ },
24293
+ "roles": [
24294
+ "admin"
24295
+ ],
24296
+ "route": {
24297
+ "verb": "POST",
24298
+ "path": "/getWebApplicationRulesRuleTypeAvailableActions__v2"
24299
+ },
24300
+ "task": true
24301
+ },
24302
+ {
24303
+ "name": "getNssFeedsFeedOutputDefaults__v2",
24304
+ "summary": "Retrieves the default cloud NSS feed output format for different log types",
24305
+ "description": "Retrieves the default cloud NSS feed output format for different log types",
24306
+ "input": [
24307
+ {
24308
+ "name": "type",
24309
+ "type": "string",
24310
+ "info": "The type of logs that you are streaming. Available values : [ 0:\"ADMIN_AUDIT\" 1:\"WEBLOG\" 2:\"ALERT\" 3:\"FWLOG\" 4:\"DNSLOG\" 5:\"MULTIFEEDLOG\" 6:\"CASB_FILELOG\" 7:\"CASB_MAILLOG\"...(description truncated): string",
24311
+ "required": false,
24312
+ "schema": {
24313
+ "title": "type",
24314
+ "type": "string"
24315
+ }
24316
+ },
24317
+ {
24318
+ "name": "multiFeedType",
24319
+ "type": "string",
24320
+ "info": "This field is used to set the multi-feed type to Tunnel. Available values : [ \"ANY\", \"NONE\", \"WEB\", \"FW\", \"DNS\", \"EMAIL\", \"NSSALERTS\", \"BW\", \"CSTAT\", ...(description truncated): string",
24321
+ "required": false,
24322
+ "schema": {
24323
+ "title": "multiFeedType",
24324
+ "type": "string"
24325
+ }
24326
+ },
24327
+ {
24328
+ "name": "fieldFormat",
24329
+ "type": "string",
24330
+ "info": "The feed output type of your SIEM. Available values : [ \"QRADAR\", \"CSV\", \"TAB_SEPARATED\", \"SPLUNK_CIM\", \"ARCSIGHT_CEF\", \"SYMANTEC_MSS\", \"LOGRHYTHM\", \"NAME...(description truncated): string",
24331
+ "required": false,
24332
+ "schema": {
24333
+ "title": "fieldFormat",
24334
+ "type": "string"
24335
+ }
24336
+ },
24337
+ {
24338
+ "name": "iapMetadata",
24339
+ "type": "object",
24340
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
24341
+ "required": false,
24342
+ "schema": {
24343
+ "title": "iapMetadata",
24344
+ "type": "object"
24345
+ }
24346
+ }
24347
+ ],
24348
+ "output": {
24349
+ "name": "result",
24350
+ "type": "object",
24351
+ "description": "A JSON Object containing status, code and the result",
24352
+ "schema": {
24353
+ "title": "result",
24354
+ "type": "object"
24355
+ }
24356
+ },
24357
+ "roles": [
24358
+ "admin"
24359
+ ],
24360
+ "route": {
24361
+ "verb": "POST",
24362
+ "path": "/getNssFeedsFeedOutputDefaults__v2"
24363
+ },
24364
+ "task": true
24365
+ },
24366
+ {
24367
+ "name": "postAuthenticatedSession__v5",
24368
+ "summary": "Creates an authenticated session. The response returns a cookie in the header called JSESSIONID tha",
24369
+ "description": "Creates an authenticated session. The response returns a cookie in the header called JSESSIONID that must be used in subsequent requests.",
24370
+ "input": [
24371
+ {
24372
+ "name": "iapMetadata",
24373
+ "type": "object",
24374
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
24375
+ "required": false,
24376
+ "schema": {
24377
+ "title": "iapMetadata",
24378
+ "type": "object"
24379
+ }
24380
+ }
24381
+ ],
24382
+ "output": {
24383
+ "name": "result",
24384
+ "type": "object",
24385
+ "description": "A JSON Object containing status, code and the result",
24386
+ "schema": {
24387
+ "title": "result",
24388
+ "type": "object"
24389
+ }
24390
+ },
24391
+ "roles": [
24392
+ "admin"
24393
+ ],
24394
+ "route": {
24395
+ "verb": "GET",
24396
+ "path": "/postAuthenticatedSession__v5"
24397
+ },
24398
+ "task": true
24399
+ },
24400
+ {
24401
+ "name": "getWebApplicationRulesRuleTypeAvailableActions__v3",
24402
+ "summary": "Fetches the granular actions supported for the applications.",
24403
+ "description": "Fetches the granular actions supported for the applications.",
24404
+ "input": [
24405
+ {
24406
+ "name": "ruleType",
24407
+ "type": "string",
24408
+ "info": "The rule type selected from the available options. Available values : [ \"SOCIAL_NETWORKING\", \"STREAMING_MEDIA\", \"WEBMAIL\", \"INSTANT_MESSAGING\", \"BUSINESS_PRODU...(description truncated): string",
24409
+ "required": true,
24410
+ "schema": {
24411
+ "title": "ruleType",
24412
+ "type": "string"
24413
+ }
24414
+ },
24415
+ {
24416
+ "name": "body",
24417
+ "type": "object",
24418
+ "info": ": object",
24419
+ "required": true,
24420
+ "schema": {
24421
+ "type": "object",
24422
+ "definitions": {}
24423
+ }
24424
+ },
24425
+ {
24426
+ "name": "iapMetadata",
24427
+ "type": "object",
24428
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
24429
+ "required": false,
24430
+ "schema": {
24431
+ "title": "iapMetadata",
24432
+ "type": "object"
24433
+ }
24434
+ }
24435
+ ],
24436
+ "output": {
24437
+ "name": "result",
24438
+ "type": "object",
24439
+ "description": "A JSON Object containing status, code and the result",
24440
+ "schema": {
24441
+ "title": "result",
24442
+ "type": "object"
24443
+ }
24444
+ },
24445
+ "roles": [
24446
+ "admin"
24447
+ ],
24448
+ "route": {
24449
+ "verb": "POST",
24450
+ "path": "/getWebApplicationRulesRuleTypeAvailableActions__v3"
24451
+ },
24452
+ "task": true
24453
+ },
24454
+ {
24455
+ "name": "getNssFeedsFeedOutputDefaults__v3",
24456
+ "summary": "Retrieves the default cloud NSS feed output format for different log types",
24457
+ "description": "Retrieves the default cloud NSS feed output format for different log types",
24458
+ "input": [
24459
+ {
24460
+ "name": "type",
24461
+ "type": "string",
24462
+ "info": "The type of logs that you are streaming. Available values : [ 0:\"ADMIN_AUDIT\" 1:\"WEBLOG\" 2:\"ALERT\" 3:\"FWLOG\" 4:\"DNSLOG\" 5:\"MULTIFEEDLOG\" 6:\"CASB_FILELOG\" 7:\"CASB_MAILLOG\"...(description truncated): string",
24463
+ "required": false,
24464
+ "schema": {
24465
+ "title": "type",
24466
+ "type": "string"
24467
+ }
24468
+ },
24469
+ {
24470
+ "name": "multiFeedType",
24471
+ "type": "string",
24472
+ "info": "This field is used to set the multi-feed type to Tunnel. Available values : [ \"ANY\", \"NONE\", \"WEB\", \"FW\", \"DNS\", \"EMAIL\", \"NSSALERTS\", \"BW\", \"CSTAT\", ...(description truncated): string",
24473
+ "required": false,
24474
+ "schema": {
24475
+ "title": "multiFeedType",
24476
+ "type": "string"
24477
+ }
24478
+ },
24479
+ {
24480
+ "name": "fieldFormat",
24481
+ "type": "string",
24482
+ "info": "The feed output type of your SIEM. Available values : [ \"QRADAR\", \"CSV\", \"TAB_SEPARATED\", \"SPLUNK_CIM\", \"ARCSIGHT_CEF\", \"SYMANTEC_MSS\", \"LOGRHYTHM\", \"NAME...(description truncated): string",
24483
+ "required": false,
24484
+ "schema": {
24485
+ "title": "fieldFormat",
24486
+ "type": "string"
24487
+ }
24488
+ },
24489
+ {
24490
+ "name": "iapMetadata",
24491
+ "type": "object",
24492
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
24493
+ "required": false,
24494
+ "schema": {
24495
+ "title": "iapMetadata",
24496
+ "type": "object"
24497
+ }
24498
+ }
24499
+ ],
24500
+ "output": {
24501
+ "name": "result",
24502
+ "type": "object",
24503
+ "description": "A JSON Object containing status, code and the result",
24504
+ "schema": {
24505
+ "title": "result",
24506
+ "type": "object"
24507
+ }
24508
+ },
24509
+ "roles": [
24510
+ "admin"
24511
+ ],
24512
+ "route": {
24513
+ "verb": "POST",
24514
+ "path": "/getNssFeedsFeedOutputDefaults__v3"
24515
+ },
24516
+ "task": true
24517
+ },
24518
+ {
24519
+ "name": "postAuthenticatedSession__v6",
24520
+ "summary": "Creates an authenticated session. The response returns a cookie in the header called JSESSIONID tha",
24521
+ "description": "Creates an authenticated session. The response returns a cookie in the header called JSESSIONID that must be used in subsequent requests.",
24522
+ "input": [
24523
+ {
24524
+ "name": "iapMetadata",
24525
+ "type": "object",
24526
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
24527
+ "required": false,
24528
+ "schema": {
24529
+ "title": "iapMetadata",
24530
+ "type": "object"
24531
+ }
24532
+ }
24533
+ ],
24534
+ "output": {
24535
+ "name": "result",
24536
+ "type": "object",
24537
+ "description": "A JSON Object containing status, code and the result",
24538
+ "schema": {
24539
+ "title": "result",
24540
+ "type": "object"
24541
+ }
24542
+ },
24543
+ "roles": [
24544
+ "admin"
24545
+ ],
24546
+ "route": {
24547
+ "verb": "GET",
24548
+ "path": "/postAuthenticatedSession__v6"
24549
+ },
24550
+ "task": true
24551
+ },
24552
+ {
24553
+ "name": "getWebApplicationRulesRuleTypeAvailableActions__v4",
24554
+ "summary": "Fetches the granular actions supported for the applications.",
24555
+ "description": "Fetches the granular actions supported for the applications.",
24556
+ "input": [
24557
+ {
24558
+ "name": "ruleType",
24559
+ "type": "string",
24560
+ "info": "The rule type selected from the available options. Available values : [ \"SOCIAL_NETWORKING\", \"STREAMING_MEDIA\", \"WEBMAIL\", \"INSTANT_MESSAGING\", \"BUSINESS_PRODU...(description truncated): string",
24561
+ "required": true,
24562
+ "schema": {
24563
+ "title": "ruleType",
24564
+ "type": "string"
24565
+ }
24566
+ },
24567
+ {
24568
+ "name": "body",
24569
+ "type": "object",
24570
+ "info": ": object",
24571
+ "required": true,
24572
+ "schema": {
24573
+ "type": "object",
24574
+ "definitions": {}
24575
+ }
24576
+ },
24577
+ {
24578
+ "name": "iapMetadata",
24579
+ "type": "object",
24580
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
24581
+ "required": false,
24582
+ "schema": {
24583
+ "title": "iapMetadata",
24584
+ "type": "object"
24585
+ }
24586
+ }
24587
+ ],
24588
+ "output": {
24589
+ "name": "result",
24590
+ "type": "object",
24591
+ "description": "A JSON Object containing status, code and the result",
24592
+ "schema": {
24593
+ "title": "result",
24594
+ "type": "object"
24595
+ }
24596
+ },
24597
+ "roles": [
24598
+ "admin"
24599
+ ],
24600
+ "route": {
24601
+ "verb": "POST",
24602
+ "path": "/getWebApplicationRulesRuleTypeAvailableActions__v4"
24603
+ },
24604
+ "task": true
24605
+ },
24606
+ {
24607
+ "name": "getNssFeedsFeedOutputDefaults__v4",
24608
+ "summary": "Retrieves the default cloud NSS feed output format for different log types",
24609
+ "description": "Retrieves the default cloud NSS feed output format for different log types",
24610
+ "input": [
24611
+ {
24612
+ "name": "type",
24613
+ "type": "string",
24614
+ "info": "The type of logs that you are streaming. Available values : [ 0:\"ADMIN_AUDIT\" 1:\"WEBLOG\" 2:\"ALERT\" 3:\"FWLOG\" 4:\"DNSLOG\" 5:\"MULTIFEEDLOG\" 6:\"CASB_FILELOG\" 7:\"CASB_MAILLOG\"...(description truncated): string",
24615
+ "required": false,
24616
+ "schema": {
24617
+ "title": "type",
24618
+ "type": "string"
24619
+ }
24620
+ },
24621
+ {
24622
+ "name": "multiFeedType",
24623
+ "type": "string",
24624
+ "info": "This field is used to set the multi-feed type to Tunnel. Available values : [ \"ANY\", \"NONE\", \"WEB\", \"FW\", \"DNS\", \"EMAIL\", \"NSSALERTS\", \"BW\", \"CSTAT\", ...(description truncated): string",
24625
+ "required": false,
24626
+ "schema": {
24627
+ "title": "multiFeedType",
24628
+ "type": "string"
24629
+ }
24630
+ },
24631
+ {
24632
+ "name": "fieldFormat",
24633
+ "type": "string",
24634
+ "info": "The feed output type of your SIEM. Available values : [ \"QRADAR\", \"CSV\", \"TAB_SEPARATED\", \"SPLUNK_CIM\", \"ARCSIGHT_CEF\", \"SYMANTEC_MSS\", \"LOGRHYTHM\", \"NAME...(description truncated): string",
24635
+ "required": false,
24636
+ "schema": {
24637
+ "title": "fieldFormat",
24638
+ "type": "string"
24639
+ }
24640
+ },
24641
+ {
24642
+ "name": "iapMetadata",
24643
+ "type": "object",
24644
+ "info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
24645
+ "required": false,
24646
+ "schema": {
24647
+ "title": "iapMetadata",
24648
+ "type": "object"
24649
+ }
24650
+ }
24651
+ ],
24652
+ "output": {
24653
+ "name": "result",
24654
+ "type": "object",
24655
+ "description": "A JSON Object containing status, code and the result",
24656
+ "schema": {
24657
+ "title": "result",
24658
+ "type": "object"
24659
+ }
24660
+ },
24661
+ "roles": [
24662
+ "admin"
24663
+ ],
24664
+ "route": {
24665
+ "verb": "POST",
24666
+ "path": "/getNssFeedsFeedOutputDefaults__v4"
24667
+ },
24668
+ "task": true
20337
24669
  }
20338
24670
  ]
20339
24671
  }