catocli 2.0.1__py3-none-any.whl → 2.0.3__py3-none-any.whl

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.

Potentially problematic release.


This version of catocli might be problematic. Click here for more details.

Files changed (108) hide show
  1. catocli/Utils/clidriver.py +41 -6
  2. catocli/__init__.py +1 -1
  3. catocli/parsers/custom/__init__.py +7 -5
  4. catocli/parsers/custom/customLib.py +490 -1
  5. catocli/parsers/custom/export_rules/__init__.py +5 -1
  6. catocli/parsers/custom/export_rules/export_rules.py +32 -183
  7. catocli/parsers/custom/export_sites/__init__.py +20 -0
  8. catocli/parsers/custom/export_sites/export_sites.py +365 -0
  9. catocli/parsers/custom/import_rules_to_tf/__init__.py +3 -3
  10. catocli/parsers/custom/import_rules_to_tf/import_rules_to_tf.py +20 -146
  11. catocli/parsers/custom/import_sites_to_tf/__init__.py +45 -0
  12. catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +891 -0
  13. catocli/parsers/mutation_accountManagement/__init__.py +18 -21
  14. catocli/parsers/mutation_admin/__init__.py +18 -21
  15. catocli/parsers/mutation_container/__init__.py +6 -7
  16. catocli/parsers/mutation_hardware/__init__.py +6 -7
  17. catocli/parsers/mutation_policy/__init__.py +666 -588
  18. catocli/parsers/mutation_policy_terminalServer/README.md +7 -0
  19. catocli/parsers/mutation_policy_terminalServer_addRule/README.md +18 -0
  20. catocli/parsers/mutation_policy_terminalServer_addSection/README.md +18 -0
  21. catocli/parsers/mutation_policy_terminalServer_createPolicyRevision/README.md +18 -0
  22. catocli/parsers/mutation_policy_terminalServer_discardPolicyRevision/README.md +18 -0
  23. catocli/parsers/mutation_policy_terminalServer_moveRule/README.md +18 -0
  24. catocli/parsers/mutation_policy_terminalServer_moveSection/README.md +18 -0
  25. catocli/parsers/mutation_policy_terminalServer_publishPolicyRevision/README.md +18 -0
  26. catocli/parsers/mutation_policy_terminalServer_removeRule/README.md +18 -0
  27. catocli/parsers/mutation_policy_terminalServer_removeSection/README.md +18 -0
  28. catocli/parsers/mutation_policy_terminalServer_updatePolicy/README.md +18 -0
  29. catocli/parsers/mutation_policy_terminalServer_updateRule/README.md +18 -0
  30. catocli/parsers/mutation_policy_terminalServer_updateSection/README.md +18 -0
  31. catocli/parsers/mutation_sandbox/__init__.py +12 -14
  32. catocli/parsers/mutation_site/__init__.py +189 -175
  33. catocli/parsers/mutation_site_addSocketAddOnCard/README.md +17 -0
  34. catocli/parsers/mutation_site_removeSocketAddOnCard/README.md +17 -0
  35. catocli/parsers/mutation_site_startSiteUpgrade/README.md +17 -0
  36. catocli/parsers/mutation_sites/__init__.py +189 -175
  37. catocli/parsers/mutation_sites_addSocketAddOnCard/README.md +17 -0
  38. catocli/parsers/mutation_sites_removeSocketAddOnCard/README.md +17 -0
  39. catocli/parsers/mutation_sites_startSiteUpgrade/README.md +17 -0
  40. catocli/parsers/mutation_xdr/__init__.py +18 -21
  41. catocli/parsers/parserApiClient.py +36 -11
  42. catocli/parsers/query_accountBySubdomain/__init__.py +6 -7
  43. catocli/parsers/query_accountManagement/__init__.py +6 -7
  44. catocli/parsers/query_accountMetrics/__init__.py +6 -7
  45. catocli/parsers/query_accountRoles/__init__.py +6 -7
  46. catocli/parsers/query_accountSnapshot/__init__.py +6 -7
  47. catocli/parsers/query_admin/__init__.py +6 -7
  48. catocli/parsers/query_admins/__init__.py +6 -7
  49. catocli/parsers/query_appStats/__init__.py +6 -7
  50. catocli/parsers/query_appStatsTimeSeries/__init__.py +6 -7
  51. catocli/parsers/query_auditFeed/__init__.py +6 -7
  52. catocli/parsers/query_catalogs/__init__.py +6 -7
  53. catocli/parsers/query_container/__init__.py +6 -7
  54. catocli/parsers/query_devices/README.md +2 -1
  55. catocli/parsers/query_devices/__init__.py +6 -7
  56. catocli/parsers/query_entityLookup/__init__.py +6 -7
  57. catocli/parsers/query_events/__init__.py +6 -7
  58. catocli/parsers/query_eventsFeed/README.md +1 -1
  59. catocli/parsers/query_eventsFeed/__init__.py +6 -7
  60. catocli/parsers/query_eventsTimeSeries/__init__.py +6 -7
  61. catocli/parsers/query_hardware/__init__.py +6 -7
  62. catocli/parsers/query_hardwareManagement/__init__.py +6 -7
  63. catocli/parsers/query_licensing/__init__.py +6 -7
  64. catocli/parsers/query_policy/README.md +2 -1
  65. catocli/parsers/query_policy/__init__.py +6 -7
  66. catocli/parsers/query_sandbox/__init__.py +6 -7
  67. catocli/parsers/query_site/README.md +2 -1
  68. catocli/parsers/query_site/__init__.py +6 -7
  69. catocli/parsers/query_siteLocation/__init__.py +4 -8
  70. catocli/parsers/query_subDomains/__init__.py +6 -7
  71. catocli/parsers/query_xdr/__init__.py +12 -14
  72. catocli/parsers/raw/README.md +4 -0
  73. catocli/parsers/raw/__init__.py +5 -2
  74. {catocli-2.0.1.dist-info → catocli-2.0.3.dist-info}/METADATA +1 -1
  75. {catocli-2.0.1.dist-info → catocli-2.0.3.dist-info}/RECORD +108 -67
  76. graphql_client/api/call_api.py +12 -6
  77. models/mutation.policy.remotePortFwd.updateRule.json +6 -6
  78. models/mutation.policy.terminalServer.addRule.json +2403 -0
  79. models/mutation.policy.terminalServer.addSection.json +1358 -0
  80. models/mutation.policy.terminalServer.createPolicyRevision.json +1873 -0
  81. models/mutation.policy.terminalServer.discardPolicyRevision.json +1807 -0
  82. models/mutation.policy.terminalServer.moveRule.json +1605 -0
  83. models/mutation.policy.terminalServer.moveSection.json +1259 -0
  84. models/mutation.policy.terminalServer.publishPolicyRevision.json +1864 -0
  85. models/mutation.policy.terminalServer.removeRule.json +1253 -0
  86. models/mutation.policy.terminalServer.removeSection.json +958 -0
  87. models/mutation.policy.terminalServer.updatePolicy.json +1883 -0
  88. models/mutation.policy.terminalServer.updateRule.json +2096 -0
  89. models/mutation.policy.terminalServer.updateSection.json +1111 -0
  90. models/mutation.site.addSocketAddOnCard.json +1050 -0
  91. models/mutation.site.removeSocketAddOnCard.json +786 -0
  92. models/mutation.site.startSiteUpgrade.json +802 -0
  93. models/mutation.sites.addSocketAddOnCard.json +1050 -0
  94. models/mutation.sites.removeSocketAddOnCard.json +786 -0
  95. models/mutation.sites.startSiteUpgrade.json +802 -0
  96. models/query.devices.json +311 -2
  97. models/query.events.json +48 -0
  98. models/query.eventsFeed.json +12 -0
  99. models/query.eventsTimeSeries.json +36 -0
  100. models/query.licensing.json +21815 -10093
  101. models/query.policy.json +1898 -305
  102. models/query.site.json +225 -0
  103. models/query.siteLocation.json +97190 -295396
  104. schema/catolib.py +63 -30
  105. {catocli-2.0.1.dist-info → catocli-2.0.3.dist-info}/LICENSE +0 -0
  106. {catocli-2.0.1.dist-info → catocli-2.0.3.dist-info}/WHEEL +0 -0
  107. {catocli-2.0.1.dist-info → catocli-2.0.3.dist-info}/entry_points.txt +0 -0
  108. {catocli-2.0.1.dist-info → catocli-2.0.3.dist-info}/top_level.txt +0 -0
models/query.policy.json CHANGED
@@ -125,6 +125,10 @@
125
125
  "SubscriptionMailingListRef": true,
126
126
  "SubscriptionWebhookRef": true,
127
127
  "SystemGroupRef": true,
128
+ "TerminalServerPolicy": true,
129
+ "TerminalServerPolicyQueries": true,
130
+ "TerminalServerRule": true,
131
+ "TerminalServerRulePayload": true,
128
132
  "UserRef": true,
129
133
  "UsersGroupRef": true,
130
134
  "WanFirewallActionEnum": true,
@@ -775,6 +779,126 @@
775
779
  },
776
780
  "varName": "socketLanPolicyInput"
777
781
  },
782
+ "terminalServerPolicyInput": {
783
+ "defaultValue": null,
784
+ "description": null,
785
+ "id_str": "policy___input",
786
+ "name": "input",
787
+ "path": "policy.input",
788
+ "requestStr": "$terminalServerPolicyInput:TerminalServerPolicyInput ",
789
+ "required": false,
790
+ "responseStr": "input:$terminalServerPolicyInput ",
791
+ "type": {
792
+ "definition": {
793
+ "description": null,
794
+ "enumValues": null,
795
+ "fields": null,
796
+ "inputFields": {
797
+ "revision": {
798
+ "defaultValue": null,
799
+ "description": "A revision is a specific instance of the policy.\n Unpublished revisions are working copies of the policy available to a specific\n admin or a set of admins\n Published revisions are revisions that were applied to the account network.\n The last published revision is the active policy.",
800
+ "id_str": "policy___input___revision",
801
+ "name": "revision",
802
+ "path": "policy.input.revision",
803
+ "requestStr": "$policyRevisionInput:PolicyRevisionInput ",
804
+ "required": false,
805
+ "responseStr": "revision:$policyRevisionInput ",
806
+ "type": {
807
+ "definition": {
808
+ "description": "Input for specifying a policy revision",
809
+ "enumValues": null,
810
+ "fields": null,
811
+ "inputFields": {
812
+ "id": {
813
+ "defaultValue": null,
814
+ "description": null,
815
+ "id_str": "policy___input___revision___id",
816
+ "name": "id",
817
+ "path": "policy.input.revision.id",
818
+ "requestStr": "$id:ID ",
819
+ "required": false,
820
+ "responseStr": "id:$id ",
821
+ "type": {
822
+ "kind": [
823
+ "SCALAR"
824
+ ],
825
+ "name": "ID",
826
+ "non_null": false
827
+ },
828
+ "varName": "id"
829
+ },
830
+ "type": {
831
+ "defaultValue": "PRIVATE",
832
+ "description": null,
833
+ "id_str": "policy___input___revision___type",
834
+ "name": "type",
835
+ "path": "policy.input.revision.type",
836
+ "requestStr": "$type:PolicyRevisionType ",
837
+ "required": false,
838
+ "responseStr": "type:$type ",
839
+ "type": {
840
+ "definition": {
841
+ "description": "Enum for the type of a policy revision",
842
+ "enumValues": [
843
+ {
844
+ "deprecationReason": null,
845
+ "description": null,
846
+ "isDeprecated": false,
847
+ "name": "PRIVATE"
848
+ },
849
+ {
850
+ "deprecationReason": null,
851
+ "description": null,
852
+ "isDeprecated": false,
853
+ "name": "PUBLIC"
854
+ }
855
+ ],
856
+ "fields": null,
857
+ "inputFields": null,
858
+ "interfaces": null,
859
+ "kind": "ENUM",
860
+ "name": "PolicyRevisionType",
861
+ "possibleTypes": null
862
+ },
863
+ "indexType": "enum",
864
+ "kind": [
865
+ "ENUM"
866
+ ],
867
+ "name": "PolicyRevisionType",
868
+ "non_null": false
869
+ },
870
+ "varName": "type"
871
+ }
872
+ },
873
+ "interfaces": null,
874
+ "kind": "INPUT_OBJECT",
875
+ "name": "PolicyRevisionInput",
876
+ "possibleTypes": null
877
+ },
878
+ "indexType": "input_object",
879
+ "kind": [
880
+ "INPUT_OBJECT"
881
+ ],
882
+ "name": "PolicyRevisionInput",
883
+ "non_null": false
884
+ },
885
+ "varName": "policyRevisionInput"
886
+ }
887
+ },
888
+ "interfaces": null,
889
+ "kind": "INPUT_OBJECT",
890
+ "name": "TerminalServerPolicyInput",
891
+ "possibleTypes": null
892
+ },
893
+ "indexType": "input_object",
894
+ "kind": [
895
+ "INPUT_OBJECT"
896
+ ],
897
+ "name": "TerminalServerPolicyInput",
898
+ "non_null": false
899
+ },
900
+ "varName": "terminalServerPolicyInput"
901
+ },
778
902
  "wanFirewallPolicyInput": {
779
903
  "defaultValue": null,
780
904
  "description": null,
@@ -22300,17 +22424,17 @@
22300
22424
  },
22301
22425
  "varName": "socketLanPolicyQueries"
22302
22426
  },
22303
- "wanFirewall": {
22427
+ "terminalServer": {
22304
22428
  "args": {},
22305
22429
  "deprecationReason": null,
22306
22430
  "description": null,
22307
- "id_str": "wanFirewall",
22431
+ "id_str": "terminalServer",
22308
22432
  "isDeprecated": false,
22309
- "name": "wanFirewall",
22310
- "path": "wanFirewall",
22311
- "requestStr": "$wanFirewallPolicyQueries:WanFirewallPolicyQueries ",
22433
+ "name": "terminalServer",
22434
+ "path": "terminalServer",
22435
+ "requestStr": "$terminalServerPolicyQueries:TerminalServerPolicyQueries ",
22312
22436
  "required": false,
22313
- "responseStr": "wanFirewall:$wanFirewallPolicyQueries ",
22437
+ "responseStr": "terminalServer:$terminalServerPolicyQueries ",
22314
22438
  "type": {
22315
22439
  "definition": {
22316
22440
  "description": null,
@@ -22324,9 +22448,9 @@
22324
22448
  "id_str": "policy___input",
22325
22449
  "name": "input",
22326
22450
  "path": "policy.input",
22327
- "requestStr": "$wanFirewallPolicyInput:WanFirewallPolicyInput ",
22451
+ "requestStr": "$terminalServerPolicyInput:TerminalServerPolicyInput ",
22328
22452
  "required": false,
22329
- "responseStr": "input:$wanFirewallPolicyInput ",
22453
+ "responseStr": "input:$terminalServerPolicyInput ",
22330
22454
  "type": {
22331
22455
  "definition": {
22332
22456
  "description": null,
@@ -22426,28 +22550,28 @@
22426
22550
  },
22427
22551
  "interfaces": null,
22428
22552
  "kind": "INPUT_OBJECT",
22429
- "name": "WanFirewallPolicyInput",
22553
+ "name": "TerminalServerPolicyInput",
22430
22554
  "possibleTypes": null
22431
22555
  },
22432
22556
  "indexType": "input_object",
22433
22557
  "kind": [
22434
22558
  "INPUT_OBJECT"
22435
22559
  ],
22436
- "name": "WanFirewallPolicyInput",
22560
+ "name": "TerminalServerPolicyInput",
22437
22561
  "non_null": false
22438
22562
  },
22439
- "varName": "wanFirewallPolicyInput"
22563
+ "varName": "terminalServerPolicyInput"
22440
22564
  }
22441
22565
  },
22442
22566
  "deprecationReason": null,
22443
22567
  "description": null,
22444
- "id_str": "wanFirewall___policy",
22568
+ "id_str": "terminalServer___policy",
22445
22569
  "isDeprecated": false,
22446
22570
  "name": "policy",
22447
- "path": "wanFirewall.policy",
22448
- "requestStr": "$wanFirewallPolicy:WanFirewallPolicy! ",
22571
+ "path": "terminalServer.policy",
22572
+ "requestStr": "$terminalServerPolicy:TerminalServerPolicy! ",
22449
22573
  "required": true,
22450
- "responseStr": "policy:$wanFirewallPolicy ",
22574
+ "responseStr": "policy:$terminalServerPolicy ",
22451
22575
  "type": {
22452
22576
  "definition": {
22453
22577
  "description": null,
@@ -22458,10 +22582,10 @@
22458
22582
  "args": {},
22459
22583
  "deprecationReason": null,
22460
22584
  "description": null,
22461
- "id_str": "wanFirewall___policy___audit",
22585
+ "id_str": "terminalServer___policy___audit",
22462
22586
  "isDeprecated": false,
22463
22587
  "name": "audit",
22464
- "path": "wanFirewall.policy.audit",
22588
+ "path": "terminalServer.policy.audit",
22465
22589
  "requestStr": "$policyAudit:PolicyAudit ",
22466
22590
  "required": false,
22467
22591
  "responseStr": "audit:$policyAudit ",
@@ -22474,10 +22598,10 @@
22474
22598
  "args": {},
22475
22599
  "deprecationReason": null,
22476
22600
  "description": null,
22477
- "id_str": "wanFirewall___policy___audit___publishedBy",
22601
+ "id_str": "terminalServer___policy___audit___publishedBy",
22478
22602
  "isDeprecated": false,
22479
22603
  "name": "publishedBy",
22480
- "path": "wanFirewall.policy.audit.publishedBy",
22604
+ "path": "terminalServer.policy.audit.publishedBy",
22481
22605
  "requestStr": "$publishedBy:String! ",
22482
22606
  "required": true,
22483
22607
  "responseStr": "publishedBy:$publishedBy ",
@@ -22495,10 +22619,10 @@
22495
22619
  "args": {},
22496
22620
  "deprecationReason": null,
22497
22621
  "description": null,
22498
- "id_str": "wanFirewall___policy___audit___publishedTime",
22622
+ "id_str": "terminalServer___policy___audit___publishedTime",
22499
22623
  "isDeprecated": false,
22500
22624
  "name": "publishedTime",
22501
- "path": "wanFirewall.policy.audit.publishedTime",
22625
+ "path": "terminalServer.policy.audit.publishedTime",
22502
22626
  "requestStr": "$publishedTime:DateTime! ",
22503
22627
  "required": true,
22504
22628
  "responseStr": "publishedTime:$publishedTime ",
@@ -22532,10 +22656,10 @@
22532
22656
  "args": {},
22533
22657
  "deprecationReason": null,
22534
22658
  "description": null,
22535
- "id_str": "wanFirewall___policy___enabled",
22659
+ "id_str": "terminalServer___policy___enabled",
22536
22660
  "isDeprecated": false,
22537
22661
  "name": "enabled",
22538
- "path": "wanFirewall.policy.enabled",
22662
+ "path": "terminalServer.policy.enabled",
22539
22663
  "requestStr": "$enabled:Boolean! ",
22540
22664
  "required": true,
22541
22665
  "responseStr": "enabled:$enabled ",
@@ -22554,10 +22678,10 @@
22554
22678
  "args": {},
22555
22679
  "deprecationReason": null,
22556
22680
  "description": null,
22557
- "id_str": "wanFirewall___policy___revision",
22681
+ "id_str": "terminalServer___policy___revision",
22558
22682
  "isDeprecated": false,
22559
22683
  "name": "revision",
22560
- "path": "wanFirewall.policy.revision",
22684
+ "path": "terminalServer.policy.revision",
22561
22685
  "requestStr": "$policyRevision:PolicyRevision ",
22562
22686
  "required": false,
22563
22687
  "responseStr": "revision:$policyRevision ",
@@ -22570,10 +22694,10 @@
22570
22694
  "args": {},
22571
22695
  "deprecationReason": null,
22572
22696
  "description": null,
22573
- "id_str": "wanFirewall___policy___revision___changes",
22697
+ "id_str": "terminalServer___policy___revision___changes",
22574
22698
  "isDeprecated": false,
22575
22699
  "name": "changes",
22576
- "path": "wanFirewall.policy.revision.changes",
22700
+ "path": "terminalServer.policy.revision.changes",
22577
22701
  "requestStr": "$changes:Int! ",
22578
22702
  "required": true,
22579
22703
  "responseStr": "changes:$changes ",
@@ -22591,10 +22715,10 @@
22591
22715
  "args": {},
22592
22716
  "deprecationReason": null,
22593
22717
  "description": null,
22594
- "id_str": "wanFirewall___policy___revision___createdTime",
22718
+ "id_str": "terminalServer___policy___revision___createdTime",
22595
22719
  "isDeprecated": false,
22596
22720
  "name": "createdTime",
22597
- "path": "wanFirewall.policy.revision.createdTime",
22721
+ "path": "terminalServer.policy.revision.createdTime",
22598
22722
  "requestStr": "$createdTime:DateTime! ",
22599
22723
  "required": true,
22600
22724
  "responseStr": "createdTime:$createdTime ",
@@ -22612,10 +22736,10 @@
22612
22736
  "args": {},
22613
22737
  "deprecationReason": null,
22614
22738
  "description": null,
22615
- "id_str": "wanFirewall___policy___revision___description",
22739
+ "id_str": "terminalServer___policy___revision___description",
22616
22740
  "isDeprecated": false,
22617
22741
  "name": "description",
22618
- "path": "wanFirewall.policy.revision.description",
22742
+ "path": "terminalServer.policy.revision.description",
22619
22743
  "requestStr": "$description:String! ",
22620
22744
  "required": true,
22621
22745
  "responseStr": "description:$description ",
@@ -22633,10 +22757,10 @@
22633
22757
  "args": {},
22634
22758
  "deprecationReason": null,
22635
22759
  "description": null,
22636
- "id_str": "wanFirewall___policy___revision___id",
22760
+ "id_str": "terminalServer___policy___revision___id",
22637
22761
  "isDeprecated": false,
22638
22762
  "name": "id",
22639
- "path": "wanFirewall.policy.revision.id",
22763
+ "path": "terminalServer.policy.revision.id",
22640
22764
  "requestStr": "$id:ID! ",
22641
22765
  "required": true,
22642
22766
  "responseStr": "id:$id ",
@@ -22654,10 +22778,10 @@
22654
22778
  "args": {},
22655
22779
  "deprecationReason": null,
22656
22780
  "description": null,
22657
- "id_str": "wanFirewall___policy___revision___name",
22781
+ "id_str": "terminalServer___policy___revision___name",
22658
22782
  "isDeprecated": false,
22659
22783
  "name": "name",
22660
- "path": "wanFirewall.policy.revision.name",
22784
+ "path": "terminalServer.policy.revision.name",
22661
22785
  "requestStr": "$name:String! ",
22662
22786
  "required": true,
22663
22787
  "responseStr": "name:$name ",
@@ -22675,10 +22799,10 @@
22675
22799
  "args": {},
22676
22800
  "deprecationReason": null,
22677
22801
  "description": null,
22678
- "id_str": "wanFirewall___policy___revision___updatedTime",
22802
+ "id_str": "terminalServer___policy___revision___updatedTime",
22679
22803
  "isDeprecated": false,
22680
22804
  "name": "updatedTime",
22681
- "path": "wanFirewall.policy.revision.updatedTime",
22805
+ "path": "terminalServer.policy.revision.updatedTime",
22682
22806
  "requestStr": "$updatedTime:DateTime! ",
22683
22807
  "required": true,
22684
22808
  "responseStr": "updatedTime:$updatedTime ",
@@ -22709,20 +22833,20 @@
22709
22833
  "varName": "policyRevision"
22710
22834
  },
22711
22835
  "rules": {
22712
- "alias": "wanFirewallRulePayloadRules: rules",
22836
+ "alias": "terminalServerRulePayloadRules: rules",
22713
22837
  "args": {},
22714
22838
  "deprecationReason": null,
22715
22839
  "description": null,
22716
- "id_str": "wanFirewall___policy___rules",
22840
+ "id_str": "terminalServer___policy___rules",
22717
22841
  "isDeprecated": false,
22718
22842
  "name": "rules",
22719
- "path": "wanFirewall.policy.rules",
22720
- "requestStr": "$wanFirewallRulePayload:[WanFirewallRulePayload]! ",
22843
+ "path": "terminalServer.policy.rules",
22844
+ "requestStr": "$terminalServerRulePayload:[TerminalServerRulePayload]! ",
22721
22845
  "required": true,
22722
- "responseStr": "rules:$wanFirewallRulePayload ",
22846
+ "responseStr": "rules:$terminalServerRulePayload ",
22723
22847
  "type": {
22724
22848
  "definition": {
22725
- "description": "Wan Firewall policy information for a specific revision",
22849
+ "description": null,
22726
22850
  "enumValues": null,
22727
22851
  "fields": {
22728
22852
  "audit": {
@@ -22730,10 +22854,10 @@
22730
22854
  "args": {},
22731
22855
  "deprecationReason": null,
22732
22856
  "description": null,
22733
- "id_str": "wanFirewall___policy___rules___audit",
22857
+ "id_str": "terminalServer___policy___rules___audit",
22734
22858
  "isDeprecated": false,
22735
22859
  "name": "audit",
22736
- "path": "wanFirewall.policy.rules.audit",
22860
+ "path": "terminalServer.policy.rules.audit",
22737
22861
  "requestStr": "$policyElementAudit:PolicyElementAudit! ",
22738
22862
  "required": true,
22739
22863
  "responseStr": "audit:$policyElementAudit ",
@@ -22746,10 +22870,10 @@
22746
22870
  "args": {},
22747
22871
  "deprecationReason": null,
22748
22872
  "description": "The admin, or the API-key, that performed the last update",
22749
- "id_str": "wanFirewall___policy___rules___audit___updatedBy",
22873
+ "id_str": "terminalServer___policy___rules___audit___updatedBy",
22750
22874
  "isDeprecated": false,
22751
22875
  "name": "updatedBy",
22752
- "path": "wanFirewall.policy.rules.audit.updatedBy",
22876
+ "path": "terminalServer.policy.rules.audit.updatedBy",
22753
22877
  "requestStr": "$updatedBy:String! ",
22754
22878
  "required": true,
22755
22879
  "responseStr": "updatedBy:$updatedBy ",
@@ -22767,10 +22891,10 @@
22767
22891
  "args": {},
22768
22892
  "deprecationReason": null,
22769
22893
  "description": "The last date and time the rule was updated",
22770
- "id_str": "wanFirewall___policy___rules___audit___updatedTime",
22894
+ "id_str": "terminalServer___policy___rules___audit___updatedTime",
22771
22895
  "isDeprecated": false,
22772
22896
  "name": "updatedTime",
22773
- "path": "wanFirewall.policy.rules.audit.updatedTime",
22897
+ "path": "terminalServer.policy.rules.audit.updatedTime",
22774
22898
  "requestStr": "$updatedTime:DateTime! ",
22775
22899
  "required": true,
22776
22900
  "responseStr": "updatedTime:$updatedTime ",
@@ -22806,10 +22930,10 @@
22806
22930
  "args": {},
22807
22931
  "deprecationReason": null,
22808
22932
  "description": null,
22809
- "id_str": "wanFirewall___policy___rules___properties",
22933
+ "id_str": "terminalServer___policy___rules___properties",
22810
22934
  "isDeprecated": false,
22811
22935
  "name": "properties",
22812
- "path": "wanFirewall.policy.rules.properties",
22936
+ "path": "terminalServer.policy.rules.properties",
22813
22937
  "requestStr": "$properties:[PolicyElementPropertiesEnum]! ",
22814
22938
  "required": true,
22815
22939
  "responseStr": "properties:$properties ",
@@ -22880,321 +23004,1780 @@
22880
23004
  "varName": "properties"
22881
23005
  },
22882
23006
  "rule": {
22883
- "alias": "wanFirewallRuleRule: rule",
23007
+ "alias": "terminalServerRuleRule: rule",
22884
23008
  "args": {},
22885
23009
  "deprecationReason": null,
22886
23010
  "description": null,
22887
- "id_str": "wanFirewall___policy___rules___rule",
23011
+ "id_str": "terminalServer___policy___rules___rule",
22888
23012
  "isDeprecated": false,
22889
23013
  "name": "rule",
22890
- "path": "wanFirewall.policy.rules.rule",
22891
- "requestStr": "$wanFirewallRule:WanFirewallRule! ",
23014
+ "path": "terminalServer.policy.rules.rule",
23015
+ "requestStr": "$terminalServerRule:TerminalServerRule! ",
22892
23016
  "required": true,
22893
- "responseStr": "rule:$wanFirewallRule ",
23017
+ "responseStr": "rule:$terminalServerRule ",
22894
23018
  "type": {
22895
23019
  "definition": {
22896
23020
  "description": null,
22897
23021
  "enumValues": null,
22898
23022
  "fields": {
22899
- "action": {
22900
- "alias": "wanFirewallActionEnumAction: action",
23023
+ "allowedHostIP": {
23024
+ "alias": "globalIpRangeRefAllowedHostIP: allowedHostIP",
22901
23025
  "args": {},
22902
23026
  "deprecationReason": null,
22903
- "description": "The action applied by the Internet Firewall if the rule is matched",
22904
- "id_str": "wanFirewall___policy___rules___rule___action",
23027
+ "description": "Allowed Host IP range.\nall the other IPs will be blocked by the pop.\nGlobally defined IP range",
23028
+ "id_str": "terminalServer___policy___rules___rule___allowedHostIP",
22905
23029
  "isDeprecated": false,
22906
- "name": "action",
22907
- "path": "wanFirewall.policy.rules.rule.action",
22908
- "requestStr": "$action:WanFirewallActionEnum! ",
23030
+ "name": "allowedHostIP",
23031
+ "path": "terminalServer.policy.rules.rule.allowedHostIP",
23032
+ "requestStr": "$globalIpRangeRef:GlobalIpRangeRef! ",
22909
23033
  "required": true,
22910
- "responseStr": "action:$action ",
23034
+ "responseStr": "allowedHostIP:$globalIpRangeRef ",
22911
23035
  "type": {
22912
23036
  "definition": {
22913
- "description": null,
22914
- "enumValues": [
22915
- {
22916
- "deprecationReason": null,
22917
- "description": "Deny the network traffic from passing through the firewall.",
22918
- "isDeprecated": false,
22919
- "name": "BLOCK"
22920
- },
22921
- {
23037
+ "description": "A reference identifying the GlobalIpRange object. ID: Unique GlobalIpRange Identifier, Name: The GlobalIpRange Name",
23038
+ "enumValues": null,
23039
+ "fields": {
23040
+ "id": {
23041
+ "args": {},
22922
23042
  "deprecationReason": null,
22923
- "description": "Allow the network traffic to pass through the firewall.",
23043
+ "description": null,
23044
+ "id_str": "terminalServer___policy___rules___rule___allowedHostIP___id",
22924
23045
  "isDeprecated": false,
22925
- "name": "ALLOW"
23046
+ "name": "id",
23047
+ "path": "terminalServer.policy.rules.rule.allowedHostIP.id",
23048
+ "requestStr": "$id:ID! ",
23049
+ "required": true,
23050
+ "responseStr": "id:$id ",
23051
+ "type": {
23052
+ "kind": [
23053
+ "NON_NULL",
23054
+ "SCALAR"
23055
+ ],
23056
+ "name": "ID",
23057
+ "non_null": false
23058
+ },
23059
+ "varName": "id"
22926
23060
  },
22927
- {
23061
+ "name": {
23062
+ "args": {},
22928
23063
  "deprecationReason": null,
22929
- "description": "Requests user confirmation to allow or block network traffic.",
23064
+ "description": null,
23065
+ "id_str": "terminalServer___policy___rules___rule___allowedHostIP___name",
22930
23066
  "isDeprecated": false,
22931
- "name": "PROMPT"
23067
+ "name": "name",
23068
+ "path": "terminalServer.policy.rules.rule.allowedHostIP.name",
23069
+ "requestStr": "$name:String! ",
23070
+ "required": true,
23071
+ "responseStr": "name:$name ",
23072
+ "type": {
23073
+ "kind": [
23074
+ "NON_NULL",
23075
+ "SCALAR"
23076
+ ],
23077
+ "name": "String",
23078
+ "non_null": false
23079
+ },
23080
+ "varName": "name"
22932
23081
  }
22933
- ],
22934
- "fields": null,
23082
+ },
22935
23083
  "inputFields": null,
22936
- "interfaces": null,
22937
- "kind": "ENUM",
22938
- "name": "WanFirewallActionEnum",
23084
+ "interfaces": {},
23085
+ "kind": "OBJECT",
23086
+ "name": "GlobalIpRangeRef",
22939
23087
  "possibleTypes": null
22940
23088
  },
22941
- "indexType": "enum",
23089
+ "indexType": "object",
22942
23090
  "kind": [
22943
23091
  "NON_NULL",
22944
- "ENUM"
23092
+ "OBJECT"
22945
23093
  ],
22946
- "name": "WanFirewallActionEnum",
23094
+ "name": "GlobalIpRangeRef",
22947
23095
  "non_null": false
22948
23096
  },
22949
- "varName": "action"
23097
+ "varName": "globalIpRangeRef"
22950
23098
  },
22951
- "application": {
22952
- "alias": "wanFirewallApplicationApplication: application",
23099
+ "description": {
22953
23100
  "args": {},
22954
23101
  "deprecationReason": null,
22955
- "description": "Application traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
22956
- "id_str": "wanFirewall___policy___rules___rule___application",
23102
+ "description": "Description for the rule",
23103
+ "id_str": "terminalServer___policy___rules___rule___description",
22957
23104
  "isDeprecated": false,
22958
- "name": "application",
22959
- "path": "wanFirewall.policy.rules.rule.application",
22960
- "requestStr": "$wanFirewallApplication:WanFirewallApplication! ",
23105
+ "name": "description",
23106
+ "path": "terminalServer.policy.rules.rule.description",
23107
+ "requestStr": "$description:String! ",
22961
23108
  "required": true,
22962
- "responseStr": "application:$wanFirewallApplication ",
23109
+ "responseStr": "description:$description ",
23110
+ "type": {
23111
+ "kind": [
23112
+ "NON_NULL",
23113
+ "SCALAR"
23114
+ ],
23115
+ "name": "String",
23116
+ "non_null": false
23117
+ },
23118
+ "varName": "description"
23119
+ },
23120
+ "enabled": {
23121
+ "args": {},
23122
+ "deprecationReason": null,
23123
+ "description": "TRUE = Rule is enabled \n FALSE = Rule is disabled",
23124
+ "id_str": "terminalServer___policy___rules___rule___enabled",
23125
+ "isDeprecated": false,
23126
+ "name": "enabled",
23127
+ "path": "terminalServer.policy.rules.rule.enabled",
23128
+ "requestStr": "$enabled:Boolean! ",
23129
+ "required": true,
23130
+ "responseStr": "enabled:$enabled ",
23131
+ "type": {
23132
+ "kind": [
23133
+ "NON_NULL",
23134
+ "SCALAR"
23135
+ ],
23136
+ "name": "Boolean",
23137
+ "non_null": false
23138
+ },
23139
+ "varName": "enabled"
23140
+ },
23141
+ "excludeTraffic": {
23142
+ "alias": "globalIpRangeRefExcludeTraffic: excludeTraffic",
23143
+ "args": {},
23144
+ "deprecationReason": null,
23145
+ "description": "Exclude traffic IP Range.\nall traffic to those Ips will be excluded from the GRE tunnel.\nGlobally defined IP range",
23146
+ "id_str": "terminalServer___policy___rules___rule___excludeTraffic",
23147
+ "isDeprecated": false,
23148
+ "name": "excludeTraffic",
23149
+ "path": "terminalServer.policy.rules.rule.excludeTraffic",
23150
+ "requestStr": "$globalIpRangeRef:[GlobalIpRangeRef]! ",
23151
+ "required": true,
23152
+ "responseStr": "excludeTraffic:$globalIpRangeRef ",
22963
23153
  "type": {
22964
23154
  "definition": {
22965
- "description": "Application match criteria set",
23155
+ "description": "A reference identifying the GlobalIpRange object. ID: Unique GlobalIpRange Identifier, Name: The GlobalIpRange Name",
22966
23156
  "enumValues": null,
22967
23157
  "fields": {
22968
- "appCategory": {
22969
- "alias": "applicationCategoryRefAppCategory: appCategory",
23158
+ "id": {
22970
23159
  "args": {},
22971
23160
  "deprecationReason": null,
22972
- "description": "Cato category of applications which are dynamically updated by Cato",
22973
- "id_str": "wanFirewall___policy___rules___rule___application___appCategory",
23161
+ "description": null,
23162
+ "id_str": "terminalServer___policy___rules___rule___excludeTraffic___id",
22974
23163
  "isDeprecated": false,
22975
- "name": "appCategory",
22976
- "path": "wanFirewall.policy.rules.rule.application.appCategory",
22977
- "requestStr": "$applicationCategoryRef:[ApplicationCategoryRef]! ",
23164
+ "name": "id",
23165
+ "path": "terminalServer.policy.rules.rule.excludeTraffic.id",
23166
+ "requestStr": "$id:ID! ",
22978
23167
  "required": true,
22979
- "responseStr": "appCategory:$applicationCategoryRef ",
23168
+ "responseStr": "id:$id ",
22980
23169
  "type": {
22981
- "definition": {
22982
- "description": "A reference identifying the ApplicationCategory object. ID: Unique ApplicationCategory Identifier, Name: The ApplicationCategory Name",
22983
- "enumValues": null,
22984
- "fields": {
22985
- "id": {
22986
- "args": {},
22987
- "deprecationReason": null,
22988
- "description": null,
22989
- "id_str": "wanFirewall___policy___rules___rule___application___appCategory___id",
22990
- "isDeprecated": false,
22991
- "name": "id",
22992
- "path": "wanFirewall.policy.rules.rule.application.appCategory.id",
22993
- "requestStr": "$id:ID! ",
22994
- "required": true,
22995
- "responseStr": "id:$id ",
22996
- "type": {
22997
- "kind": [
22998
- "NON_NULL",
22999
- "SCALAR"
23000
- ],
23001
- "name": "ID",
23002
- "non_null": false
23003
- },
23004
- "varName": "id"
23005
- },
23006
- "name": {
23007
- "args": {},
23008
- "deprecationReason": null,
23009
- "description": null,
23010
- "id_str": "wanFirewall___policy___rules___rule___application___appCategory___name",
23011
- "isDeprecated": false,
23012
- "name": "name",
23013
- "path": "wanFirewall.policy.rules.rule.application.appCategory.name",
23014
- "requestStr": "$name:String! ",
23015
- "required": true,
23016
- "responseStr": "name:$name ",
23017
- "type": {
23018
- "kind": [
23019
- "NON_NULL",
23020
- "SCALAR"
23021
- ],
23022
- "name": "String",
23023
- "non_null": false
23024
- },
23025
- "varName": "name"
23026
- }
23027
- },
23028
- "inputFields": null,
23029
- "interfaces": {},
23030
- "kind": "OBJECT",
23031
- "name": "ApplicationCategoryRef",
23032
- "possibleTypes": null
23033
- },
23034
- "indexType": "object",
23035
23170
  "kind": [
23036
23171
  "NON_NULL",
23037
- "LIST",
23038
- "NON_NULL",
23039
- "OBJECT"
23172
+ "SCALAR"
23040
23173
  ],
23041
- "name": "ApplicationCategoryRef",
23174
+ "name": "ID",
23042
23175
  "non_null": false
23043
23176
  },
23044
- "varName": "applicationCategoryRef"
23177
+ "varName": "id"
23045
23178
  },
23046
- "application": {
23047
- "alias": "applicationRefApplication: application",
23179
+ "name": {
23048
23180
  "args": {},
23049
23181
  "deprecationReason": null,
23050
- "description": "Applications for the rule (pre-defined)",
23051
- "id_str": "wanFirewall___policy___rules___rule___application___application",
23182
+ "description": null,
23183
+ "id_str": "terminalServer___policy___rules___rule___excludeTraffic___name",
23052
23184
  "isDeprecated": false,
23053
- "name": "application",
23054
- "path": "wanFirewall.policy.rules.rule.application.application",
23055
- "requestStr": "$applicationRef:[ApplicationRef]! ",
23185
+ "name": "name",
23186
+ "path": "terminalServer.policy.rules.rule.excludeTraffic.name",
23187
+ "requestStr": "$name:String! ",
23056
23188
  "required": true,
23057
- "responseStr": "application:$applicationRef ",
23189
+ "responseStr": "name:$name ",
23058
23190
  "type": {
23059
- "definition": {
23060
- "description": "A reference identifying the Application object. ID: Unique Application Identifier, Name: The Application Name",
23061
- "enumValues": null,
23062
- "fields": {
23063
- "id": {
23064
- "args": {},
23065
- "deprecationReason": null,
23066
- "description": null,
23067
- "id_str": "wanFirewall___policy___rules___rule___application___application___id",
23068
- "isDeprecated": false,
23069
- "name": "id",
23070
- "path": "wanFirewall.policy.rules.rule.application.application.id",
23071
- "requestStr": "$id:ID! ",
23072
- "required": true,
23073
- "responseStr": "id:$id ",
23074
- "type": {
23075
- "kind": [
23076
- "NON_NULL",
23077
- "SCALAR"
23078
- ],
23079
- "name": "ID",
23080
- "non_null": false
23081
- },
23082
- "varName": "id"
23083
- },
23084
- "name": {
23085
- "args": {},
23086
- "deprecationReason": null,
23087
- "description": null,
23088
- "id_str": "wanFirewall___policy___rules___rule___application___application___name",
23089
- "isDeprecated": false,
23090
- "name": "name",
23091
- "path": "wanFirewall.policy.rules.rule.application.application.name",
23092
- "requestStr": "$name:String! ",
23093
- "required": true,
23094
- "responseStr": "name:$name ",
23095
- "type": {
23096
- "kind": [
23097
- "NON_NULL",
23098
- "SCALAR"
23099
- ],
23100
- "name": "String",
23101
- "non_null": false
23102
- },
23103
- "varName": "name"
23104
- }
23105
- },
23106
- "inputFields": null,
23107
- "interfaces": {},
23108
- "kind": "OBJECT",
23109
- "name": "ApplicationRef",
23110
- "possibleTypes": null
23111
- },
23112
- "indexType": "object",
23113
23191
  "kind": [
23114
23192
  "NON_NULL",
23115
- "LIST",
23116
- "NON_NULL",
23117
- "OBJECT"
23193
+ "SCALAR"
23118
23194
  ],
23119
- "name": "ApplicationRef",
23195
+ "name": "String",
23120
23196
  "non_null": false
23121
23197
  },
23122
- "varName": "applicationRef"
23123
- },
23124
- "customApp": {
23125
- "alias": "customApplicationRefCustomApp: customApp",
23126
- "args": {},
23127
- "deprecationReason": null,
23128
- "description": "Custom (user-defined) applications",
23129
- "id_str": "wanFirewall___policy___rules___rule___application___customApp",
23130
- "isDeprecated": false,
23131
- "name": "customApp",
23132
- "path": "wanFirewall.policy.rules.rule.application.customApp",
23133
- "requestStr": "$customApplicationRef:[CustomApplicationRef]! ",
23134
- "required": true,
23135
- "responseStr": "customApp:$customApplicationRef ",
23136
- "type": {
23137
- "definition": {
23138
- "description": "A reference identifying the CustomApplication object. ID: Unique CustomApplication Identifier, Name: The CustomApplication Name",
23139
- "enumValues": null,
23140
- "fields": {
23141
- "id": {
23142
- "args": {},
23143
- "deprecationReason": null,
23144
- "description": null,
23145
- "id_str": "wanFirewall___policy___rules___rule___application___customApp___id",
23146
- "isDeprecated": false,
23147
- "name": "id",
23148
- "path": "wanFirewall.policy.rules.rule.application.customApp.id",
23149
- "requestStr": "$id:ID! ",
23150
- "required": true,
23151
- "responseStr": "id:$id ",
23152
- "type": {
23153
- "kind": [
23154
- "NON_NULL",
23155
- "SCALAR"
23156
- ],
23157
- "name": "ID",
23158
- "non_null": false
23159
- },
23160
- "varName": "id"
23161
- },
23162
- "name": {
23163
- "args": {},
23164
- "deprecationReason": null,
23165
- "description": null,
23166
- "id_str": "wanFirewall___policy___rules___rule___application___customApp___name",
23167
- "isDeprecated": false,
23168
- "name": "name",
23169
- "path": "wanFirewall.policy.rules.rule.application.customApp.name",
23170
- "requestStr": "$name:String! ",
23171
- "required": true,
23172
- "responseStr": "name:$name ",
23173
- "type": {
23174
- "kind": [
23175
- "NON_NULL",
23176
- "SCALAR"
23177
- ],
23178
- "name": "String",
23179
- "non_null": false
23180
- },
23181
- "varName": "name"
23182
- }
23183
- },
23184
- "inputFields": null,
23185
- "interfaces": {},
23186
- "kind": "OBJECT",
23187
- "name": "CustomApplicationRef",
23188
- "possibleTypes": null
23189
- },
23190
- "indexType": "object",
23191
- "kind": [
23192
- "NON_NULL",
23193
- "LIST",
23194
- "NON_NULL",
23195
- "OBJECT"
23196
- ],
23197
- "name": "CustomApplicationRef",
23198
+ "varName": "name"
23199
+ }
23200
+ },
23201
+ "inputFields": null,
23202
+ "interfaces": {},
23203
+ "kind": "OBJECT",
23204
+ "name": "GlobalIpRangeRef",
23205
+ "possibleTypes": null
23206
+ },
23207
+ "indexType": "object",
23208
+ "kind": [
23209
+ "NON_NULL",
23210
+ "LIST",
23211
+ "NON_NULL",
23212
+ "OBJECT"
23213
+ ],
23214
+ "name": "GlobalIpRangeRef",
23215
+ "non_null": false
23216
+ },
23217
+ "varName": "globalIpRangeRef"
23218
+ },
23219
+ "id": {
23220
+ "args": {},
23221
+ "deprecationReason": null,
23222
+ "description": "Rule ID",
23223
+ "id_str": "terminalServer___policy___rules___rule___id",
23224
+ "isDeprecated": false,
23225
+ "name": "id",
23226
+ "path": "terminalServer.policy.rules.rule.id",
23227
+ "requestStr": "$id:ID! ",
23228
+ "required": true,
23229
+ "responseStr": "id:$id ",
23230
+ "type": {
23231
+ "kind": [
23232
+ "NON_NULL",
23233
+ "SCALAR"
23234
+ ],
23235
+ "name": "ID",
23236
+ "non_null": false
23237
+ },
23238
+ "varName": "id"
23239
+ },
23240
+ "index": {
23241
+ "args": {},
23242
+ "deprecationReason": null,
23243
+ "description": "Position / priority of rule",
23244
+ "id_str": "terminalServer___policy___rules___rule___index",
23245
+ "isDeprecated": false,
23246
+ "name": "index",
23247
+ "path": "terminalServer.policy.rules.rule.index",
23248
+ "requestStr": "$index:Int! ",
23249
+ "required": true,
23250
+ "responseStr": "index:$index ",
23251
+ "type": {
23252
+ "kind": [
23253
+ "NON_NULL",
23254
+ "SCALAR"
23255
+ ],
23256
+ "name": "Int",
23257
+ "non_null": false
23258
+ },
23259
+ "varName": "index"
23260
+ },
23261
+ "name": {
23262
+ "args": {},
23263
+ "deprecationReason": null,
23264
+ "description": "Name of the rule",
23265
+ "id_str": "terminalServer___policy___rules___rule___name",
23266
+ "isDeprecated": false,
23267
+ "name": "name",
23268
+ "path": "terminalServer.policy.rules.rule.name",
23269
+ "requestStr": "$name:String! ",
23270
+ "required": true,
23271
+ "responseStr": "name:$name ",
23272
+ "type": {
23273
+ "kind": [
23274
+ "NON_NULL",
23275
+ "SCALAR"
23276
+ ],
23277
+ "name": "String",
23278
+ "non_null": false
23279
+ },
23280
+ "varName": "name"
23281
+ },
23282
+ "section": {
23283
+ "alias": "policySectionInfoSection: section",
23284
+ "args": {},
23285
+ "deprecationReason": null,
23286
+ "description": "Policy section where the rule is located",
23287
+ "id_str": "terminalServer___policy___rules___rule___section",
23288
+ "isDeprecated": false,
23289
+ "name": "section",
23290
+ "path": "terminalServer.policy.rules.rule.section",
23291
+ "requestStr": "$policySectionInfo:PolicySectionInfo! ",
23292
+ "required": true,
23293
+ "responseStr": "section:$policySectionInfo ",
23294
+ "type": {
23295
+ "definition": {
23296
+ "description": "Define settings for a policy section",
23297
+ "enumValues": null,
23298
+ "fields": {
23299
+ "id": {
23300
+ "args": {},
23301
+ "deprecationReason": null,
23302
+ "description": null,
23303
+ "id_str": "terminalServer___policy___rules___rule___section___id",
23304
+ "isDeprecated": false,
23305
+ "name": "id",
23306
+ "path": "terminalServer.policy.rules.rule.section.id",
23307
+ "requestStr": "$id:ID! ",
23308
+ "required": true,
23309
+ "responseStr": "id:$id ",
23310
+ "type": {
23311
+ "kind": [
23312
+ "NON_NULL",
23313
+ "SCALAR"
23314
+ ],
23315
+ "name": "ID",
23316
+ "non_null": false
23317
+ },
23318
+ "varName": "id"
23319
+ },
23320
+ "name": {
23321
+ "args": {},
23322
+ "deprecationReason": null,
23323
+ "description": null,
23324
+ "id_str": "terminalServer___policy___rules___rule___section___name",
23325
+ "isDeprecated": false,
23326
+ "name": "name",
23327
+ "path": "terminalServer.policy.rules.rule.section.name",
23328
+ "requestStr": "$name:String! ",
23329
+ "required": true,
23330
+ "responseStr": "name:$name ",
23331
+ "type": {
23332
+ "kind": [
23333
+ "NON_NULL",
23334
+ "SCALAR"
23335
+ ],
23336
+ "name": "String",
23337
+ "non_null": false
23338
+ },
23339
+ "varName": "name"
23340
+ }
23341
+ },
23342
+ "inputFields": null,
23343
+ "interfaces": {},
23344
+ "kind": "OBJECT",
23345
+ "name": "PolicySectionInfo",
23346
+ "possibleTypes": null
23347
+ },
23348
+ "indexType": "object",
23349
+ "kind": [
23350
+ "NON_NULL",
23351
+ "OBJECT"
23352
+ ],
23353
+ "name": "PolicySectionInfo",
23354
+ "non_null": false
23355
+ },
23356
+ "varName": "policySectionInfo"
23357
+ }
23358
+ },
23359
+ "inputFields": null,
23360
+ "interfaces": {},
23361
+ "kind": "OBJECT",
23362
+ "name": "TerminalServerRule",
23363
+ "possibleTypes": null
23364
+ },
23365
+ "indexType": "object",
23366
+ "kind": [
23367
+ "NON_NULL",
23368
+ "OBJECT"
23369
+ ],
23370
+ "name": "TerminalServerRule",
23371
+ "non_null": false
23372
+ },
23373
+ "varName": "terminalServerRule"
23374
+ }
23375
+ },
23376
+ "inputFields": null,
23377
+ "interfaces": {},
23378
+ "kind": "OBJECT",
23379
+ "name": "TerminalServerRulePayload",
23380
+ "possibleTypes": null
23381
+ },
23382
+ "indexType": "object",
23383
+ "kind": [
23384
+ "NON_NULL",
23385
+ "LIST",
23386
+ "NON_NULL",
23387
+ "OBJECT"
23388
+ ],
23389
+ "name": "TerminalServerRulePayload",
23390
+ "non_null": false
23391
+ },
23392
+ "varName": "terminalServerRulePayload"
23393
+ },
23394
+ "sections": {
23395
+ "alias": "policySectionPayloadSections: sections",
23396
+ "args": {},
23397
+ "deprecationReason": null,
23398
+ "description": null,
23399
+ "id_str": "terminalServer___policy___sections",
23400
+ "isDeprecated": false,
23401
+ "name": "sections",
23402
+ "path": "terminalServer.policy.sections",
23403
+ "requestStr": "$policySectionPayload:[PolicySectionPayload]! ",
23404
+ "required": true,
23405
+ "responseStr": "sections:$policySectionPayload ",
23406
+ "type": {
23407
+ "definition": {
23408
+ "description": null,
23409
+ "enumValues": null,
23410
+ "fields": {
23411
+ "audit": {
23412
+ "alias": "policyElementAuditAudit: audit",
23413
+ "args": {},
23414
+ "deprecationReason": null,
23415
+ "description": null,
23416
+ "id_str": "terminalServer___policy___sections___audit",
23417
+ "isDeprecated": false,
23418
+ "name": "audit",
23419
+ "path": "terminalServer.policy.sections.audit",
23420
+ "requestStr": "$policyElementAudit:PolicyElementAudit! ",
23421
+ "required": true,
23422
+ "responseStr": "audit:$policyElementAudit ",
23423
+ "type": {
23424
+ "definition": {
23425
+ "description": null,
23426
+ "enumValues": null,
23427
+ "fields": {
23428
+ "updatedBy": {
23429
+ "args": {},
23430
+ "deprecationReason": null,
23431
+ "description": "The admin, or the API-key, that performed the last update",
23432
+ "id_str": "terminalServer___policy___sections___audit___updatedBy",
23433
+ "isDeprecated": false,
23434
+ "name": "updatedBy",
23435
+ "path": "terminalServer.policy.sections.audit.updatedBy",
23436
+ "requestStr": "$updatedBy:String! ",
23437
+ "required": true,
23438
+ "responseStr": "updatedBy:$updatedBy ",
23439
+ "type": {
23440
+ "kind": [
23441
+ "NON_NULL",
23442
+ "SCALAR"
23443
+ ],
23444
+ "name": "String",
23445
+ "non_null": false
23446
+ },
23447
+ "varName": "updatedBy"
23448
+ },
23449
+ "updatedTime": {
23450
+ "args": {},
23451
+ "deprecationReason": null,
23452
+ "description": "The last date and time the rule was updated",
23453
+ "id_str": "terminalServer___policy___sections___audit___updatedTime",
23454
+ "isDeprecated": false,
23455
+ "name": "updatedTime",
23456
+ "path": "terminalServer.policy.sections.audit.updatedTime",
23457
+ "requestStr": "$updatedTime:DateTime! ",
23458
+ "required": true,
23459
+ "responseStr": "updatedTime:$updatedTime ",
23460
+ "type": {
23461
+ "kind": [
23462
+ "NON_NULL",
23463
+ "SCALAR"
23464
+ ],
23465
+ "name": "DateTime",
23466
+ "non_null": false
23467
+ },
23468
+ "varName": "updatedTime"
23469
+ }
23470
+ },
23471
+ "inputFields": null,
23472
+ "interfaces": {},
23473
+ "kind": "OBJECT",
23474
+ "name": "PolicyElementAudit",
23475
+ "possibleTypes": null
23476
+ },
23477
+ "indexType": "object",
23478
+ "kind": [
23479
+ "NON_NULL",
23480
+ "OBJECT"
23481
+ ],
23482
+ "name": "PolicyElementAudit",
23483
+ "non_null": false
23484
+ },
23485
+ "varName": "policyElementAudit"
23486
+ },
23487
+ "properties": {
23488
+ "alias": "policyElementPropertiesEnumProperties: properties",
23489
+ "args": {},
23490
+ "deprecationReason": null,
23491
+ "description": null,
23492
+ "id_str": "terminalServer___policy___sections___properties",
23493
+ "isDeprecated": false,
23494
+ "name": "properties",
23495
+ "path": "terminalServer.policy.sections.properties",
23496
+ "requestStr": "$properties:[PolicyElementPropertiesEnum]! ",
23497
+ "required": true,
23498
+ "responseStr": "properties:$properties ",
23499
+ "type": {
23500
+ "definition": {
23501
+ "description": "Attributes describing the rule state or type",
23502
+ "enumValues": [
23503
+ {
23504
+ "deprecationReason": null,
23505
+ "description": "New (added) rule",
23506
+ "isDeprecated": false,
23507
+ "name": "ADDED"
23508
+ },
23509
+ {
23510
+ "deprecationReason": null,
23511
+ "description": "Updated (modified) existing rule",
23512
+ "isDeprecated": false,
23513
+ "name": "UPDATED"
23514
+ },
23515
+ {
23516
+ "deprecationReason": null,
23517
+ "description": "Removed (deleted) rule",
23518
+ "isDeprecated": false,
23519
+ "name": "REMOVED"
23520
+ },
23521
+ {
23522
+ "deprecationReason": null,
23523
+ "description": "A rule moved to a different position",
23524
+ "isDeprecated": false,
23525
+ "name": "MOVED"
23526
+ },
23527
+ {
23528
+ "deprecationReason": null,
23529
+ "description": "A rule locked for changes by other admins",
23530
+ "isDeprecated": false,
23531
+ "name": "LOCKED"
23532
+ },
23533
+ {
23534
+ "deprecationReason": null,
23535
+ "description": "An object can not be moved, or referenced when moving other objects.\nHowever its properties and content can be modified.",
23536
+ "isDeprecated": false,
23537
+ "name": "ANCHORED"
23538
+ },
23539
+ {
23540
+ "deprecationReason": null,
23541
+ "description": "A pre-defined (system) rule that cannot be modified or removed",
23542
+ "isDeprecated": false,
23543
+ "name": "SYSTEM"
23544
+ }
23545
+ ],
23546
+ "fields": null,
23547
+ "inputFields": null,
23548
+ "interfaces": null,
23549
+ "kind": "ENUM",
23550
+ "name": "PolicyElementPropertiesEnum",
23551
+ "possibleTypes": null
23552
+ },
23553
+ "indexType": "enum",
23554
+ "kind": [
23555
+ "NON_NULL",
23556
+ "LIST",
23557
+ "NON_NULL",
23558
+ "ENUM"
23559
+ ],
23560
+ "name": "PolicyElementPropertiesEnum",
23561
+ "non_null": false
23562
+ },
23563
+ "varName": "properties"
23564
+ },
23565
+ "section": {
23566
+ "alias": "policySectionInfoSection: section",
23567
+ "args": {},
23568
+ "deprecationReason": null,
23569
+ "description": null,
23570
+ "id_str": "terminalServer___policy___sections___section",
23571
+ "isDeprecated": false,
23572
+ "name": "section",
23573
+ "path": "terminalServer.policy.sections.section",
23574
+ "requestStr": "$policySectionInfo:PolicySectionInfo! ",
23575
+ "required": true,
23576
+ "responseStr": "section:$policySectionInfo ",
23577
+ "type": {
23578
+ "definition": {
23579
+ "description": "Define settings for a policy section",
23580
+ "enumValues": null,
23581
+ "fields": {
23582
+ "id": {
23583
+ "args": {},
23584
+ "deprecationReason": null,
23585
+ "description": null,
23586
+ "id_str": "terminalServer___policy___sections___section___id",
23587
+ "isDeprecated": false,
23588
+ "name": "id",
23589
+ "path": "terminalServer.policy.sections.section.id",
23590
+ "requestStr": "$id:ID! ",
23591
+ "required": true,
23592
+ "responseStr": "id:$id ",
23593
+ "type": {
23594
+ "kind": [
23595
+ "NON_NULL",
23596
+ "SCALAR"
23597
+ ],
23598
+ "name": "ID",
23599
+ "non_null": false
23600
+ },
23601
+ "varName": "id"
23602
+ },
23603
+ "name": {
23604
+ "args": {},
23605
+ "deprecationReason": null,
23606
+ "description": null,
23607
+ "id_str": "terminalServer___policy___sections___section___name",
23608
+ "isDeprecated": false,
23609
+ "name": "name",
23610
+ "path": "terminalServer.policy.sections.section.name",
23611
+ "requestStr": "$name:String! ",
23612
+ "required": true,
23613
+ "responseStr": "name:$name ",
23614
+ "type": {
23615
+ "kind": [
23616
+ "NON_NULL",
23617
+ "SCALAR"
23618
+ ],
23619
+ "name": "String",
23620
+ "non_null": false
23621
+ },
23622
+ "varName": "name"
23623
+ }
23624
+ },
23625
+ "inputFields": null,
23626
+ "interfaces": {},
23627
+ "kind": "OBJECT",
23628
+ "name": "PolicySectionInfo",
23629
+ "possibleTypes": null
23630
+ },
23631
+ "indexType": "object",
23632
+ "kind": [
23633
+ "NON_NULL",
23634
+ "OBJECT"
23635
+ ],
23636
+ "name": "PolicySectionInfo",
23637
+ "non_null": false
23638
+ },
23639
+ "varName": "policySectionInfo"
23640
+ }
23641
+ },
23642
+ "inputFields": null,
23643
+ "interfaces": {},
23644
+ "kind": "OBJECT",
23645
+ "name": "PolicySectionPayload",
23646
+ "possibleTypes": null
23647
+ },
23648
+ "indexType": "object",
23649
+ "kind": [
23650
+ "NON_NULL",
23651
+ "LIST",
23652
+ "NON_NULL",
23653
+ "OBJECT"
23654
+ ],
23655
+ "name": "PolicySectionPayload",
23656
+ "non_null": false
23657
+ },
23658
+ "varName": "policySectionPayload"
23659
+ }
23660
+ },
23661
+ "inputFields": null,
23662
+ "interfaces": {},
23663
+ "kind": "OBJECT",
23664
+ "name": "TerminalServerPolicy",
23665
+ "possibleTypes": null
23666
+ },
23667
+ "indexType": "object",
23668
+ "kind": [
23669
+ "NON_NULL",
23670
+ "OBJECT"
23671
+ ],
23672
+ "name": "TerminalServerPolicy",
23673
+ "non_null": false
23674
+ },
23675
+ "varName": "terminalServerPolicy"
23676
+ },
23677
+ "revisions": {
23678
+ "args": {},
23679
+ "deprecationReason": null,
23680
+ "description": null,
23681
+ "id_str": "terminalServer___revisions",
23682
+ "isDeprecated": false,
23683
+ "name": "revisions",
23684
+ "path": "terminalServer.revisions",
23685
+ "requestStr": "$policyRevisionsPayload:PolicyRevisionsPayload ",
23686
+ "required": false,
23687
+ "responseStr": "revisions:$policyRevisionsPayload ",
23688
+ "type": {
23689
+ "definition": {
23690
+ "description": "Returns data for publishing the policy",
23691
+ "enumValues": null,
23692
+ "fields": {
23693
+ "revision": {
23694
+ "args": {},
23695
+ "deprecationReason": null,
23696
+ "description": null,
23697
+ "id_str": "terminalServer___revisions___revision",
23698
+ "isDeprecated": false,
23699
+ "name": "revision",
23700
+ "path": "terminalServer.revisions.revision",
23701
+ "requestStr": "$policyRevision:[PolicyRevision]! ",
23702
+ "required": true,
23703
+ "responseStr": "revision:$policyRevision ",
23704
+ "type": {
23705
+ "definition": {
23706
+ "description": "Returns data about the policy revision, such as when the change was made, how many rules were changed, etc.",
23707
+ "enumValues": null,
23708
+ "fields": {
23709
+ "changes": {
23710
+ "args": {},
23711
+ "deprecationReason": null,
23712
+ "description": null,
23713
+ "id_str": "terminalServer___revisions___revision___changes",
23714
+ "isDeprecated": false,
23715
+ "name": "changes",
23716
+ "path": "terminalServer.revisions.revision.changes",
23717
+ "requestStr": "$changes:Int! ",
23718
+ "required": true,
23719
+ "responseStr": "changes:$changes ",
23720
+ "type": {
23721
+ "kind": [
23722
+ "NON_NULL",
23723
+ "SCALAR"
23724
+ ],
23725
+ "name": "Int",
23726
+ "non_null": false
23727
+ },
23728
+ "varName": "changes"
23729
+ },
23730
+ "createdTime": {
23731
+ "args": {},
23732
+ "deprecationReason": null,
23733
+ "description": null,
23734
+ "id_str": "terminalServer___revisions___revision___createdTime",
23735
+ "isDeprecated": false,
23736
+ "name": "createdTime",
23737
+ "path": "terminalServer.revisions.revision.createdTime",
23738
+ "requestStr": "$createdTime:DateTime! ",
23739
+ "required": true,
23740
+ "responseStr": "createdTime:$createdTime ",
23741
+ "type": {
23742
+ "kind": [
23743
+ "NON_NULL",
23744
+ "SCALAR"
23745
+ ],
23746
+ "name": "DateTime",
23747
+ "non_null": false
23748
+ },
23749
+ "varName": "createdTime"
23750
+ },
23751
+ "description": {
23752
+ "args": {},
23753
+ "deprecationReason": null,
23754
+ "description": null,
23755
+ "id_str": "terminalServer___revisions___revision___description",
23756
+ "isDeprecated": false,
23757
+ "name": "description",
23758
+ "path": "terminalServer.revisions.revision.description",
23759
+ "requestStr": "$description:String! ",
23760
+ "required": true,
23761
+ "responseStr": "description:$description ",
23762
+ "type": {
23763
+ "kind": [
23764
+ "NON_NULL",
23765
+ "SCALAR"
23766
+ ],
23767
+ "name": "String",
23768
+ "non_null": false
23769
+ },
23770
+ "varName": "description"
23771
+ },
23772
+ "id": {
23773
+ "args": {},
23774
+ "deprecationReason": null,
23775
+ "description": null,
23776
+ "id_str": "terminalServer___revisions___revision___id",
23777
+ "isDeprecated": false,
23778
+ "name": "id",
23779
+ "path": "terminalServer.revisions.revision.id",
23780
+ "requestStr": "$id:ID! ",
23781
+ "required": true,
23782
+ "responseStr": "id:$id ",
23783
+ "type": {
23784
+ "kind": [
23785
+ "NON_NULL",
23786
+ "SCALAR"
23787
+ ],
23788
+ "name": "ID",
23789
+ "non_null": false
23790
+ },
23791
+ "varName": "id"
23792
+ },
23793
+ "name": {
23794
+ "args": {},
23795
+ "deprecationReason": null,
23796
+ "description": null,
23797
+ "id_str": "terminalServer___revisions___revision___name",
23798
+ "isDeprecated": false,
23799
+ "name": "name",
23800
+ "path": "terminalServer.revisions.revision.name",
23801
+ "requestStr": "$name:String! ",
23802
+ "required": true,
23803
+ "responseStr": "name:$name ",
23804
+ "type": {
23805
+ "kind": [
23806
+ "NON_NULL",
23807
+ "SCALAR"
23808
+ ],
23809
+ "name": "String",
23810
+ "non_null": false
23811
+ },
23812
+ "varName": "name"
23813
+ },
23814
+ "updatedTime": {
23815
+ "args": {},
23816
+ "deprecationReason": null,
23817
+ "description": null,
23818
+ "id_str": "terminalServer___revisions___revision___updatedTime",
23819
+ "isDeprecated": false,
23820
+ "name": "updatedTime",
23821
+ "path": "terminalServer.revisions.revision.updatedTime",
23822
+ "requestStr": "$updatedTime:DateTime! ",
23823
+ "required": true,
23824
+ "responseStr": "updatedTime:$updatedTime ",
23825
+ "type": {
23826
+ "kind": [
23827
+ "NON_NULL",
23828
+ "SCALAR"
23829
+ ],
23830
+ "name": "DateTime",
23831
+ "non_null": false
23832
+ },
23833
+ "varName": "updatedTime"
23834
+ }
23835
+ },
23836
+ "inputFields": null,
23837
+ "interfaces": {},
23838
+ "kind": "OBJECT",
23839
+ "name": "PolicyRevision",
23840
+ "possibleTypes": null
23841
+ },
23842
+ "indexType": "object",
23843
+ "kind": [
23844
+ "NON_NULL",
23845
+ "LIST",
23846
+ "NON_NULL",
23847
+ "OBJECT"
23848
+ ],
23849
+ "name": "PolicyRevision",
23850
+ "non_null": false
23851
+ },
23852
+ "varName": "policyRevision"
23853
+ }
23854
+ },
23855
+ "inputFields": null,
23856
+ "interfaces": {},
23857
+ "kind": "OBJECT",
23858
+ "name": "PolicyRevisionsPayload",
23859
+ "possibleTypes": null
23860
+ },
23861
+ "indexType": "object",
23862
+ "kind": [
23863
+ "OBJECT"
23864
+ ],
23865
+ "name": "PolicyRevisionsPayload",
23866
+ "non_null": false
23867
+ },
23868
+ "varName": "policyRevisionsPayload"
23869
+ }
23870
+ },
23871
+ "inputFields": null,
23872
+ "interfaces": {},
23873
+ "kind": "OBJECT",
23874
+ "name": "TerminalServerPolicyQueries",
23875
+ "possibleTypes": null
23876
+ },
23877
+ "indexType": "object",
23878
+ "kind": [
23879
+ "OBJECT"
23880
+ ],
23881
+ "name": "TerminalServerPolicyQueries",
23882
+ "non_null": false
23883
+ },
23884
+ "varName": "terminalServerPolicyQueries"
23885
+ },
23886
+ "wanFirewall": {
23887
+ "args": {},
23888
+ "deprecationReason": null,
23889
+ "description": null,
23890
+ "id_str": "wanFirewall",
23891
+ "isDeprecated": false,
23892
+ "name": "wanFirewall",
23893
+ "path": "wanFirewall",
23894
+ "requestStr": "$wanFirewallPolicyQueries:WanFirewallPolicyQueries ",
23895
+ "required": false,
23896
+ "responseStr": "wanFirewall:$wanFirewallPolicyQueries ",
23897
+ "type": {
23898
+ "definition": {
23899
+ "description": null,
23900
+ "enumValues": null,
23901
+ "fields": {
23902
+ "policy": {
23903
+ "args": {
23904
+ "policy___input": {
23905
+ "defaultValue": null,
23906
+ "description": null,
23907
+ "id_str": "policy___input",
23908
+ "name": "input",
23909
+ "path": "policy.input",
23910
+ "requestStr": "$wanFirewallPolicyInput:WanFirewallPolicyInput ",
23911
+ "required": false,
23912
+ "responseStr": "input:$wanFirewallPolicyInput ",
23913
+ "type": {
23914
+ "definition": {
23915
+ "description": null,
23916
+ "enumValues": null,
23917
+ "fields": null,
23918
+ "inputFields": {
23919
+ "revision": {
23920
+ "defaultValue": null,
23921
+ "description": "A revision is a specific instance of the policy.\n Unpublished revisions are working copies of the policy available to a specific\n admin or a set of admins\n Published revisions are revisions that were applied to the account network.\n The last published revision is the active policy.",
23922
+ "id_str": "policy___input___revision",
23923
+ "name": "revision",
23924
+ "path": "policy.input.revision",
23925
+ "requestStr": "$policyRevisionInput:PolicyRevisionInput ",
23926
+ "required": false,
23927
+ "responseStr": "revision:$policyRevisionInput ",
23928
+ "type": {
23929
+ "definition": {
23930
+ "description": "Input for specifying a policy revision",
23931
+ "enumValues": null,
23932
+ "fields": null,
23933
+ "inputFields": {
23934
+ "id": {
23935
+ "defaultValue": null,
23936
+ "description": null,
23937
+ "id_str": "policy___input___revision___id",
23938
+ "name": "id",
23939
+ "path": "policy.input.revision.id",
23940
+ "requestStr": "$id:ID ",
23941
+ "required": false,
23942
+ "responseStr": "id:$id ",
23943
+ "type": {
23944
+ "kind": [
23945
+ "SCALAR"
23946
+ ],
23947
+ "name": "ID",
23948
+ "non_null": false
23949
+ },
23950
+ "varName": "id"
23951
+ },
23952
+ "type": {
23953
+ "defaultValue": "PRIVATE",
23954
+ "description": null,
23955
+ "id_str": "policy___input___revision___type",
23956
+ "name": "type",
23957
+ "path": "policy.input.revision.type",
23958
+ "requestStr": "$type:PolicyRevisionType ",
23959
+ "required": false,
23960
+ "responseStr": "type:$type ",
23961
+ "type": {
23962
+ "definition": {
23963
+ "description": "Enum for the type of a policy revision",
23964
+ "enumValues": [
23965
+ {
23966
+ "deprecationReason": null,
23967
+ "description": null,
23968
+ "isDeprecated": false,
23969
+ "name": "PRIVATE"
23970
+ },
23971
+ {
23972
+ "deprecationReason": null,
23973
+ "description": null,
23974
+ "isDeprecated": false,
23975
+ "name": "PUBLIC"
23976
+ }
23977
+ ],
23978
+ "fields": null,
23979
+ "inputFields": null,
23980
+ "interfaces": null,
23981
+ "kind": "ENUM",
23982
+ "name": "PolicyRevisionType",
23983
+ "possibleTypes": null
23984
+ },
23985
+ "indexType": "enum",
23986
+ "kind": [
23987
+ "ENUM"
23988
+ ],
23989
+ "name": "PolicyRevisionType",
23990
+ "non_null": false
23991
+ },
23992
+ "varName": "type"
23993
+ }
23994
+ },
23995
+ "interfaces": null,
23996
+ "kind": "INPUT_OBJECT",
23997
+ "name": "PolicyRevisionInput",
23998
+ "possibleTypes": null
23999
+ },
24000
+ "indexType": "input_object",
24001
+ "kind": [
24002
+ "INPUT_OBJECT"
24003
+ ],
24004
+ "name": "PolicyRevisionInput",
24005
+ "non_null": false
24006
+ },
24007
+ "varName": "policyRevisionInput"
24008
+ }
24009
+ },
24010
+ "interfaces": null,
24011
+ "kind": "INPUT_OBJECT",
24012
+ "name": "WanFirewallPolicyInput",
24013
+ "possibleTypes": null
24014
+ },
24015
+ "indexType": "input_object",
24016
+ "kind": [
24017
+ "INPUT_OBJECT"
24018
+ ],
24019
+ "name": "WanFirewallPolicyInput",
24020
+ "non_null": false
24021
+ },
24022
+ "varName": "wanFirewallPolicyInput"
24023
+ }
24024
+ },
24025
+ "deprecationReason": null,
24026
+ "description": null,
24027
+ "id_str": "wanFirewall___policy",
24028
+ "isDeprecated": false,
24029
+ "name": "policy",
24030
+ "path": "wanFirewall.policy",
24031
+ "requestStr": "$wanFirewallPolicy:WanFirewallPolicy! ",
24032
+ "required": true,
24033
+ "responseStr": "policy:$wanFirewallPolicy ",
24034
+ "type": {
24035
+ "definition": {
24036
+ "description": null,
24037
+ "enumValues": null,
24038
+ "fields": {
24039
+ "audit": {
24040
+ "alias": "policyAuditAudit: audit",
24041
+ "args": {},
24042
+ "deprecationReason": null,
24043
+ "description": null,
24044
+ "id_str": "wanFirewall___policy___audit",
24045
+ "isDeprecated": false,
24046
+ "name": "audit",
24047
+ "path": "wanFirewall.policy.audit",
24048
+ "requestStr": "$policyAudit:PolicyAudit ",
24049
+ "required": false,
24050
+ "responseStr": "audit:$policyAudit ",
24051
+ "type": {
24052
+ "definition": {
24053
+ "description": null,
24054
+ "enumValues": null,
24055
+ "fields": {
24056
+ "publishedBy": {
24057
+ "args": {},
24058
+ "deprecationReason": null,
24059
+ "description": null,
24060
+ "id_str": "wanFirewall___policy___audit___publishedBy",
24061
+ "isDeprecated": false,
24062
+ "name": "publishedBy",
24063
+ "path": "wanFirewall.policy.audit.publishedBy",
24064
+ "requestStr": "$publishedBy:String! ",
24065
+ "required": true,
24066
+ "responseStr": "publishedBy:$publishedBy ",
24067
+ "type": {
24068
+ "kind": [
24069
+ "NON_NULL",
24070
+ "SCALAR"
24071
+ ],
24072
+ "name": "String",
24073
+ "non_null": false
24074
+ },
24075
+ "varName": "publishedBy"
24076
+ },
24077
+ "publishedTime": {
24078
+ "args": {},
24079
+ "deprecationReason": null,
24080
+ "description": null,
24081
+ "id_str": "wanFirewall___policy___audit___publishedTime",
24082
+ "isDeprecated": false,
24083
+ "name": "publishedTime",
24084
+ "path": "wanFirewall.policy.audit.publishedTime",
24085
+ "requestStr": "$publishedTime:DateTime! ",
24086
+ "required": true,
24087
+ "responseStr": "publishedTime:$publishedTime ",
24088
+ "type": {
24089
+ "kind": [
24090
+ "NON_NULL",
24091
+ "SCALAR"
24092
+ ],
24093
+ "name": "DateTime",
24094
+ "non_null": false
24095
+ },
24096
+ "varName": "publishedTime"
24097
+ }
24098
+ },
24099
+ "inputFields": null,
24100
+ "interfaces": {},
24101
+ "kind": "OBJECT",
24102
+ "name": "PolicyAudit",
24103
+ "possibleTypes": null
24104
+ },
24105
+ "indexType": "object",
24106
+ "kind": [
24107
+ "OBJECT"
24108
+ ],
24109
+ "name": "PolicyAudit",
24110
+ "non_null": false
24111
+ },
24112
+ "varName": "policyAudit"
24113
+ },
24114
+ "enabled": {
24115
+ "args": {},
24116
+ "deprecationReason": null,
24117
+ "description": null,
24118
+ "id_str": "wanFirewall___policy___enabled",
24119
+ "isDeprecated": false,
24120
+ "name": "enabled",
24121
+ "path": "wanFirewall.policy.enabled",
24122
+ "requestStr": "$enabled:Boolean! ",
24123
+ "required": true,
24124
+ "responseStr": "enabled:$enabled ",
24125
+ "type": {
24126
+ "kind": [
24127
+ "NON_NULL",
24128
+ "SCALAR"
24129
+ ],
24130
+ "name": "Boolean",
24131
+ "non_null": false
24132
+ },
24133
+ "varName": "enabled"
24134
+ },
24135
+ "revision": {
24136
+ "alias": "policyRevisionRevision: revision",
24137
+ "args": {},
24138
+ "deprecationReason": null,
24139
+ "description": null,
24140
+ "id_str": "wanFirewall___policy___revision",
24141
+ "isDeprecated": false,
24142
+ "name": "revision",
24143
+ "path": "wanFirewall.policy.revision",
24144
+ "requestStr": "$policyRevision:PolicyRevision ",
24145
+ "required": false,
24146
+ "responseStr": "revision:$policyRevision ",
24147
+ "type": {
24148
+ "definition": {
24149
+ "description": "Returns data about the policy revision, such as when the change was made, how many rules were changed, etc.",
24150
+ "enumValues": null,
24151
+ "fields": {
24152
+ "changes": {
24153
+ "args": {},
24154
+ "deprecationReason": null,
24155
+ "description": null,
24156
+ "id_str": "wanFirewall___policy___revision___changes",
24157
+ "isDeprecated": false,
24158
+ "name": "changes",
24159
+ "path": "wanFirewall.policy.revision.changes",
24160
+ "requestStr": "$changes:Int! ",
24161
+ "required": true,
24162
+ "responseStr": "changes:$changes ",
24163
+ "type": {
24164
+ "kind": [
24165
+ "NON_NULL",
24166
+ "SCALAR"
24167
+ ],
24168
+ "name": "Int",
24169
+ "non_null": false
24170
+ },
24171
+ "varName": "changes"
24172
+ },
24173
+ "createdTime": {
24174
+ "args": {},
24175
+ "deprecationReason": null,
24176
+ "description": null,
24177
+ "id_str": "wanFirewall___policy___revision___createdTime",
24178
+ "isDeprecated": false,
24179
+ "name": "createdTime",
24180
+ "path": "wanFirewall.policy.revision.createdTime",
24181
+ "requestStr": "$createdTime:DateTime! ",
24182
+ "required": true,
24183
+ "responseStr": "createdTime:$createdTime ",
24184
+ "type": {
24185
+ "kind": [
24186
+ "NON_NULL",
24187
+ "SCALAR"
24188
+ ],
24189
+ "name": "DateTime",
24190
+ "non_null": false
24191
+ },
24192
+ "varName": "createdTime"
24193
+ },
24194
+ "description": {
24195
+ "args": {},
24196
+ "deprecationReason": null,
24197
+ "description": null,
24198
+ "id_str": "wanFirewall___policy___revision___description",
24199
+ "isDeprecated": false,
24200
+ "name": "description",
24201
+ "path": "wanFirewall.policy.revision.description",
24202
+ "requestStr": "$description:String! ",
24203
+ "required": true,
24204
+ "responseStr": "description:$description ",
24205
+ "type": {
24206
+ "kind": [
24207
+ "NON_NULL",
24208
+ "SCALAR"
24209
+ ],
24210
+ "name": "String",
24211
+ "non_null": false
24212
+ },
24213
+ "varName": "description"
24214
+ },
24215
+ "id": {
24216
+ "args": {},
24217
+ "deprecationReason": null,
24218
+ "description": null,
24219
+ "id_str": "wanFirewall___policy___revision___id",
24220
+ "isDeprecated": false,
24221
+ "name": "id",
24222
+ "path": "wanFirewall.policy.revision.id",
24223
+ "requestStr": "$id:ID! ",
24224
+ "required": true,
24225
+ "responseStr": "id:$id ",
24226
+ "type": {
24227
+ "kind": [
24228
+ "NON_NULL",
24229
+ "SCALAR"
24230
+ ],
24231
+ "name": "ID",
24232
+ "non_null": false
24233
+ },
24234
+ "varName": "id"
24235
+ },
24236
+ "name": {
24237
+ "args": {},
24238
+ "deprecationReason": null,
24239
+ "description": null,
24240
+ "id_str": "wanFirewall___policy___revision___name",
24241
+ "isDeprecated": false,
24242
+ "name": "name",
24243
+ "path": "wanFirewall.policy.revision.name",
24244
+ "requestStr": "$name:String! ",
24245
+ "required": true,
24246
+ "responseStr": "name:$name ",
24247
+ "type": {
24248
+ "kind": [
24249
+ "NON_NULL",
24250
+ "SCALAR"
24251
+ ],
24252
+ "name": "String",
24253
+ "non_null": false
24254
+ },
24255
+ "varName": "name"
24256
+ },
24257
+ "updatedTime": {
24258
+ "args": {},
24259
+ "deprecationReason": null,
24260
+ "description": null,
24261
+ "id_str": "wanFirewall___policy___revision___updatedTime",
24262
+ "isDeprecated": false,
24263
+ "name": "updatedTime",
24264
+ "path": "wanFirewall.policy.revision.updatedTime",
24265
+ "requestStr": "$updatedTime:DateTime! ",
24266
+ "required": true,
24267
+ "responseStr": "updatedTime:$updatedTime ",
24268
+ "type": {
24269
+ "kind": [
24270
+ "NON_NULL",
24271
+ "SCALAR"
24272
+ ],
24273
+ "name": "DateTime",
24274
+ "non_null": false
24275
+ },
24276
+ "varName": "updatedTime"
24277
+ }
24278
+ },
24279
+ "inputFields": null,
24280
+ "interfaces": {},
24281
+ "kind": "OBJECT",
24282
+ "name": "PolicyRevision",
24283
+ "possibleTypes": null
24284
+ },
24285
+ "indexType": "object",
24286
+ "kind": [
24287
+ "OBJECT"
24288
+ ],
24289
+ "name": "PolicyRevision",
24290
+ "non_null": false
24291
+ },
24292
+ "varName": "policyRevision"
24293
+ },
24294
+ "rules": {
24295
+ "alias": "wanFirewallRulePayloadRules: rules",
24296
+ "args": {},
24297
+ "deprecationReason": null,
24298
+ "description": null,
24299
+ "id_str": "wanFirewall___policy___rules",
24300
+ "isDeprecated": false,
24301
+ "name": "rules",
24302
+ "path": "wanFirewall.policy.rules",
24303
+ "requestStr": "$wanFirewallRulePayload:[WanFirewallRulePayload]! ",
24304
+ "required": true,
24305
+ "responseStr": "rules:$wanFirewallRulePayload ",
24306
+ "type": {
24307
+ "definition": {
24308
+ "description": "Wan Firewall policy information for a specific revision",
24309
+ "enumValues": null,
24310
+ "fields": {
24311
+ "audit": {
24312
+ "alias": "policyElementAuditAudit: audit",
24313
+ "args": {},
24314
+ "deprecationReason": null,
24315
+ "description": null,
24316
+ "id_str": "wanFirewall___policy___rules___audit",
24317
+ "isDeprecated": false,
24318
+ "name": "audit",
24319
+ "path": "wanFirewall.policy.rules.audit",
24320
+ "requestStr": "$policyElementAudit:PolicyElementAudit! ",
24321
+ "required": true,
24322
+ "responseStr": "audit:$policyElementAudit ",
24323
+ "type": {
24324
+ "definition": {
24325
+ "description": null,
24326
+ "enumValues": null,
24327
+ "fields": {
24328
+ "updatedBy": {
24329
+ "args": {},
24330
+ "deprecationReason": null,
24331
+ "description": "The admin, or the API-key, that performed the last update",
24332
+ "id_str": "wanFirewall___policy___rules___audit___updatedBy",
24333
+ "isDeprecated": false,
24334
+ "name": "updatedBy",
24335
+ "path": "wanFirewall.policy.rules.audit.updatedBy",
24336
+ "requestStr": "$updatedBy:String! ",
24337
+ "required": true,
24338
+ "responseStr": "updatedBy:$updatedBy ",
24339
+ "type": {
24340
+ "kind": [
24341
+ "NON_NULL",
24342
+ "SCALAR"
24343
+ ],
24344
+ "name": "String",
24345
+ "non_null": false
24346
+ },
24347
+ "varName": "updatedBy"
24348
+ },
24349
+ "updatedTime": {
24350
+ "args": {},
24351
+ "deprecationReason": null,
24352
+ "description": "The last date and time the rule was updated",
24353
+ "id_str": "wanFirewall___policy___rules___audit___updatedTime",
24354
+ "isDeprecated": false,
24355
+ "name": "updatedTime",
24356
+ "path": "wanFirewall.policy.rules.audit.updatedTime",
24357
+ "requestStr": "$updatedTime:DateTime! ",
24358
+ "required": true,
24359
+ "responseStr": "updatedTime:$updatedTime ",
24360
+ "type": {
24361
+ "kind": [
24362
+ "NON_NULL",
24363
+ "SCALAR"
24364
+ ],
24365
+ "name": "DateTime",
24366
+ "non_null": false
24367
+ },
24368
+ "varName": "updatedTime"
24369
+ }
24370
+ },
24371
+ "inputFields": null,
24372
+ "interfaces": {},
24373
+ "kind": "OBJECT",
24374
+ "name": "PolicyElementAudit",
24375
+ "possibleTypes": null
24376
+ },
24377
+ "indexType": "object",
24378
+ "kind": [
24379
+ "NON_NULL",
24380
+ "OBJECT"
24381
+ ],
24382
+ "name": "PolicyElementAudit",
24383
+ "non_null": false
24384
+ },
24385
+ "varName": "policyElementAudit"
24386
+ },
24387
+ "properties": {
24388
+ "alias": "policyElementPropertiesEnumProperties: properties",
24389
+ "args": {},
24390
+ "deprecationReason": null,
24391
+ "description": null,
24392
+ "id_str": "wanFirewall___policy___rules___properties",
24393
+ "isDeprecated": false,
24394
+ "name": "properties",
24395
+ "path": "wanFirewall.policy.rules.properties",
24396
+ "requestStr": "$properties:[PolicyElementPropertiesEnum]! ",
24397
+ "required": true,
24398
+ "responseStr": "properties:$properties ",
24399
+ "type": {
24400
+ "definition": {
24401
+ "description": "Attributes describing the rule state or type",
24402
+ "enumValues": [
24403
+ {
24404
+ "deprecationReason": null,
24405
+ "description": "New (added) rule",
24406
+ "isDeprecated": false,
24407
+ "name": "ADDED"
24408
+ },
24409
+ {
24410
+ "deprecationReason": null,
24411
+ "description": "Updated (modified) existing rule",
24412
+ "isDeprecated": false,
24413
+ "name": "UPDATED"
24414
+ },
24415
+ {
24416
+ "deprecationReason": null,
24417
+ "description": "Removed (deleted) rule",
24418
+ "isDeprecated": false,
24419
+ "name": "REMOVED"
24420
+ },
24421
+ {
24422
+ "deprecationReason": null,
24423
+ "description": "A rule moved to a different position",
24424
+ "isDeprecated": false,
24425
+ "name": "MOVED"
24426
+ },
24427
+ {
24428
+ "deprecationReason": null,
24429
+ "description": "A rule locked for changes by other admins",
24430
+ "isDeprecated": false,
24431
+ "name": "LOCKED"
24432
+ },
24433
+ {
24434
+ "deprecationReason": null,
24435
+ "description": "An object can not be moved, or referenced when moving other objects.\nHowever its properties and content can be modified.",
24436
+ "isDeprecated": false,
24437
+ "name": "ANCHORED"
24438
+ },
24439
+ {
24440
+ "deprecationReason": null,
24441
+ "description": "A pre-defined (system) rule that cannot be modified or removed",
24442
+ "isDeprecated": false,
24443
+ "name": "SYSTEM"
24444
+ }
24445
+ ],
24446
+ "fields": null,
24447
+ "inputFields": null,
24448
+ "interfaces": null,
24449
+ "kind": "ENUM",
24450
+ "name": "PolicyElementPropertiesEnum",
24451
+ "possibleTypes": null
24452
+ },
24453
+ "indexType": "enum",
24454
+ "kind": [
24455
+ "NON_NULL",
24456
+ "LIST",
24457
+ "NON_NULL",
24458
+ "ENUM"
24459
+ ],
24460
+ "name": "PolicyElementPropertiesEnum",
24461
+ "non_null": false
24462
+ },
24463
+ "varName": "properties"
24464
+ },
24465
+ "rule": {
24466
+ "alias": "wanFirewallRuleRule: rule",
24467
+ "args": {},
24468
+ "deprecationReason": null,
24469
+ "description": null,
24470
+ "id_str": "wanFirewall___policy___rules___rule",
24471
+ "isDeprecated": false,
24472
+ "name": "rule",
24473
+ "path": "wanFirewall.policy.rules.rule",
24474
+ "requestStr": "$wanFirewallRule:WanFirewallRule! ",
24475
+ "required": true,
24476
+ "responseStr": "rule:$wanFirewallRule ",
24477
+ "type": {
24478
+ "definition": {
24479
+ "description": null,
24480
+ "enumValues": null,
24481
+ "fields": {
24482
+ "action": {
24483
+ "alias": "wanFirewallActionEnumAction: action",
24484
+ "args": {},
24485
+ "deprecationReason": null,
24486
+ "description": "The action applied by the Internet Firewall if the rule is matched",
24487
+ "id_str": "wanFirewall___policy___rules___rule___action",
24488
+ "isDeprecated": false,
24489
+ "name": "action",
24490
+ "path": "wanFirewall.policy.rules.rule.action",
24491
+ "requestStr": "$action:WanFirewallActionEnum! ",
24492
+ "required": true,
24493
+ "responseStr": "action:$action ",
24494
+ "type": {
24495
+ "definition": {
24496
+ "description": null,
24497
+ "enumValues": [
24498
+ {
24499
+ "deprecationReason": null,
24500
+ "description": "Deny the network traffic from passing through the firewall.",
24501
+ "isDeprecated": false,
24502
+ "name": "BLOCK"
24503
+ },
24504
+ {
24505
+ "deprecationReason": null,
24506
+ "description": "Allow the network traffic to pass through the firewall.",
24507
+ "isDeprecated": false,
24508
+ "name": "ALLOW"
24509
+ },
24510
+ {
24511
+ "deprecationReason": null,
24512
+ "description": "Requests user confirmation to allow or block network traffic.",
24513
+ "isDeprecated": false,
24514
+ "name": "PROMPT"
24515
+ }
24516
+ ],
24517
+ "fields": null,
24518
+ "inputFields": null,
24519
+ "interfaces": null,
24520
+ "kind": "ENUM",
24521
+ "name": "WanFirewallActionEnum",
24522
+ "possibleTypes": null
24523
+ },
24524
+ "indexType": "enum",
24525
+ "kind": [
24526
+ "NON_NULL",
24527
+ "ENUM"
24528
+ ],
24529
+ "name": "WanFirewallActionEnum",
24530
+ "non_null": false
24531
+ },
24532
+ "varName": "action"
24533
+ },
24534
+ "application": {
24535
+ "alias": "wanFirewallApplicationApplication: application",
24536
+ "args": {},
24537
+ "deprecationReason": null,
24538
+ "description": "Application traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
24539
+ "id_str": "wanFirewall___policy___rules___rule___application",
24540
+ "isDeprecated": false,
24541
+ "name": "application",
24542
+ "path": "wanFirewall.policy.rules.rule.application",
24543
+ "requestStr": "$wanFirewallApplication:WanFirewallApplication! ",
24544
+ "required": true,
24545
+ "responseStr": "application:$wanFirewallApplication ",
24546
+ "type": {
24547
+ "definition": {
24548
+ "description": "Application match criteria set",
24549
+ "enumValues": null,
24550
+ "fields": {
24551
+ "appCategory": {
24552
+ "alias": "applicationCategoryRefAppCategory: appCategory",
24553
+ "args": {},
24554
+ "deprecationReason": null,
24555
+ "description": "Cato category of applications which are dynamically updated by Cato",
24556
+ "id_str": "wanFirewall___policy___rules___rule___application___appCategory",
24557
+ "isDeprecated": false,
24558
+ "name": "appCategory",
24559
+ "path": "wanFirewall.policy.rules.rule.application.appCategory",
24560
+ "requestStr": "$applicationCategoryRef:[ApplicationCategoryRef]! ",
24561
+ "required": true,
24562
+ "responseStr": "appCategory:$applicationCategoryRef ",
24563
+ "type": {
24564
+ "definition": {
24565
+ "description": "A reference identifying the ApplicationCategory object. ID: Unique ApplicationCategory Identifier, Name: The ApplicationCategory Name",
24566
+ "enumValues": null,
24567
+ "fields": {
24568
+ "id": {
24569
+ "args": {},
24570
+ "deprecationReason": null,
24571
+ "description": null,
24572
+ "id_str": "wanFirewall___policy___rules___rule___application___appCategory___id",
24573
+ "isDeprecated": false,
24574
+ "name": "id",
24575
+ "path": "wanFirewall.policy.rules.rule.application.appCategory.id",
24576
+ "requestStr": "$id:ID! ",
24577
+ "required": true,
24578
+ "responseStr": "id:$id ",
24579
+ "type": {
24580
+ "kind": [
24581
+ "NON_NULL",
24582
+ "SCALAR"
24583
+ ],
24584
+ "name": "ID",
24585
+ "non_null": false
24586
+ },
24587
+ "varName": "id"
24588
+ },
24589
+ "name": {
24590
+ "args": {},
24591
+ "deprecationReason": null,
24592
+ "description": null,
24593
+ "id_str": "wanFirewall___policy___rules___rule___application___appCategory___name",
24594
+ "isDeprecated": false,
24595
+ "name": "name",
24596
+ "path": "wanFirewall.policy.rules.rule.application.appCategory.name",
24597
+ "requestStr": "$name:String! ",
24598
+ "required": true,
24599
+ "responseStr": "name:$name ",
24600
+ "type": {
24601
+ "kind": [
24602
+ "NON_NULL",
24603
+ "SCALAR"
24604
+ ],
24605
+ "name": "String",
24606
+ "non_null": false
24607
+ },
24608
+ "varName": "name"
24609
+ }
24610
+ },
24611
+ "inputFields": null,
24612
+ "interfaces": {},
24613
+ "kind": "OBJECT",
24614
+ "name": "ApplicationCategoryRef",
24615
+ "possibleTypes": null
24616
+ },
24617
+ "indexType": "object",
24618
+ "kind": [
24619
+ "NON_NULL",
24620
+ "LIST",
24621
+ "NON_NULL",
24622
+ "OBJECT"
24623
+ ],
24624
+ "name": "ApplicationCategoryRef",
24625
+ "non_null": false
24626
+ },
24627
+ "varName": "applicationCategoryRef"
24628
+ },
24629
+ "application": {
24630
+ "alias": "applicationRefApplication: application",
24631
+ "args": {},
24632
+ "deprecationReason": null,
24633
+ "description": "Applications for the rule (pre-defined)",
24634
+ "id_str": "wanFirewall___policy___rules___rule___application___application",
24635
+ "isDeprecated": false,
24636
+ "name": "application",
24637
+ "path": "wanFirewall.policy.rules.rule.application.application",
24638
+ "requestStr": "$applicationRef:[ApplicationRef]! ",
24639
+ "required": true,
24640
+ "responseStr": "application:$applicationRef ",
24641
+ "type": {
24642
+ "definition": {
24643
+ "description": "A reference identifying the Application object. ID: Unique Application Identifier, Name: The Application Name",
24644
+ "enumValues": null,
24645
+ "fields": {
24646
+ "id": {
24647
+ "args": {},
24648
+ "deprecationReason": null,
24649
+ "description": null,
24650
+ "id_str": "wanFirewall___policy___rules___rule___application___application___id",
24651
+ "isDeprecated": false,
24652
+ "name": "id",
24653
+ "path": "wanFirewall.policy.rules.rule.application.application.id",
24654
+ "requestStr": "$id:ID! ",
24655
+ "required": true,
24656
+ "responseStr": "id:$id ",
24657
+ "type": {
24658
+ "kind": [
24659
+ "NON_NULL",
24660
+ "SCALAR"
24661
+ ],
24662
+ "name": "ID",
24663
+ "non_null": false
24664
+ },
24665
+ "varName": "id"
24666
+ },
24667
+ "name": {
24668
+ "args": {},
24669
+ "deprecationReason": null,
24670
+ "description": null,
24671
+ "id_str": "wanFirewall___policy___rules___rule___application___application___name",
24672
+ "isDeprecated": false,
24673
+ "name": "name",
24674
+ "path": "wanFirewall.policy.rules.rule.application.application.name",
24675
+ "requestStr": "$name:String! ",
24676
+ "required": true,
24677
+ "responseStr": "name:$name ",
24678
+ "type": {
24679
+ "kind": [
24680
+ "NON_NULL",
24681
+ "SCALAR"
24682
+ ],
24683
+ "name": "String",
24684
+ "non_null": false
24685
+ },
24686
+ "varName": "name"
24687
+ }
24688
+ },
24689
+ "inputFields": null,
24690
+ "interfaces": {},
24691
+ "kind": "OBJECT",
24692
+ "name": "ApplicationRef",
24693
+ "possibleTypes": null
24694
+ },
24695
+ "indexType": "object",
24696
+ "kind": [
24697
+ "NON_NULL",
24698
+ "LIST",
24699
+ "NON_NULL",
24700
+ "OBJECT"
24701
+ ],
24702
+ "name": "ApplicationRef",
24703
+ "non_null": false
24704
+ },
24705
+ "varName": "applicationRef"
24706
+ },
24707
+ "customApp": {
24708
+ "alias": "customApplicationRefCustomApp: customApp",
24709
+ "args": {},
24710
+ "deprecationReason": null,
24711
+ "description": "Custom (user-defined) applications",
24712
+ "id_str": "wanFirewall___policy___rules___rule___application___customApp",
24713
+ "isDeprecated": false,
24714
+ "name": "customApp",
24715
+ "path": "wanFirewall.policy.rules.rule.application.customApp",
24716
+ "requestStr": "$customApplicationRef:[CustomApplicationRef]! ",
24717
+ "required": true,
24718
+ "responseStr": "customApp:$customApplicationRef ",
24719
+ "type": {
24720
+ "definition": {
24721
+ "description": "A reference identifying the CustomApplication object. ID: Unique CustomApplication Identifier, Name: The CustomApplication Name",
24722
+ "enumValues": null,
24723
+ "fields": {
24724
+ "id": {
24725
+ "args": {},
24726
+ "deprecationReason": null,
24727
+ "description": null,
24728
+ "id_str": "wanFirewall___policy___rules___rule___application___customApp___id",
24729
+ "isDeprecated": false,
24730
+ "name": "id",
24731
+ "path": "wanFirewall.policy.rules.rule.application.customApp.id",
24732
+ "requestStr": "$id:ID! ",
24733
+ "required": true,
24734
+ "responseStr": "id:$id ",
24735
+ "type": {
24736
+ "kind": [
24737
+ "NON_NULL",
24738
+ "SCALAR"
24739
+ ],
24740
+ "name": "ID",
24741
+ "non_null": false
24742
+ },
24743
+ "varName": "id"
24744
+ },
24745
+ "name": {
24746
+ "args": {},
24747
+ "deprecationReason": null,
24748
+ "description": null,
24749
+ "id_str": "wanFirewall___policy___rules___rule___application___customApp___name",
24750
+ "isDeprecated": false,
24751
+ "name": "name",
24752
+ "path": "wanFirewall.policy.rules.rule.application.customApp.name",
24753
+ "requestStr": "$name:String! ",
24754
+ "required": true,
24755
+ "responseStr": "name:$name ",
24756
+ "type": {
24757
+ "kind": [
24758
+ "NON_NULL",
24759
+ "SCALAR"
24760
+ ],
24761
+ "name": "String",
24762
+ "non_null": false
24763
+ },
24764
+ "varName": "name"
24765
+ }
24766
+ },
24767
+ "inputFields": null,
24768
+ "interfaces": {},
24769
+ "kind": "OBJECT",
24770
+ "name": "CustomApplicationRef",
24771
+ "possibleTypes": null
24772
+ },
24773
+ "indexType": "object",
24774
+ "kind": [
24775
+ "NON_NULL",
24776
+ "LIST",
24777
+ "NON_NULL",
24778
+ "OBJECT"
24779
+ ],
24780
+ "name": "CustomApplicationRef",
23198
24781
  "non_null": false
23199
24782
  },
23200
24783
  "varName": "customApplicationRef"
@@ -39049,6 +40632,16 @@
39049
40632
  }
39050
40633
  }
39051
40634
  },
40635
+ "terminalServerPolicyInput": {
40636
+ "policyRevisionInput": {
40637
+ "id": {
40638
+ "id": "ID"
40639
+ },
40640
+ "type": {
40641
+ "type": "enum(PolicyRevisionType)"
40642
+ }
40643
+ }
40644
+ },
39052
40645
  "wanFirewallPolicyInput": {
39053
40646
  "policyRevisionInput": {
39054
40647
  "id": {