catocli 2.0.3__py3-none-any.whl → 2.0.5__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 (291) hide show
  1. build/lib/catocli/Utils/clidriver.py +268 -0
  2. build/lib/catocli/Utils/profile_manager.py +188 -0
  3. build/lib/catocli/Utils/version_checker.py +192 -0
  4. build/lib/catocli/__init__.py +2 -0
  5. build/lib/catocli/__main__.py +12 -0
  6. build/lib/catocli/parsers/configure/__init__.py +115 -0
  7. build/lib/catocli/parsers/configure/configure.py +307 -0
  8. build/lib/catocli/parsers/custom/__init__.py +57 -0
  9. build/lib/catocli/parsers/custom/customLib.py +561 -0
  10. build/lib/catocli/parsers/custom/export_rules/__init__.py +42 -0
  11. build/lib/catocli/parsers/custom/export_rules/export_rules.py +234 -0
  12. build/lib/catocli/parsers/custom/export_sites/__init__.py +21 -0
  13. build/lib/catocli/parsers/custom/export_sites/export_sites.py +372 -0
  14. build/lib/catocli/parsers/custom/import_rules_to_tf/__init__.py +58 -0
  15. build/lib/catocli/parsers/custom/import_rules_to_tf/import_rules_to_tf.py +451 -0
  16. build/lib/catocli/parsers/custom/import_sites_to_tf/__init__.py +45 -0
  17. build/lib/catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +891 -0
  18. build/lib/catocli/parsers/mutation_accountManagement/__init__.py +48 -0
  19. build/lib/catocli/parsers/mutation_admin/__init__.py +48 -0
  20. build/lib/catocli/parsers/mutation_container/__init__.py +138 -0
  21. build/lib/catocli/parsers/mutation_hardware/__init__.py +22 -0
  22. build/lib/catocli/parsers/mutation_policy/__init__.py +1305 -0
  23. build/lib/catocli/parsers/mutation_sandbox/__init__.py +35 -0
  24. build/lib/catocli/parsers/mutation_site/__init__.py +373 -0
  25. build/lib/catocli/parsers/mutation_sites/__init__.py +373 -0
  26. build/lib/catocli/parsers/mutation_xdr/__init__.py +48 -0
  27. build/lib/catocli/parsers/parserApiClient.py +513 -0
  28. build/lib/catocli/parsers/query_accountBySubdomain/__init__.py +16 -0
  29. build/lib/catocli/parsers/query_accountManagement/__init__.py +16 -0
  30. build/lib/catocli/parsers/query_accountMetrics/__init__.py +16 -0
  31. build/lib/catocli/parsers/query_accountRoles/__init__.py +16 -0
  32. build/lib/catocli/parsers/query_accountSnapshot/__init__.py +16 -0
  33. build/lib/catocli/parsers/query_admin/__init__.py +16 -0
  34. build/lib/catocli/parsers/query_admins/__init__.py +16 -0
  35. build/lib/catocli/parsers/query_appStats/__init__.py +16 -0
  36. build/lib/catocli/parsers/query_appStatsTimeSeries/__init__.py +16 -0
  37. build/lib/catocli/parsers/query_auditFeed/__init__.py +16 -0
  38. build/lib/catocli/parsers/query_catalogs/__init__.py +16 -0
  39. build/lib/catocli/parsers/query_container/__init__.py +16 -0
  40. build/lib/catocli/parsers/query_devices/__init__.py +16 -0
  41. build/lib/catocli/parsers/query_entityLookup/__init__.py +16 -0
  42. build/lib/catocli/parsers/query_events/__init__.py +16 -0
  43. build/lib/catocli/parsers/query_eventsFeed/__init__.py +16 -0
  44. build/lib/catocli/parsers/query_eventsTimeSeries/__init__.py +16 -0
  45. build/lib/catocli/parsers/query_hardware/__init__.py +16 -0
  46. build/lib/catocli/parsers/query_hardwareManagement/__init__.py +16 -0
  47. build/lib/catocli/parsers/query_licensing/__init__.py +16 -0
  48. build/lib/catocli/parsers/query_policy/__init__.py +161 -0
  49. build/lib/catocli/parsers/query_sandbox/__init__.py +16 -0
  50. build/lib/catocli/parsers/query_site/__init__.py +100 -0
  51. build/lib/catocli/parsers/query_siteLocation/__init__.py +13 -0
  52. build/lib/catocli/parsers/query_subDomains/__init__.py +16 -0
  53. build/lib/catocli/parsers/query_xdr/__init__.py +35 -0
  54. build/lib/catocli/parsers/raw/__init__.py +12 -0
  55. build/lib/graphql_client/__init__.py +11 -0
  56. build/lib/graphql_client/api/__init__.py +3 -0
  57. build/lib/graphql_client/api/call_api.py +84 -0
  58. build/lib/graphql_client/api_client.py +192 -0
  59. build/lib/graphql_client/api_client_types.py +409 -0
  60. build/lib/graphql_client/configuration.py +232 -0
  61. build/lib/graphql_client/models/__init__.py +13 -0
  62. build/lib/graphql_client/models/no_schema.py +71 -0
  63. build/lib/schema/catolib.py +1141 -0
  64. build/lib/schema/importSchema.py +60 -0
  65. build/lib/schema/remove_policyid.py +89 -0
  66. build/lib/schema/remove_policyid_mutations.py +89 -0
  67. build/lib/scripts/catolib.py +62 -0
  68. build/lib/scripts/export_if_rules_to_json.py +188 -0
  69. build/lib/scripts/export_wf_rules_to_json.py +111 -0
  70. build/lib/scripts/import_wf_rules_to_tfstate.py +331 -0
  71. build/lib/vendor/certifi/__init__.py +4 -0
  72. build/lib/vendor/certifi/__main__.py +12 -0
  73. build/lib/vendor/certifi/core.py +114 -0
  74. build/lib/vendor/certifi/py.typed +0 -0
  75. build/lib/vendor/six.py +998 -0
  76. build/lib/vendor/urllib3/__init__.py +211 -0
  77. build/lib/vendor/urllib3/_base_connection.py +172 -0
  78. build/lib/vendor/urllib3/_collections.py +483 -0
  79. build/lib/vendor/urllib3/_request_methods.py +278 -0
  80. build/lib/vendor/urllib3/_version.py +16 -0
  81. build/lib/vendor/urllib3/connection.py +1033 -0
  82. build/lib/vendor/urllib3/connectionpool.py +1182 -0
  83. build/lib/vendor/urllib3/contrib/__init__.py +0 -0
  84. build/lib/vendor/urllib3/contrib/emscripten/__init__.py +18 -0
  85. build/lib/vendor/urllib3/contrib/emscripten/connection.py +254 -0
  86. build/lib/vendor/urllib3/contrib/emscripten/fetch.py +418 -0
  87. build/lib/vendor/urllib3/contrib/emscripten/request.py +22 -0
  88. build/lib/vendor/urllib3/contrib/emscripten/response.py +285 -0
  89. build/lib/vendor/urllib3/contrib/pyopenssl.py +552 -0
  90. build/lib/vendor/urllib3/contrib/socks.py +228 -0
  91. build/lib/vendor/urllib3/exceptions.py +321 -0
  92. build/lib/vendor/urllib3/fields.py +341 -0
  93. build/lib/vendor/urllib3/filepost.py +89 -0
  94. build/lib/vendor/urllib3/http2/__init__.py +53 -0
  95. build/lib/vendor/urllib3/http2/connection.py +356 -0
  96. build/lib/vendor/urllib3/http2/probe.py +87 -0
  97. build/lib/vendor/urllib3/poolmanager.py +637 -0
  98. build/lib/vendor/urllib3/py.typed +2 -0
  99. build/lib/vendor/urllib3/response.py +1265 -0
  100. build/lib/vendor/urllib3/util/__init__.py +42 -0
  101. build/lib/vendor/urllib3/util/connection.py +137 -0
  102. build/lib/vendor/urllib3/util/proxy.py +43 -0
  103. build/lib/vendor/urllib3/util/request.py +256 -0
  104. build/lib/vendor/urllib3/util/response.py +101 -0
  105. build/lib/vendor/urllib3/util/retry.py +533 -0
  106. build/lib/vendor/urllib3/util/ssl_.py +513 -0
  107. build/lib/vendor/urllib3/util/ssl_match_hostname.py +159 -0
  108. build/lib/vendor/urllib3/util/ssltransport.py +276 -0
  109. build/lib/vendor/urllib3/util/timeout.py +275 -0
  110. build/lib/vendor/urllib3/util/url.py +471 -0
  111. build/lib/vendor/urllib3/util/util.py +42 -0
  112. build/lib/vendor/urllib3/util/wait.py +124 -0
  113. catocli/Utils/clidriver.py +1 -4
  114. catocli/__init__.py +1 -1
  115. catocli/parsers/custom/export_rules/__init__.py +2 -0
  116. catocli/parsers/custom/export_rules/export_rules.py +29 -5
  117. catocli/parsers/custom/export_sites/__init__.py +1 -0
  118. catocli/parsers/custom/export_sites/export_sites.py +10 -3
  119. catocli/parsers/mutation_container/__init__.py +116 -0
  120. catocli/parsers/mutation_container_fqdn/README.md +7 -0
  121. catocli/parsers/mutation_container_fqdn_addValues/README.md +17 -0
  122. catocli/parsers/mutation_container_fqdn_createFromFile/README.md +17 -0
  123. catocli/parsers/mutation_container_fqdn_removeValues/README.md +17 -0
  124. catocli/parsers/mutation_container_fqdn_updateFromFile/README.md +17 -0
  125. catocli/parsers/mutation_container_ipAddressRange/README.md +7 -0
  126. catocli/parsers/mutation_container_ipAddressRange_addValues/README.md +17 -0
  127. catocli/parsers/mutation_container_ipAddressRange_createFromFile/README.md +17 -0
  128. catocli/parsers/mutation_container_ipAddressRange_removeValues/README.md +17 -0
  129. catocli/parsers/mutation_container_ipAddressRange_updateFromFile/README.md +17 -0
  130. catocli/parsers/mutation_policy_internetFirewall_addRule/README.md +1 -1
  131. catocli/parsers/mutation_policy_internetFirewall_updateRule/README.md +1 -1
  132. catocli/parsers/mutation_policy_wanFirewall_addRule/README.md +1 -1
  133. catocli/parsers/mutation_policy_wanFirewall_updateRule/README.md +1 -1
  134. catocli/parsers/parserApiClient.py +183 -7
  135. catocli/parsers/query_policy/README.md +0 -17
  136. catocli/parsers/query_policy/__init__.py +153 -8
  137. catocli/parsers/query_policy_appTenantRestriction/README.md +7 -0
  138. catocli/parsers/query_policy_appTenantRestriction_policy/README.md +17 -0
  139. catocli/parsers/query_policy_dynamicIpAllocation/README.md +7 -0
  140. catocli/parsers/query_policy_dynamicIpAllocation_policy/README.md +17 -0
  141. catocli/parsers/query_policy_internetFirewall/README.md +7 -0
  142. catocli/parsers/query_policy_internetFirewall_policy/README.md +17 -0
  143. catocli/parsers/query_policy_remotePortFwd/README.md +7 -0
  144. catocli/parsers/query_policy_remotePortFwd_policy/README.md +17 -0
  145. catocli/parsers/query_policy_socketLan/README.md +7 -0
  146. catocli/parsers/query_policy_socketLan_policy/README.md +17 -0
  147. catocli/parsers/query_policy_terminalServer/README.md +7 -0
  148. catocli/parsers/query_policy_terminalServer_policy/README.md +17 -0
  149. catocli/parsers/query_policy_wanFirewall/README.md +7 -0
  150. catocli/parsers/query_policy_wanFirewall_policy/README.md +17 -0
  151. catocli/parsers/query_policy_wanNetwork/README.md +7 -0
  152. catocli/parsers/query_policy_wanNetwork_policy/README.md +17 -0
  153. catocli/parsers/query_site/README.md +0 -16
  154. catocli/parsers/query_site/__init__.py +92 -8
  155. catocli/parsers/query_site_availableVersionList/README.md +17 -0
  156. catocli/parsers/query_site_bgpPeer/README.md +17 -0
  157. catocli/parsers/query_site_bgpPeerList/README.md +17 -0
  158. catocli/parsers/query_site_cloudInterconnectConnectionConnectivity/README.md +17 -0
  159. catocli/parsers/query_site_cloudInterconnectPhysicalConnection/README.md +17 -0
  160. catocli/parsers/query_site_cloudInterconnectPhysicalConnectionId/README.md +17 -0
  161. catocli/parsers/query_site_siteBgpStatus/README.md +17 -0
  162. {catocli-2.0.3.dist-info → catocli-2.0.5.dist-info}/METADATA +1 -1
  163. {catocli-2.0.3.dist-info → catocli-2.0.5.dist-info}/RECORD +291 -121
  164. {catocli-2.0.3.dist-info → catocli-2.0.5.dist-info}/top_level.txt +1 -0
  165. graphql_client/api/call_api.py +4 -3
  166. models/mutation.container.fqdn.addValues.json +866 -0
  167. models/mutation.container.fqdn.createFromFile.json +819 -0
  168. models/mutation.container.fqdn.removeValues.json +866 -0
  169. models/mutation.container.fqdn.updateFromFile.json +1045 -0
  170. models/mutation.container.ipAddressRange.addValues.json +1020 -0
  171. models/mutation.container.ipAddressRange.createFromFile.json +819 -0
  172. models/mutation.container.ipAddressRange.removeValues.json +1020 -0
  173. models/mutation.container.ipAddressRange.updateFromFile.json +1045 -0
  174. models/mutation.policy.appTenantRestriction.addRule.json +8 -8
  175. models/mutation.policy.appTenantRestriction.addSection.json +1 -1
  176. models/mutation.policy.appTenantRestriction.createPolicyRevision.json +2 -2
  177. models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +2 -2
  178. models/mutation.policy.appTenantRestriction.moveRule.json +2 -2
  179. models/mutation.policy.appTenantRestriction.moveSection.json +1 -1
  180. models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +2 -2
  181. models/mutation.policy.appTenantRestriction.removeRule.json +2 -2
  182. models/mutation.policy.appTenantRestriction.removeSection.json +1 -1
  183. models/mutation.policy.appTenantRestriction.updatePolicy.json +2 -2
  184. models/mutation.policy.appTenantRestriction.updateRule.json +8 -8
  185. models/mutation.policy.appTenantRestriction.updateSection.json +1 -1
  186. models/mutation.policy.dynamicIpAllocation.addRule.json +1 -1
  187. models/mutation.policy.dynamicIpAllocation.addSection.json +1 -1
  188. models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +1 -1
  189. models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +1 -1
  190. models/mutation.policy.dynamicIpAllocation.moveRule.json +1 -1
  191. models/mutation.policy.dynamicIpAllocation.moveSection.json +1 -1
  192. models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +1 -1
  193. models/mutation.policy.dynamicIpAllocation.removeRule.json +1 -1
  194. models/mutation.policy.dynamicIpAllocation.removeSection.json +1 -1
  195. models/mutation.policy.dynamicIpAllocation.updatePolicy.json +1 -1
  196. models/mutation.policy.dynamicIpAllocation.updateRule.json +1 -1
  197. models/mutation.policy.dynamicIpAllocation.updateSection.json +1 -1
  198. models/mutation.policy.internetFirewall.addRule.json +502 -55
  199. models/mutation.policy.internetFirewall.addSection.json +1 -1
  200. models/mutation.policy.internetFirewall.createPolicyRevision.json +127 -10
  201. models/mutation.policy.internetFirewall.discardPolicyRevision.json +127 -10
  202. models/mutation.policy.internetFirewall.moveRule.json +127 -10
  203. models/mutation.policy.internetFirewall.moveSection.json +1 -1
  204. models/mutation.policy.internetFirewall.publishPolicyRevision.json +127 -10
  205. models/mutation.policy.internetFirewall.removeRule.json +127 -10
  206. models/mutation.policy.internetFirewall.removeSection.json +1 -1
  207. models/mutation.policy.internetFirewall.updatePolicy.json +127 -10
  208. models/mutation.policy.internetFirewall.updateRule.json +493 -55
  209. models/mutation.policy.internetFirewall.updateSection.json +1 -1
  210. models/mutation.policy.remotePortFwd.addRule.json +5 -5
  211. models/mutation.policy.remotePortFwd.addSection.json +1 -1
  212. models/mutation.policy.remotePortFwd.createPolicyRevision.json +2 -2
  213. models/mutation.policy.remotePortFwd.discardPolicyRevision.json +2 -2
  214. models/mutation.policy.remotePortFwd.moveRule.json +2 -2
  215. models/mutation.policy.remotePortFwd.moveSection.json +1 -1
  216. models/mutation.policy.remotePortFwd.publishPolicyRevision.json +2 -2
  217. models/mutation.policy.remotePortFwd.removeRule.json +2 -2
  218. models/mutation.policy.remotePortFwd.removeSection.json +1 -1
  219. models/mutation.policy.remotePortFwd.updatePolicy.json +2 -2
  220. models/mutation.policy.remotePortFwd.updateRule.json +5 -5
  221. models/mutation.policy.remotePortFwd.updateSection.json +1 -1
  222. models/mutation.policy.socketLan.addRule.json +16 -16
  223. models/mutation.policy.socketLan.addSection.json +1 -1
  224. models/mutation.policy.socketLan.createPolicyRevision.json +4 -4
  225. models/mutation.policy.socketLan.discardPolicyRevision.json +4 -4
  226. models/mutation.policy.socketLan.moveRule.json +4 -4
  227. models/mutation.policy.socketLan.moveSection.json +1 -1
  228. models/mutation.policy.socketLan.publishPolicyRevision.json +4 -4
  229. models/mutation.policy.socketLan.removeRule.json +4 -4
  230. models/mutation.policy.socketLan.removeSection.json +1 -1
  231. models/mutation.policy.socketLan.updatePolicy.json +4 -4
  232. models/mutation.policy.socketLan.updateRule.json +16 -16
  233. models/mutation.policy.socketLan.updateSection.json +1 -1
  234. models/mutation.policy.terminalServer.addRule.json +1 -1
  235. models/mutation.policy.terminalServer.addSection.json +1 -1
  236. models/mutation.policy.terminalServer.createPolicyRevision.json +1 -1
  237. models/mutation.policy.terminalServer.discardPolicyRevision.json +1 -1
  238. models/mutation.policy.terminalServer.moveRule.json +1 -1
  239. models/mutation.policy.terminalServer.moveSection.json +1 -1
  240. models/mutation.policy.terminalServer.publishPolicyRevision.json +1 -1
  241. models/mutation.policy.terminalServer.removeRule.json +1 -1
  242. models/mutation.policy.terminalServer.removeSection.json +1 -1
  243. models/mutation.policy.terminalServer.updatePolicy.json +1 -1
  244. models/mutation.policy.terminalServer.updateRule.json +1 -1
  245. models/mutation.policy.terminalServer.updateSection.json +1 -1
  246. models/mutation.policy.wanFirewall.addRule.json +500 -53
  247. models/mutation.policy.wanFirewall.addSection.json +1 -1
  248. models/mutation.policy.wanFirewall.createPolicyRevision.json +128 -11
  249. models/mutation.policy.wanFirewall.discardPolicyRevision.json +128 -11
  250. models/mutation.policy.wanFirewall.moveRule.json +128 -11
  251. models/mutation.policy.wanFirewall.moveSection.json +1 -1
  252. models/mutation.policy.wanFirewall.publishPolicyRevision.json +128 -11
  253. models/mutation.policy.wanFirewall.removeRule.json +128 -11
  254. models/mutation.policy.wanFirewall.removeSection.json +1 -1
  255. models/mutation.policy.wanFirewall.updatePolicy.json +128 -11
  256. models/mutation.policy.wanFirewall.updateRule.json +491 -53
  257. models/mutation.policy.wanFirewall.updateSection.json +1 -1
  258. models/mutation.policy.wanNetwork.addRule.json +13 -13
  259. models/mutation.policy.wanNetwork.addSection.json +1 -1
  260. models/mutation.policy.wanNetwork.createPolicyRevision.json +1 -1
  261. models/mutation.policy.wanNetwork.discardPolicyRevision.json +1 -1
  262. models/mutation.policy.wanNetwork.moveRule.json +1 -1
  263. models/mutation.policy.wanNetwork.moveSection.json +1 -1
  264. models/mutation.policy.wanNetwork.publishPolicyRevision.json +1 -1
  265. models/mutation.policy.wanNetwork.removeRule.json +1 -1
  266. models/mutation.policy.wanNetwork.removeSection.json +1 -1
  267. models/mutation.policy.wanNetwork.updatePolicy.json +1 -1
  268. models/mutation.policy.wanNetwork.updateRule.json +13 -13
  269. models/mutation.policy.wanNetwork.updateSection.json +1 -1
  270. models/query.policy.appTenantRestriction.policy.json +3086 -0
  271. models/query.policy.dynamicIpAllocation.policy.json +1934 -0
  272. models/query.policy.internetFirewall.policy.json +7833 -0
  273. models/query.policy.json +233 -0
  274. models/query.policy.remotePortFwd.policy.json +2387 -0
  275. models/query.policy.socketLan.policy.json +7140 -0
  276. models/query.policy.terminalServer.policy.json +1632 -0
  277. models/query.policy.wanFirewall.policy.json +9212 -0
  278. models/query.policy.wanNetwork.policy.json +8010 -0
  279. models/query.site.availableVersionList.json +365 -0
  280. models/query.site.bgpPeer.json +1917 -0
  281. models/query.site.bgpPeerList.json +2076 -0
  282. models/query.site.cloudInterconnectConnectionConnectivity.json +298 -0
  283. models/query.site.cloudInterconnectPhysicalConnection.json +728 -0
  284. models/query.site.cloudInterconnectPhysicalConnectionId.json +660 -0
  285. models/query.site.siteBgpStatus.json +869 -0
  286. schema/catolib.py +13 -6
  287. schema/remove_policyid.py +89 -0
  288. schema/remove_policyid_mutations.py +89 -0
  289. {catocli-2.0.3.dist-info → catocli-2.0.5.dist-info}/LICENSE +0 -0
  290. {catocli-2.0.3.dist-info → catocli-2.0.5.dist-info}/WHEEL +0 -0
  291. {catocli-2.0.3.dist-info → catocli-2.0.5.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,2387 @@
1
+ {
2
+ "args": {
3
+ "accountId": {
4
+ "defaultValue": null,
5
+ "description": null,
6
+ "id_str": "accountId",
7
+ "name": "accountId",
8
+ "path": "accountId",
9
+ "requestStr": "$accountId:ID! ",
10
+ "required": true,
11
+ "responseStr": "accountId:$accountId ",
12
+ "type": {
13
+ "kind": [
14
+ "NON_NULL",
15
+ "SCALAR"
16
+ ],
17
+ "name": "ID",
18
+ "non_null": false
19
+ },
20
+ "varName": "accountId"
21
+ }
22
+ },
23
+ "childOperations": {
24
+ "policy": {
25
+ "args": {
26
+ "policy___input": {
27
+ "defaultValue": null,
28
+ "description": null,
29
+ "id_str": "policy___input",
30
+ "name": "input",
31
+ "path": "policy.input",
32
+ "requestStr": "$remotePortFwdPolicyInput:RemotePortFwdPolicyInput ",
33
+ "required": false,
34
+ "responseStr": "input:$remotePortFwdPolicyInput ",
35
+ "type": {
36
+ "definition": {
37
+ "description": null,
38
+ "enumValues": null,
39
+ "fields": null,
40
+ "inputFields": {
41
+ "revision": {
42
+ "defaultValue": null,
43
+ "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.",
44
+ "id_str": "policy___input___revision",
45
+ "name": "revision",
46
+ "path": "policy.input.revision",
47
+ "requestStr": "$policyRevisionInput:PolicyRevisionInput ",
48
+ "required": false,
49
+ "responseStr": "revision:$policyRevisionInput ",
50
+ "type": {
51
+ "definition": {
52
+ "description": "Input for specifying a policy revision",
53
+ "enumValues": null,
54
+ "fields": null,
55
+ "inputFields": {
56
+ "id": {
57
+ "defaultValue": null,
58
+ "description": null,
59
+ "id_str": "policy___input___revision___id",
60
+ "name": "id",
61
+ "path": "policy.input.revision.id",
62
+ "requestStr": "$id:ID ",
63
+ "required": false,
64
+ "responseStr": "id:$id ",
65
+ "type": {
66
+ "kind": [
67
+ "SCALAR"
68
+ ],
69
+ "name": "ID",
70
+ "non_null": false
71
+ },
72
+ "varName": "id"
73
+ },
74
+ "type": {
75
+ "defaultValue": "PRIVATE",
76
+ "description": null,
77
+ "id_str": "policy___input___revision___type",
78
+ "name": "type",
79
+ "path": "policy.input.revision.type",
80
+ "requestStr": "$type:PolicyRevisionType ",
81
+ "required": false,
82
+ "responseStr": "type:$type ",
83
+ "type": {
84
+ "definition": {
85
+ "description": "Enum for the type of a policy revision",
86
+ "enumValues": [
87
+ {
88
+ "deprecationReason": null,
89
+ "description": null,
90
+ "isDeprecated": false,
91
+ "name": "PRIVATE"
92
+ },
93
+ {
94
+ "deprecationReason": null,
95
+ "description": null,
96
+ "isDeprecated": false,
97
+ "name": "PUBLIC"
98
+ }
99
+ ],
100
+ "fields": null,
101
+ "inputFields": null,
102
+ "interfaces": null,
103
+ "kind": "ENUM",
104
+ "name": "PolicyRevisionType",
105
+ "possibleTypes": null
106
+ },
107
+ "indexType": "enum",
108
+ "kind": [
109
+ "ENUM"
110
+ ],
111
+ "name": "PolicyRevisionType",
112
+ "non_null": false
113
+ },
114
+ "varName": "type"
115
+ }
116
+ },
117
+ "interfaces": null,
118
+ "kind": "INPUT_OBJECT",
119
+ "name": "PolicyRevisionInput",
120
+ "possibleTypes": null
121
+ },
122
+ "indexType": "input_object",
123
+ "kind": [
124
+ "INPUT_OBJECT"
125
+ ],
126
+ "name": "PolicyRevisionInput",
127
+ "non_null": false
128
+ },
129
+ "varName": "policyRevisionInput"
130
+ }
131
+ },
132
+ "interfaces": null,
133
+ "kind": "INPUT_OBJECT",
134
+ "name": "RemotePortFwdPolicyInput",
135
+ "possibleTypes": null
136
+ },
137
+ "indexType": "input_object",
138
+ "kind": [
139
+ "INPUT_OBJECT"
140
+ ],
141
+ "name": "RemotePortFwdPolicyInput",
142
+ "non_null": false
143
+ },
144
+ "varName": "remotePortFwdPolicyInput"
145
+ }
146
+ },
147
+ "deprecationReason": null,
148
+ "description": null,
149
+ "isDeprecated": false,
150
+ "name": "policy",
151
+ "type": {
152
+ "kind": "NON_NULL",
153
+ "name": null,
154
+ "ofType": {
155
+ "kind": "OBJECT",
156
+ "name": "RemotePortFwdPolicy",
157
+ "ofType": null
158
+ }
159
+ }
160
+ },
161
+ "remotePortFwd": {
162
+ "args": {},
163
+ "deprecationReason": null,
164
+ "description": null,
165
+ "isDeprecated": false,
166
+ "name": "remotePortFwd",
167
+ "type": {
168
+ "kind": "OBJECT",
169
+ "name": "RemotePortFwdPolicyQueries",
170
+ "ofType": null
171
+ }
172
+ }
173
+ },
174
+ "deprecationReason": null,
175
+ "description": null,
176
+ "fieldTypes": {
177
+ "AllocatedIpRef": true,
178
+ "GlobalIpRangeRef": true,
179
+ "IpAddressRange": true,
180
+ "PolicyAudit": true,
181
+ "PolicyElementAudit": true,
182
+ "PolicyElementPropertiesEnum": true,
183
+ "PolicyRevision": true,
184
+ "PolicyRevisionInput": true,
185
+ "PolicyRevisionType": true,
186
+ "PolicyRuleTrackingAlert": true,
187
+ "PolicyRuleTrackingFrequencyEnum": true,
188
+ "PolicySectionInfo": true,
189
+ "PolicySectionPayload": true,
190
+ "PortRange": true,
191
+ "RemotePortFwdPolicy": true,
192
+ "RemotePortFwdPolicyQueries": true,
193
+ "RemotePortFwdRemoteIps": true,
194
+ "RemotePortFwdRestrictionType": true,
195
+ "RemotePortFwdRule": true,
196
+ "RemotePortFwdRulePayload": true,
197
+ "SubscriptionGroupRef": true,
198
+ "SubscriptionMailingListRef": true,
199
+ "SubscriptionWebhookRef": true
200
+ },
201
+ "isDeprecated": false,
202
+ "name": "policy",
203
+ "operationArgs": {
204
+ "accountId": {
205
+ "defaultValue": null,
206
+ "description": null,
207
+ "id_str": "accountId",
208
+ "name": "accountId",
209
+ "path": "accountId",
210
+ "requestStr": "$accountId:ID! ",
211
+ "required": true,
212
+ "responseStr": "accountId:$accountId ",
213
+ "type": {
214
+ "kind": [
215
+ "NON_NULL",
216
+ "SCALAR"
217
+ ],
218
+ "name": "ID",
219
+ "non_null": false
220
+ },
221
+ "varName": "accountId"
222
+ },
223
+ "remotePortFwdPolicyInput": {
224
+ "defaultValue": null,
225
+ "description": null,
226
+ "id_str": "policy___input",
227
+ "name": "input",
228
+ "path": "policy.input",
229
+ "requestStr": "$remotePortFwdPolicyInput:RemotePortFwdPolicyInput ",
230
+ "required": false,
231
+ "responseStr": "input:$remotePortFwdPolicyInput ",
232
+ "type": {
233
+ "definition": {
234
+ "description": null,
235
+ "enumValues": null,
236
+ "fields": null,
237
+ "inputFields": {
238
+ "revision": {
239
+ "defaultValue": null,
240
+ "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.",
241
+ "id_str": "policy___input___revision",
242
+ "name": "revision",
243
+ "path": "policy.input.revision",
244
+ "requestStr": "$policyRevisionInput:PolicyRevisionInput ",
245
+ "required": false,
246
+ "responseStr": "revision:$policyRevisionInput ",
247
+ "type": {
248
+ "definition": {
249
+ "description": "Input for specifying a policy revision",
250
+ "enumValues": null,
251
+ "fields": null,
252
+ "inputFields": {
253
+ "id": {
254
+ "defaultValue": null,
255
+ "description": null,
256
+ "id_str": "policy___input___revision___id",
257
+ "name": "id",
258
+ "path": "policy.input.revision.id",
259
+ "requestStr": "$id:ID ",
260
+ "required": false,
261
+ "responseStr": "id:$id ",
262
+ "type": {
263
+ "kind": [
264
+ "SCALAR"
265
+ ],
266
+ "name": "ID",
267
+ "non_null": false
268
+ },
269
+ "varName": "id"
270
+ },
271
+ "type": {
272
+ "defaultValue": "PRIVATE",
273
+ "description": null,
274
+ "id_str": "policy___input___revision___type",
275
+ "name": "type",
276
+ "path": "policy.input.revision.type",
277
+ "requestStr": "$type:PolicyRevisionType ",
278
+ "required": false,
279
+ "responseStr": "type:$type ",
280
+ "type": {
281
+ "definition": {
282
+ "description": "Enum for the type of a policy revision",
283
+ "enumValues": [
284
+ {
285
+ "deprecationReason": null,
286
+ "description": null,
287
+ "isDeprecated": false,
288
+ "name": "PRIVATE"
289
+ },
290
+ {
291
+ "deprecationReason": null,
292
+ "description": null,
293
+ "isDeprecated": false,
294
+ "name": "PUBLIC"
295
+ }
296
+ ],
297
+ "fields": null,
298
+ "inputFields": null,
299
+ "interfaces": null,
300
+ "kind": "ENUM",
301
+ "name": "PolicyRevisionType",
302
+ "possibleTypes": null
303
+ },
304
+ "indexType": "enum",
305
+ "kind": [
306
+ "ENUM"
307
+ ],
308
+ "name": "PolicyRevisionType",
309
+ "non_null": false
310
+ },
311
+ "varName": "type"
312
+ }
313
+ },
314
+ "interfaces": null,
315
+ "kind": "INPUT_OBJECT",
316
+ "name": "PolicyRevisionInput",
317
+ "possibleTypes": null
318
+ },
319
+ "indexType": "input_object",
320
+ "kind": [
321
+ "INPUT_OBJECT"
322
+ ],
323
+ "name": "PolicyRevisionInput",
324
+ "non_null": false
325
+ },
326
+ "varName": "policyRevisionInput"
327
+ }
328
+ },
329
+ "interfaces": null,
330
+ "kind": "INPUT_OBJECT",
331
+ "name": "RemotePortFwdPolicyInput",
332
+ "possibleTypes": null
333
+ },
334
+ "indexType": "input_object",
335
+ "kind": [
336
+ "INPUT_OBJECT"
337
+ ],
338
+ "name": "RemotePortFwdPolicyInput",
339
+ "non_null": false
340
+ },
341
+ "varName": "remotePortFwdPolicyInput"
342
+ }
343
+ },
344
+ "path": "query.policy.remotePortFwd.policy",
345
+ "type": {
346
+ "definition": {
347
+ "description": "policies which configuration can be read with query APIs.",
348
+ "enumValues": null,
349
+ "fields": {
350
+ "remotePortFwd": {
351
+ "args": {},
352
+ "deprecationReason": null,
353
+ "description": null,
354
+ "id_str": "remotePortFwd",
355
+ "isDeprecated": false,
356
+ "name": "remotePortFwd",
357
+ "path": "remotePortFwd",
358
+ "requestStr": "$remotePortFwdPolicyQueries:RemotePortFwdPolicyQueries ",
359
+ "required": false,
360
+ "responseStr": "remotePortFwd:$remotePortFwdPolicyQueries ",
361
+ "type": {
362
+ "definition": {
363
+ "description": null,
364
+ "enumValues": null,
365
+ "fields": {
366
+ "policy": {
367
+ "args": {
368
+ "policy___input": {
369
+ "defaultValue": null,
370
+ "description": null,
371
+ "id_str": "policy___input",
372
+ "name": "input",
373
+ "path": "policy.input",
374
+ "requestStr": "$remotePortFwdPolicyInput:RemotePortFwdPolicyInput ",
375
+ "required": false,
376
+ "responseStr": "input:$remotePortFwdPolicyInput ",
377
+ "type": {
378
+ "definition": {
379
+ "description": null,
380
+ "enumValues": null,
381
+ "fields": null,
382
+ "inputFields": {
383
+ "revision": {
384
+ "defaultValue": null,
385
+ "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.",
386
+ "id_str": "policy___input___revision",
387
+ "name": "revision",
388
+ "path": "policy.input.revision",
389
+ "requestStr": "$policyRevisionInput:PolicyRevisionInput ",
390
+ "required": false,
391
+ "responseStr": "revision:$policyRevisionInput ",
392
+ "type": {
393
+ "definition": {
394
+ "description": "Input for specifying a policy revision",
395
+ "enumValues": null,
396
+ "fields": null,
397
+ "inputFields": {
398
+ "id": {
399
+ "defaultValue": null,
400
+ "description": null,
401
+ "id_str": "policy___input___revision___id",
402
+ "name": "id",
403
+ "path": "policy.input.revision.id",
404
+ "requestStr": "$id:ID ",
405
+ "required": false,
406
+ "responseStr": "id:$id ",
407
+ "type": {
408
+ "kind": [
409
+ "SCALAR"
410
+ ],
411
+ "name": "ID",
412
+ "non_null": false
413
+ },
414
+ "varName": "id"
415
+ },
416
+ "type": {
417
+ "defaultValue": "PRIVATE",
418
+ "description": null,
419
+ "id_str": "policy___input___revision___type",
420
+ "name": "type",
421
+ "path": "policy.input.revision.type",
422
+ "requestStr": "$type:PolicyRevisionType ",
423
+ "required": false,
424
+ "responseStr": "type:$type ",
425
+ "type": {
426
+ "definition": {
427
+ "description": "Enum for the type of a policy revision",
428
+ "enumValues": [
429
+ {
430
+ "deprecationReason": null,
431
+ "description": null,
432
+ "isDeprecated": false,
433
+ "name": "PRIVATE"
434
+ },
435
+ {
436
+ "deprecationReason": null,
437
+ "description": null,
438
+ "isDeprecated": false,
439
+ "name": "PUBLIC"
440
+ }
441
+ ],
442
+ "fields": null,
443
+ "inputFields": null,
444
+ "interfaces": null,
445
+ "kind": "ENUM",
446
+ "name": "PolicyRevisionType",
447
+ "possibleTypes": null
448
+ },
449
+ "indexType": "enum",
450
+ "kind": [
451
+ "ENUM"
452
+ ],
453
+ "name": "PolicyRevisionType",
454
+ "non_null": false
455
+ },
456
+ "varName": "type"
457
+ }
458
+ },
459
+ "interfaces": null,
460
+ "kind": "INPUT_OBJECT",
461
+ "name": "PolicyRevisionInput",
462
+ "possibleTypes": null
463
+ },
464
+ "indexType": "input_object",
465
+ "kind": [
466
+ "INPUT_OBJECT"
467
+ ],
468
+ "name": "PolicyRevisionInput",
469
+ "non_null": false
470
+ },
471
+ "varName": "policyRevisionInput"
472
+ }
473
+ },
474
+ "interfaces": null,
475
+ "kind": "INPUT_OBJECT",
476
+ "name": "RemotePortFwdPolicyInput",
477
+ "possibleTypes": null
478
+ },
479
+ "indexType": "input_object",
480
+ "kind": [
481
+ "INPUT_OBJECT"
482
+ ],
483
+ "name": "RemotePortFwdPolicyInput",
484
+ "non_null": false
485
+ },
486
+ "varName": "remotePortFwdPolicyInput"
487
+ }
488
+ },
489
+ "deprecationReason": null,
490
+ "description": null,
491
+ "id_str": "remotePortFwd___policy",
492
+ "isDeprecated": false,
493
+ "name": "policy",
494
+ "path": "remotePortFwd.policy",
495
+ "requestStr": "$remotePortFwdPolicy:RemotePortFwdPolicy! ",
496
+ "required": true,
497
+ "responseStr": "policy:$remotePortFwdPolicy ",
498
+ "type": {
499
+ "definition": {
500
+ "description": null,
501
+ "enumValues": null,
502
+ "fields": {
503
+ "audit": {
504
+ "alias": "policyAuditAudit: audit",
505
+ "args": {},
506
+ "deprecationReason": null,
507
+ "description": null,
508
+ "id_str": "remotePortFwd___policy___audit",
509
+ "isDeprecated": false,
510
+ "name": "audit",
511
+ "path": "remotePortFwd.policy.audit",
512
+ "requestStr": "$policyAudit:PolicyAudit ",
513
+ "required": false,
514
+ "responseStr": "audit:$policyAudit ",
515
+ "type": {
516
+ "definition": {
517
+ "description": null,
518
+ "enumValues": null,
519
+ "fields": {
520
+ "publishedBy": {
521
+ "args": {},
522
+ "deprecationReason": null,
523
+ "description": null,
524
+ "id_str": "remotePortFwd___policy___audit___publishedBy",
525
+ "isDeprecated": false,
526
+ "name": "publishedBy",
527
+ "path": "remotePortFwd.policy.audit.publishedBy",
528
+ "requestStr": "$publishedBy:String! ",
529
+ "required": true,
530
+ "responseStr": "publishedBy:$publishedBy ",
531
+ "type": {
532
+ "kind": [
533
+ "NON_NULL",
534
+ "SCALAR"
535
+ ],
536
+ "name": "String",
537
+ "non_null": false
538
+ },
539
+ "varName": "publishedBy"
540
+ },
541
+ "publishedTime": {
542
+ "args": {},
543
+ "deprecationReason": null,
544
+ "description": null,
545
+ "id_str": "remotePortFwd___policy___audit___publishedTime",
546
+ "isDeprecated": false,
547
+ "name": "publishedTime",
548
+ "path": "remotePortFwd.policy.audit.publishedTime",
549
+ "requestStr": "$publishedTime:DateTime! ",
550
+ "required": true,
551
+ "responseStr": "publishedTime:$publishedTime ",
552
+ "type": {
553
+ "kind": [
554
+ "NON_NULL",
555
+ "SCALAR"
556
+ ],
557
+ "name": "DateTime",
558
+ "non_null": false
559
+ },
560
+ "varName": "publishedTime"
561
+ }
562
+ },
563
+ "inputFields": null,
564
+ "interfaces": {},
565
+ "kind": "OBJECT",
566
+ "name": "PolicyAudit",
567
+ "possibleTypes": null
568
+ },
569
+ "indexType": "object",
570
+ "kind": [
571
+ "OBJECT"
572
+ ],
573
+ "name": "PolicyAudit",
574
+ "non_null": false
575
+ },
576
+ "varName": "policyAudit"
577
+ },
578
+ "enabled": {
579
+ "args": {},
580
+ "deprecationReason": null,
581
+ "description": null,
582
+ "id_str": "remotePortFwd___policy___enabled",
583
+ "isDeprecated": false,
584
+ "name": "enabled",
585
+ "path": "remotePortFwd.policy.enabled",
586
+ "requestStr": "$enabled:Boolean! ",
587
+ "required": true,
588
+ "responseStr": "enabled:$enabled ",
589
+ "type": {
590
+ "kind": [
591
+ "NON_NULL",
592
+ "SCALAR"
593
+ ],
594
+ "name": "Boolean",
595
+ "non_null": false
596
+ },
597
+ "varName": "enabled"
598
+ },
599
+ "revision": {
600
+ "alias": "policyRevisionRevision: revision",
601
+ "args": {},
602
+ "deprecationReason": null,
603
+ "description": null,
604
+ "id_str": "remotePortFwd___policy___revision",
605
+ "isDeprecated": false,
606
+ "name": "revision",
607
+ "path": "remotePortFwd.policy.revision",
608
+ "requestStr": "$policyRevision:PolicyRevision ",
609
+ "required": false,
610
+ "responseStr": "revision:$policyRevision ",
611
+ "type": {
612
+ "definition": {
613
+ "description": "Returns data about the policy revision, such as when the change was made, how many rules were changed, etc.",
614
+ "enumValues": null,
615
+ "fields": {
616
+ "changes": {
617
+ "args": {},
618
+ "deprecationReason": null,
619
+ "description": null,
620
+ "id_str": "remotePortFwd___policy___revision___changes",
621
+ "isDeprecated": false,
622
+ "name": "changes",
623
+ "path": "remotePortFwd.policy.revision.changes",
624
+ "requestStr": "$changes:Int! ",
625
+ "required": true,
626
+ "responseStr": "changes:$changes ",
627
+ "type": {
628
+ "kind": [
629
+ "NON_NULL",
630
+ "SCALAR"
631
+ ],
632
+ "name": "Int",
633
+ "non_null": false
634
+ },
635
+ "varName": "changes"
636
+ },
637
+ "createdTime": {
638
+ "args": {},
639
+ "deprecationReason": null,
640
+ "description": null,
641
+ "id_str": "remotePortFwd___policy___revision___createdTime",
642
+ "isDeprecated": false,
643
+ "name": "createdTime",
644
+ "path": "remotePortFwd.policy.revision.createdTime",
645
+ "requestStr": "$createdTime:DateTime! ",
646
+ "required": true,
647
+ "responseStr": "createdTime:$createdTime ",
648
+ "type": {
649
+ "kind": [
650
+ "NON_NULL",
651
+ "SCALAR"
652
+ ],
653
+ "name": "DateTime",
654
+ "non_null": false
655
+ },
656
+ "varName": "createdTime"
657
+ },
658
+ "description": {
659
+ "args": {},
660
+ "deprecationReason": null,
661
+ "description": null,
662
+ "id_str": "remotePortFwd___policy___revision___description",
663
+ "isDeprecated": false,
664
+ "name": "description",
665
+ "path": "remotePortFwd.policy.revision.description",
666
+ "requestStr": "$description:String! ",
667
+ "required": true,
668
+ "responseStr": "description:$description ",
669
+ "type": {
670
+ "kind": [
671
+ "NON_NULL",
672
+ "SCALAR"
673
+ ],
674
+ "name": "String",
675
+ "non_null": false
676
+ },
677
+ "varName": "description"
678
+ },
679
+ "id": {
680
+ "args": {},
681
+ "deprecationReason": null,
682
+ "description": null,
683
+ "id_str": "remotePortFwd___policy___revision___id",
684
+ "isDeprecated": false,
685
+ "name": "id",
686
+ "path": "remotePortFwd.policy.revision.id",
687
+ "requestStr": "$id:ID! ",
688
+ "required": true,
689
+ "responseStr": "id:$id ",
690
+ "type": {
691
+ "kind": [
692
+ "NON_NULL",
693
+ "SCALAR"
694
+ ],
695
+ "name": "ID",
696
+ "non_null": false
697
+ },
698
+ "varName": "id"
699
+ },
700
+ "name": {
701
+ "args": {},
702
+ "deprecationReason": null,
703
+ "description": null,
704
+ "id_str": "remotePortFwd___policy___revision___name",
705
+ "isDeprecated": false,
706
+ "name": "name",
707
+ "path": "remotePortFwd.policy.revision.name",
708
+ "requestStr": "$name:String! ",
709
+ "required": true,
710
+ "responseStr": "name:$name ",
711
+ "type": {
712
+ "kind": [
713
+ "NON_NULL",
714
+ "SCALAR"
715
+ ],
716
+ "name": "String",
717
+ "non_null": false
718
+ },
719
+ "varName": "name"
720
+ },
721
+ "updatedTime": {
722
+ "args": {},
723
+ "deprecationReason": null,
724
+ "description": null,
725
+ "id_str": "remotePortFwd___policy___revision___updatedTime",
726
+ "isDeprecated": false,
727
+ "name": "updatedTime",
728
+ "path": "remotePortFwd.policy.revision.updatedTime",
729
+ "requestStr": "$updatedTime:DateTime! ",
730
+ "required": true,
731
+ "responseStr": "updatedTime:$updatedTime ",
732
+ "type": {
733
+ "kind": [
734
+ "NON_NULL",
735
+ "SCALAR"
736
+ ],
737
+ "name": "DateTime",
738
+ "non_null": false
739
+ },
740
+ "varName": "updatedTime"
741
+ }
742
+ },
743
+ "inputFields": null,
744
+ "interfaces": {},
745
+ "kind": "OBJECT",
746
+ "name": "PolicyRevision",
747
+ "possibleTypes": null
748
+ },
749
+ "indexType": "object",
750
+ "kind": [
751
+ "OBJECT"
752
+ ],
753
+ "name": "PolicyRevision",
754
+ "non_null": false
755
+ },
756
+ "varName": "policyRevision"
757
+ },
758
+ "rules": {
759
+ "alias": "remotePortFwdRulePayloadRules: rules",
760
+ "args": {},
761
+ "deprecationReason": null,
762
+ "description": null,
763
+ "id_str": "remotePortFwd___policy___rules",
764
+ "isDeprecated": false,
765
+ "name": "rules",
766
+ "path": "remotePortFwd.policy.rules",
767
+ "requestStr": "$remotePortFwdRulePayload:[RemotePortFwdRulePayload]! ",
768
+ "required": true,
769
+ "responseStr": "rules:$remotePortFwdRulePayload ",
770
+ "type": {
771
+ "definition": {
772
+ "description": null,
773
+ "enumValues": null,
774
+ "fields": {
775
+ "audit": {
776
+ "alias": "policyElementAuditAudit: audit",
777
+ "args": {},
778
+ "deprecationReason": null,
779
+ "description": null,
780
+ "id_str": "remotePortFwd___policy___rules___audit",
781
+ "isDeprecated": false,
782
+ "name": "audit",
783
+ "path": "remotePortFwd.policy.rules.audit",
784
+ "requestStr": "$policyElementAudit:PolicyElementAudit! ",
785
+ "required": true,
786
+ "responseStr": "audit:$policyElementAudit ",
787
+ "type": {
788
+ "definition": {
789
+ "description": null,
790
+ "enumValues": null,
791
+ "fields": {
792
+ "updatedBy": {
793
+ "args": {},
794
+ "deprecationReason": null,
795
+ "description": "The admin, or the API-key, that performed the last update",
796
+ "id_str": "remotePortFwd___policy___rules___audit___updatedBy",
797
+ "isDeprecated": false,
798
+ "name": "updatedBy",
799
+ "path": "remotePortFwd.policy.rules.audit.updatedBy",
800
+ "requestStr": "$updatedBy:String! ",
801
+ "required": true,
802
+ "responseStr": "updatedBy:$updatedBy ",
803
+ "type": {
804
+ "kind": [
805
+ "NON_NULL",
806
+ "SCALAR"
807
+ ],
808
+ "name": "String",
809
+ "non_null": false
810
+ },
811
+ "varName": "updatedBy"
812
+ },
813
+ "updatedTime": {
814
+ "args": {},
815
+ "deprecationReason": null,
816
+ "description": "The last date and time the rule was updated",
817
+ "id_str": "remotePortFwd___policy___rules___audit___updatedTime",
818
+ "isDeprecated": false,
819
+ "name": "updatedTime",
820
+ "path": "remotePortFwd.policy.rules.audit.updatedTime",
821
+ "requestStr": "$updatedTime:DateTime! ",
822
+ "required": true,
823
+ "responseStr": "updatedTime:$updatedTime ",
824
+ "type": {
825
+ "kind": [
826
+ "NON_NULL",
827
+ "SCALAR"
828
+ ],
829
+ "name": "DateTime",
830
+ "non_null": false
831
+ },
832
+ "varName": "updatedTime"
833
+ }
834
+ },
835
+ "inputFields": null,
836
+ "interfaces": {},
837
+ "kind": "OBJECT",
838
+ "name": "PolicyElementAudit",
839
+ "possibleTypes": null
840
+ },
841
+ "indexType": "object",
842
+ "kind": [
843
+ "NON_NULL",
844
+ "OBJECT"
845
+ ],
846
+ "name": "PolicyElementAudit",
847
+ "non_null": false
848
+ },
849
+ "varName": "policyElementAudit"
850
+ },
851
+ "properties": {
852
+ "alias": "policyElementPropertiesEnumProperties: properties",
853
+ "args": {},
854
+ "deprecationReason": null,
855
+ "description": null,
856
+ "id_str": "remotePortFwd___policy___rules___properties",
857
+ "isDeprecated": false,
858
+ "name": "properties",
859
+ "path": "remotePortFwd.policy.rules.properties",
860
+ "requestStr": "$properties:[PolicyElementPropertiesEnum]! ",
861
+ "required": true,
862
+ "responseStr": "properties:$properties ",
863
+ "type": {
864
+ "definition": {
865
+ "description": "Attributes describing the rule state or type",
866
+ "enumValues": [
867
+ {
868
+ "deprecationReason": null,
869
+ "description": "New (added) rule",
870
+ "isDeprecated": false,
871
+ "name": "ADDED"
872
+ },
873
+ {
874
+ "deprecationReason": null,
875
+ "description": "Updated (modified) existing rule",
876
+ "isDeprecated": false,
877
+ "name": "UPDATED"
878
+ },
879
+ {
880
+ "deprecationReason": null,
881
+ "description": "Removed (deleted) rule",
882
+ "isDeprecated": false,
883
+ "name": "REMOVED"
884
+ },
885
+ {
886
+ "deprecationReason": null,
887
+ "description": "A rule moved to a different position",
888
+ "isDeprecated": false,
889
+ "name": "MOVED"
890
+ },
891
+ {
892
+ "deprecationReason": null,
893
+ "description": "A rule locked for changes by other admins",
894
+ "isDeprecated": false,
895
+ "name": "LOCKED"
896
+ },
897
+ {
898
+ "deprecationReason": null,
899
+ "description": "An object can not be moved, or referenced when moving other objects.\nHowever its properties and content can be modified.",
900
+ "isDeprecated": false,
901
+ "name": "ANCHORED"
902
+ },
903
+ {
904
+ "deprecationReason": null,
905
+ "description": "A pre-defined (system) rule that cannot be modified or removed",
906
+ "isDeprecated": false,
907
+ "name": "SYSTEM"
908
+ }
909
+ ],
910
+ "fields": null,
911
+ "inputFields": null,
912
+ "interfaces": null,
913
+ "kind": "ENUM",
914
+ "name": "PolicyElementPropertiesEnum",
915
+ "possibleTypes": null
916
+ },
917
+ "indexType": "enum",
918
+ "kind": [
919
+ "NON_NULL",
920
+ "LIST",
921
+ "NON_NULL",
922
+ "ENUM"
923
+ ],
924
+ "name": "PolicyElementPropertiesEnum",
925
+ "non_null": false
926
+ },
927
+ "varName": "properties"
928
+ },
929
+ "rule": {
930
+ "alias": "remotePortFwdRuleRule: rule",
931
+ "args": {},
932
+ "deprecationReason": null,
933
+ "description": null,
934
+ "id_str": "remotePortFwd___policy___rules___rule",
935
+ "isDeprecated": false,
936
+ "name": "rule",
937
+ "path": "remotePortFwd.policy.rules.rule",
938
+ "requestStr": "$remotePortFwdRule:RemotePortFwdRule! ",
939
+ "required": true,
940
+ "responseStr": "rule:$remotePortFwdRule ",
941
+ "type": {
942
+ "definition": {
943
+ "description": null,
944
+ "enumValues": null,
945
+ "fields": {
946
+ "description": {
947
+ "args": {},
948
+ "deprecationReason": null,
949
+ "description": "Description for the rule",
950
+ "id_str": "remotePortFwd___policy___rules___rule___description",
951
+ "isDeprecated": false,
952
+ "name": "description",
953
+ "path": "remotePortFwd.policy.rules.rule.description",
954
+ "requestStr": "$description:String! ",
955
+ "required": true,
956
+ "responseStr": "description:$description ",
957
+ "type": {
958
+ "kind": [
959
+ "NON_NULL",
960
+ "SCALAR"
961
+ ],
962
+ "name": "String",
963
+ "non_null": false
964
+ },
965
+ "varName": "description"
966
+ },
967
+ "enabled": {
968
+ "args": {},
969
+ "deprecationReason": null,
970
+ "description": "TRUE = Rule is enabled \n FALSE = Rule is disabled",
971
+ "id_str": "remotePortFwd___policy___rules___rule___enabled",
972
+ "isDeprecated": false,
973
+ "name": "enabled",
974
+ "path": "remotePortFwd.policy.rules.rule.enabled",
975
+ "requestStr": "$enabled:Boolean! ",
976
+ "required": true,
977
+ "responseStr": "enabled:$enabled ",
978
+ "type": {
979
+ "kind": [
980
+ "NON_NULL",
981
+ "SCALAR"
982
+ ],
983
+ "name": "Boolean",
984
+ "non_null": false
985
+ },
986
+ "varName": "enabled"
987
+ },
988
+ "externalIp": {
989
+ "alias": "allocatedIpRefExternalIp: externalIp",
990
+ "args": {},
991
+ "deprecationReason": null,
992
+ "description": null,
993
+ "id_str": "remotePortFwd___policy___rules___rule___externalIp",
994
+ "isDeprecated": false,
995
+ "name": "externalIp",
996
+ "path": "remotePortFwd.policy.rules.rule.externalIp",
997
+ "requestStr": "$allocatedIpRef:AllocatedIpRef! ",
998
+ "required": true,
999
+ "responseStr": "externalIp:$allocatedIpRef ",
1000
+ "type": {
1001
+ "definition": {
1002
+ "description": "A reference identifying the AllocatedIp object. ID: Unique AllocatedIp Identifier, Name: The AllocatedIp Name",
1003
+ "enumValues": null,
1004
+ "fields": {
1005
+ "id": {
1006
+ "args": {},
1007
+ "deprecationReason": null,
1008
+ "description": null,
1009
+ "id_str": "remotePortFwd___policy___rules___rule___externalIp___id",
1010
+ "isDeprecated": false,
1011
+ "name": "id",
1012
+ "path": "remotePortFwd.policy.rules.rule.externalIp.id",
1013
+ "requestStr": "$id:ID! ",
1014
+ "required": true,
1015
+ "responseStr": "id:$id ",
1016
+ "type": {
1017
+ "kind": [
1018
+ "NON_NULL",
1019
+ "SCALAR"
1020
+ ],
1021
+ "name": "ID",
1022
+ "non_null": false
1023
+ },
1024
+ "varName": "id"
1025
+ },
1026
+ "name": {
1027
+ "args": {},
1028
+ "deprecationReason": null,
1029
+ "description": null,
1030
+ "id_str": "remotePortFwd___policy___rules___rule___externalIp___name",
1031
+ "isDeprecated": false,
1032
+ "name": "name",
1033
+ "path": "remotePortFwd.policy.rules.rule.externalIp.name",
1034
+ "requestStr": "$name:String! ",
1035
+ "required": true,
1036
+ "responseStr": "name:$name ",
1037
+ "type": {
1038
+ "kind": [
1039
+ "NON_NULL",
1040
+ "SCALAR"
1041
+ ],
1042
+ "name": "String",
1043
+ "non_null": false
1044
+ },
1045
+ "varName": "name"
1046
+ }
1047
+ },
1048
+ "inputFields": null,
1049
+ "interfaces": {},
1050
+ "kind": "OBJECT",
1051
+ "name": "AllocatedIpRef",
1052
+ "possibleTypes": null
1053
+ },
1054
+ "indexType": "object",
1055
+ "kind": [
1056
+ "NON_NULL",
1057
+ "OBJECT"
1058
+ ],
1059
+ "name": "AllocatedIpRef",
1060
+ "non_null": false
1061
+ },
1062
+ "varName": "allocatedIpRef"
1063
+ },
1064
+ "externalPortRange": {
1065
+ "alias": "portRangeExternalPortRange: externalPortRange",
1066
+ "args": {},
1067
+ "deprecationReason": null,
1068
+ "description": null,
1069
+ "id_str": "remotePortFwd___policy___rules___rule___externalPortRange",
1070
+ "isDeprecated": false,
1071
+ "name": "externalPortRange",
1072
+ "path": "remotePortFwd.policy.rules.rule.externalPortRange",
1073
+ "requestStr": "$portRange:PortRange! ",
1074
+ "required": true,
1075
+ "responseStr": "externalPortRange:$portRange ",
1076
+ "type": {
1077
+ "definition": {
1078
+ "description": "Inclusive network port range",
1079
+ "enumValues": null,
1080
+ "fields": {
1081
+ "from": {
1082
+ "args": {},
1083
+ "deprecationReason": null,
1084
+ "description": null,
1085
+ "id_str": "remotePortFwd___policy___rules___rule___externalPortRange___from",
1086
+ "isDeprecated": false,
1087
+ "name": "from",
1088
+ "path": "remotePortFwd.policy.rules.rule.externalPortRange.from",
1089
+ "requestStr": "$from:Port! ",
1090
+ "required": true,
1091
+ "responseStr": "from:$from ",
1092
+ "type": {
1093
+ "kind": [
1094
+ "NON_NULL",
1095
+ "SCALAR"
1096
+ ],
1097
+ "name": "Port",
1098
+ "non_null": false
1099
+ },
1100
+ "varName": "from"
1101
+ },
1102
+ "to": {
1103
+ "args": {},
1104
+ "deprecationReason": null,
1105
+ "description": null,
1106
+ "id_str": "remotePortFwd___policy___rules___rule___externalPortRange___to",
1107
+ "isDeprecated": false,
1108
+ "name": "to",
1109
+ "path": "remotePortFwd.policy.rules.rule.externalPortRange.to",
1110
+ "requestStr": "$to:Port! ",
1111
+ "required": true,
1112
+ "responseStr": "to:$to ",
1113
+ "type": {
1114
+ "kind": [
1115
+ "NON_NULL",
1116
+ "SCALAR"
1117
+ ],
1118
+ "name": "Port",
1119
+ "non_null": false
1120
+ },
1121
+ "varName": "to"
1122
+ }
1123
+ },
1124
+ "inputFields": null,
1125
+ "interfaces": {},
1126
+ "kind": "OBJECT",
1127
+ "name": "PortRange",
1128
+ "possibleTypes": null
1129
+ },
1130
+ "indexType": "object",
1131
+ "kind": [
1132
+ "NON_NULL",
1133
+ "OBJECT"
1134
+ ],
1135
+ "name": "PortRange",
1136
+ "non_null": false
1137
+ },
1138
+ "varName": "portRange"
1139
+ },
1140
+ "forwardIcmp": {
1141
+ "args": {},
1142
+ "deprecationReason": null,
1143
+ "description": null,
1144
+ "id_str": "remotePortFwd___policy___rules___rule___forwardIcmp",
1145
+ "isDeprecated": false,
1146
+ "name": "forwardIcmp",
1147
+ "path": "remotePortFwd.policy.rules.rule.forwardIcmp",
1148
+ "requestStr": "$forwardIcmp:Boolean! ",
1149
+ "required": true,
1150
+ "responseStr": "forwardIcmp:$forwardIcmp ",
1151
+ "type": {
1152
+ "kind": [
1153
+ "NON_NULL",
1154
+ "SCALAR"
1155
+ ],
1156
+ "name": "Boolean",
1157
+ "non_null": false
1158
+ },
1159
+ "varName": "forwardIcmp"
1160
+ },
1161
+ "id": {
1162
+ "args": {},
1163
+ "deprecationReason": null,
1164
+ "description": "Rule ID",
1165
+ "id_str": "remotePortFwd___policy___rules___rule___id",
1166
+ "isDeprecated": false,
1167
+ "name": "id",
1168
+ "path": "remotePortFwd.policy.rules.rule.id",
1169
+ "requestStr": "$id:ID! ",
1170
+ "required": true,
1171
+ "responseStr": "id:$id ",
1172
+ "type": {
1173
+ "kind": [
1174
+ "NON_NULL",
1175
+ "SCALAR"
1176
+ ],
1177
+ "name": "ID",
1178
+ "non_null": false
1179
+ },
1180
+ "varName": "id"
1181
+ },
1182
+ "index": {
1183
+ "args": {},
1184
+ "deprecationReason": null,
1185
+ "description": "Position / priority of rule",
1186
+ "id_str": "remotePortFwd___policy___rules___rule___index",
1187
+ "isDeprecated": false,
1188
+ "name": "index",
1189
+ "path": "remotePortFwd.policy.rules.rule.index",
1190
+ "requestStr": "$index:Int! ",
1191
+ "required": true,
1192
+ "responseStr": "index:$index ",
1193
+ "type": {
1194
+ "kind": [
1195
+ "NON_NULL",
1196
+ "SCALAR"
1197
+ ],
1198
+ "name": "Int",
1199
+ "non_null": false
1200
+ },
1201
+ "varName": "index"
1202
+ },
1203
+ "internalIp": {
1204
+ "args": {},
1205
+ "deprecationReason": null,
1206
+ "description": null,
1207
+ "id_str": "remotePortFwd___policy___rules___rule___internalIp",
1208
+ "isDeprecated": false,
1209
+ "name": "internalIp",
1210
+ "path": "remotePortFwd.policy.rules.rule.internalIp",
1211
+ "requestStr": "$internalIp:IPAddress! ",
1212
+ "required": true,
1213
+ "responseStr": "internalIp:$internalIp ",
1214
+ "type": {
1215
+ "kind": [
1216
+ "NON_NULL",
1217
+ "SCALAR"
1218
+ ],
1219
+ "name": "IPAddress",
1220
+ "non_null": false
1221
+ },
1222
+ "varName": "internalIp"
1223
+ },
1224
+ "internalPortRange": {
1225
+ "alias": "portRangeInternalPortRange: internalPortRange",
1226
+ "args": {},
1227
+ "deprecationReason": null,
1228
+ "description": null,
1229
+ "id_str": "remotePortFwd___policy___rules___rule___internalPortRange",
1230
+ "isDeprecated": false,
1231
+ "name": "internalPortRange",
1232
+ "path": "remotePortFwd.policy.rules.rule.internalPortRange",
1233
+ "requestStr": "$portRange:PortRange! ",
1234
+ "required": true,
1235
+ "responseStr": "internalPortRange:$portRange ",
1236
+ "type": {
1237
+ "definition": {
1238
+ "description": "Inclusive network port range",
1239
+ "enumValues": null,
1240
+ "fields": {
1241
+ "from": {
1242
+ "args": {},
1243
+ "deprecationReason": null,
1244
+ "description": null,
1245
+ "id_str": "remotePortFwd___policy___rules___rule___internalPortRange___from",
1246
+ "isDeprecated": false,
1247
+ "name": "from",
1248
+ "path": "remotePortFwd.policy.rules.rule.internalPortRange.from",
1249
+ "requestStr": "$from:Port! ",
1250
+ "required": true,
1251
+ "responseStr": "from:$from ",
1252
+ "type": {
1253
+ "kind": [
1254
+ "NON_NULL",
1255
+ "SCALAR"
1256
+ ],
1257
+ "name": "Port",
1258
+ "non_null": false
1259
+ },
1260
+ "varName": "from"
1261
+ },
1262
+ "to": {
1263
+ "args": {},
1264
+ "deprecationReason": null,
1265
+ "description": null,
1266
+ "id_str": "remotePortFwd___policy___rules___rule___internalPortRange___to",
1267
+ "isDeprecated": false,
1268
+ "name": "to",
1269
+ "path": "remotePortFwd.policy.rules.rule.internalPortRange.to",
1270
+ "requestStr": "$to:Port! ",
1271
+ "required": true,
1272
+ "responseStr": "to:$to ",
1273
+ "type": {
1274
+ "kind": [
1275
+ "NON_NULL",
1276
+ "SCALAR"
1277
+ ],
1278
+ "name": "Port",
1279
+ "non_null": false
1280
+ },
1281
+ "varName": "to"
1282
+ }
1283
+ },
1284
+ "inputFields": null,
1285
+ "interfaces": {},
1286
+ "kind": "OBJECT",
1287
+ "name": "PortRange",
1288
+ "possibleTypes": null
1289
+ },
1290
+ "indexType": "object",
1291
+ "kind": [
1292
+ "NON_NULL",
1293
+ "OBJECT"
1294
+ ],
1295
+ "name": "PortRange",
1296
+ "non_null": false
1297
+ },
1298
+ "varName": "portRange"
1299
+ },
1300
+ "name": {
1301
+ "args": {},
1302
+ "deprecationReason": null,
1303
+ "description": "Name of the rule",
1304
+ "id_str": "remotePortFwd___policy___rules___rule___name",
1305
+ "isDeprecated": false,
1306
+ "name": "name",
1307
+ "path": "remotePortFwd.policy.rules.rule.name",
1308
+ "requestStr": "$name:String! ",
1309
+ "required": true,
1310
+ "responseStr": "name:$name ",
1311
+ "type": {
1312
+ "kind": [
1313
+ "NON_NULL",
1314
+ "SCALAR"
1315
+ ],
1316
+ "name": "String",
1317
+ "non_null": false
1318
+ },
1319
+ "varName": "name"
1320
+ },
1321
+ "remoteIPs": {
1322
+ "alias": "remotePortFwdRemoteIpsRemoteIPs: remoteIPs",
1323
+ "args": {},
1324
+ "deprecationReason": null,
1325
+ "description": null,
1326
+ "id_str": "remotePortFwd___policy___rules___rule___remoteIPs",
1327
+ "isDeprecated": false,
1328
+ "name": "remoteIPs",
1329
+ "path": "remotePortFwd.policy.rules.rule.remoteIPs",
1330
+ "requestStr": "$remotePortFwdRemoteIps:RemotePortFwdRemoteIps! ",
1331
+ "required": true,
1332
+ "responseStr": "remoteIPs:$remotePortFwdRemoteIps ",
1333
+ "type": {
1334
+ "definition": {
1335
+ "description": null,
1336
+ "enumValues": null,
1337
+ "fields": {
1338
+ "globalIpRange": {
1339
+ "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
1340
+ "args": {},
1341
+ "deprecationReason": null,
1342
+ "description": null,
1343
+ "id_str": "remotePortFwd___policy___rules___rule___remoteIPs___globalIpRange",
1344
+ "isDeprecated": false,
1345
+ "name": "globalIpRange",
1346
+ "path": "remotePortFwd.policy.rules.rule.remoteIPs.globalIpRange",
1347
+ "requestStr": "$globalIpRangeRef:[GlobalIpRangeRef]! ",
1348
+ "required": true,
1349
+ "responseStr": "globalIpRange:$globalIpRangeRef ",
1350
+ "type": {
1351
+ "definition": {
1352
+ "description": "A reference identifying the GlobalIpRange object. ID: Unique GlobalIpRange Identifier, Name: The GlobalIpRange Name",
1353
+ "enumValues": null,
1354
+ "fields": {
1355
+ "id": {
1356
+ "args": {},
1357
+ "deprecationReason": null,
1358
+ "description": null,
1359
+ "id_str": "remotePortFwd___policy___rules___rule___remoteIPs___globalIpRange___id",
1360
+ "isDeprecated": false,
1361
+ "name": "id",
1362
+ "path": "remotePortFwd.policy.rules.rule.remoteIPs.globalIpRange.id",
1363
+ "requestStr": "$id:ID! ",
1364
+ "required": true,
1365
+ "responseStr": "id:$id ",
1366
+ "type": {
1367
+ "kind": [
1368
+ "NON_NULL",
1369
+ "SCALAR"
1370
+ ],
1371
+ "name": "ID",
1372
+ "non_null": false
1373
+ },
1374
+ "varName": "id"
1375
+ },
1376
+ "name": {
1377
+ "args": {},
1378
+ "deprecationReason": null,
1379
+ "description": null,
1380
+ "id_str": "remotePortFwd___policy___rules___rule___remoteIPs___globalIpRange___name",
1381
+ "isDeprecated": false,
1382
+ "name": "name",
1383
+ "path": "remotePortFwd.policy.rules.rule.remoteIPs.globalIpRange.name",
1384
+ "requestStr": "$name:String! ",
1385
+ "required": true,
1386
+ "responseStr": "name:$name ",
1387
+ "type": {
1388
+ "kind": [
1389
+ "NON_NULL",
1390
+ "SCALAR"
1391
+ ],
1392
+ "name": "String",
1393
+ "non_null": false
1394
+ },
1395
+ "varName": "name"
1396
+ }
1397
+ },
1398
+ "inputFields": null,
1399
+ "interfaces": {},
1400
+ "kind": "OBJECT",
1401
+ "name": "GlobalIpRangeRef",
1402
+ "possibleTypes": null
1403
+ },
1404
+ "indexType": "object",
1405
+ "kind": [
1406
+ "NON_NULL",
1407
+ "LIST",
1408
+ "NON_NULL",
1409
+ "OBJECT"
1410
+ ],
1411
+ "name": "GlobalIpRangeRef",
1412
+ "non_null": false
1413
+ },
1414
+ "varName": "globalIpRangeRef"
1415
+ },
1416
+ "ip": {
1417
+ "args": {},
1418
+ "deprecationReason": null,
1419
+ "description": null,
1420
+ "id_str": "remotePortFwd___policy___rules___rule___remoteIPs___ip",
1421
+ "isDeprecated": false,
1422
+ "name": "ip",
1423
+ "path": "remotePortFwd.policy.rules.rule.remoteIPs.ip",
1424
+ "requestStr": "$ip:[IPAddress]! ",
1425
+ "required": true,
1426
+ "responseStr": "ip:$ip ",
1427
+ "type": {
1428
+ "kind": [
1429
+ "NON_NULL",
1430
+ "LIST",
1431
+ "NON_NULL",
1432
+ "SCALAR"
1433
+ ],
1434
+ "name": "IPAddress",
1435
+ "non_null": false
1436
+ },
1437
+ "varName": "ip"
1438
+ },
1439
+ "ipRange": {
1440
+ "alias": "ipAddressRangeIpRange: ipRange",
1441
+ "args": {},
1442
+ "deprecationReason": null,
1443
+ "description": null,
1444
+ "id_str": "remotePortFwd___policy___rules___rule___remoteIPs___ipRange",
1445
+ "isDeprecated": false,
1446
+ "name": "ipRange",
1447
+ "path": "remotePortFwd.policy.rules.rule.remoteIPs.ipRange",
1448
+ "requestStr": "$ipAddressRange:[IpAddressRange]! ",
1449
+ "required": true,
1450
+ "responseStr": "ipRange:$ipAddressRange ",
1451
+ "type": {
1452
+ "definition": {
1453
+ "description": "Inclusive range of IPs",
1454
+ "enumValues": null,
1455
+ "fields": {
1456
+ "from": {
1457
+ "args": {},
1458
+ "deprecationReason": null,
1459
+ "description": null,
1460
+ "id_str": "remotePortFwd___policy___rules___rule___remoteIPs___ipRange___from",
1461
+ "isDeprecated": false,
1462
+ "name": "from",
1463
+ "path": "remotePortFwd.policy.rules.rule.remoteIPs.ipRange.from",
1464
+ "requestStr": "$from:IPAddress! ",
1465
+ "required": true,
1466
+ "responseStr": "from:$from ",
1467
+ "type": {
1468
+ "kind": [
1469
+ "NON_NULL",
1470
+ "SCALAR"
1471
+ ],
1472
+ "name": "IPAddress",
1473
+ "non_null": false
1474
+ },
1475
+ "varName": "from"
1476
+ },
1477
+ "to": {
1478
+ "args": {},
1479
+ "deprecationReason": null,
1480
+ "description": null,
1481
+ "id_str": "remotePortFwd___policy___rules___rule___remoteIPs___ipRange___to",
1482
+ "isDeprecated": false,
1483
+ "name": "to",
1484
+ "path": "remotePortFwd.policy.rules.rule.remoteIPs.ipRange.to",
1485
+ "requestStr": "$to:IPAddress! ",
1486
+ "required": true,
1487
+ "responseStr": "to:$to ",
1488
+ "type": {
1489
+ "kind": [
1490
+ "NON_NULL",
1491
+ "SCALAR"
1492
+ ],
1493
+ "name": "IPAddress",
1494
+ "non_null": false
1495
+ },
1496
+ "varName": "to"
1497
+ }
1498
+ },
1499
+ "inputFields": null,
1500
+ "interfaces": {},
1501
+ "kind": "OBJECT",
1502
+ "name": "IpAddressRange",
1503
+ "possibleTypes": null
1504
+ },
1505
+ "indexType": "object",
1506
+ "kind": [
1507
+ "NON_NULL",
1508
+ "LIST",
1509
+ "NON_NULL",
1510
+ "OBJECT"
1511
+ ],
1512
+ "name": "IpAddressRange",
1513
+ "non_null": false
1514
+ },
1515
+ "varName": "ipAddressRange"
1516
+ },
1517
+ "subnet": {
1518
+ "args": {},
1519
+ "deprecationReason": null,
1520
+ "description": null,
1521
+ "id_str": "remotePortFwd___policy___rules___rule___remoteIPs___subnet",
1522
+ "isDeprecated": false,
1523
+ "name": "subnet",
1524
+ "path": "remotePortFwd.policy.rules.rule.remoteIPs.subnet",
1525
+ "requestStr": "$subnet:[NetworkSubnet]! ",
1526
+ "required": true,
1527
+ "responseStr": "subnet:$subnet ",
1528
+ "type": {
1529
+ "kind": [
1530
+ "NON_NULL",
1531
+ "LIST",
1532
+ "NON_NULL",
1533
+ "SCALAR"
1534
+ ],
1535
+ "name": "NetworkSubnet",
1536
+ "non_null": false
1537
+ },
1538
+ "varName": "subnet"
1539
+ }
1540
+ },
1541
+ "inputFields": null,
1542
+ "interfaces": {},
1543
+ "kind": "OBJECT",
1544
+ "name": "RemotePortFwdRemoteIps",
1545
+ "possibleTypes": null
1546
+ },
1547
+ "indexType": "object",
1548
+ "kind": [
1549
+ "NON_NULL",
1550
+ "OBJECT"
1551
+ ],
1552
+ "name": "RemotePortFwdRemoteIps",
1553
+ "non_null": false
1554
+ },
1555
+ "varName": "remotePortFwdRemoteIps"
1556
+ },
1557
+ "restrictionType": {
1558
+ "alias": "remotePortFwdRestrictionTypeRestrictionType: restrictionType",
1559
+ "args": {},
1560
+ "deprecationReason": null,
1561
+ "description": null,
1562
+ "id_str": "remotePortFwd___policy___rules___rule___restrictionType",
1563
+ "isDeprecated": false,
1564
+ "name": "restrictionType",
1565
+ "path": "remotePortFwd.policy.rules.rule.restrictionType",
1566
+ "requestStr": "$restrictionType:RemotePortFwdRestrictionType! ",
1567
+ "required": true,
1568
+ "responseStr": "restrictionType:$restrictionType ",
1569
+ "type": {
1570
+ "definition": {
1571
+ "description": null,
1572
+ "enumValues": [
1573
+ {
1574
+ "deprecationReason": null,
1575
+ "description": null,
1576
+ "isDeprecated": false,
1577
+ "name": "ALLOW_LIST"
1578
+ },
1579
+ {
1580
+ "deprecationReason": null,
1581
+ "description": null,
1582
+ "isDeprecated": false,
1583
+ "name": "BLOCK_LIST"
1584
+ }
1585
+ ],
1586
+ "fields": null,
1587
+ "inputFields": null,
1588
+ "interfaces": null,
1589
+ "kind": "ENUM",
1590
+ "name": "RemotePortFwdRestrictionType",
1591
+ "possibleTypes": null
1592
+ },
1593
+ "indexType": "enum",
1594
+ "kind": [
1595
+ "NON_NULL",
1596
+ "ENUM"
1597
+ ],
1598
+ "name": "RemotePortFwdRestrictionType",
1599
+ "non_null": false
1600
+ },
1601
+ "varName": "restrictionType"
1602
+ },
1603
+ "section": {
1604
+ "alias": "policySectionInfoSection: section",
1605
+ "args": {},
1606
+ "deprecationReason": null,
1607
+ "description": "Policy section where the rule is located",
1608
+ "id_str": "remotePortFwd___policy___rules___rule___section",
1609
+ "isDeprecated": false,
1610
+ "name": "section",
1611
+ "path": "remotePortFwd.policy.rules.rule.section",
1612
+ "requestStr": "$policySectionInfo:PolicySectionInfo! ",
1613
+ "required": true,
1614
+ "responseStr": "section:$policySectionInfo ",
1615
+ "type": {
1616
+ "definition": {
1617
+ "description": "Define settings for a policy section",
1618
+ "enumValues": null,
1619
+ "fields": {
1620
+ "id": {
1621
+ "args": {},
1622
+ "deprecationReason": null,
1623
+ "description": null,
1624
+ "id_str": "remotePortFwd___policy___rules___rule___section___id",
1625
+ "isDeprecated": false,
1626
+ "name": "id",
1627
+ "path": "remotePortFwd.policy.rules.rule.section.id",
1628
+ "requestStr": "$id:ID! ",
1629
+ "required": true,
1630
+ "responseStr": "id:$id ",
1631
+ "type": {
1632
+ "kind": [
1633
+ "NON_NULL",
1634
+ "SCALAR"
1635
+ ],
1636
+ "name": "ID",
1637
+ "non_null": false
1638
+ },
1639
+ "varName": "id"
1640
+ },
1641
+ "name": {
1642
+ "args": {},
1643
+ "deprecationReason": null,
1644
+ "description": null,
1645
+ "id_str": "remotePortFwd___policy___rules___rule___section___name",
1646
+ "isDeprecated": false,
1647
+ "name": "name",
1648
+ "path": "remotePortFwd.policy.rules.rule.section.name",
1649
+ "requestStr": "$name:String! ",
1650
+ "required": true,
1651
+ "responseStr": "name:$name ",
1652
+ "type": {
1653
+ "kind": [
1654
+ "NON_NULL",
1655
+ "SCALAR"
1656
+ ],
1657
+ "name": "String",
1658
+ "non_null": false
1659
+ },
1660
+ "varName": "name"
1661
+ }
1662
+ },
1663
+ "inputFields": null,
1664
+ "interfaces": {},
1665
+ "kind": "OBJECT",
1666
+ "name": "PolicySectionInfo",
1667
+ "possibleTypes": null
1668
+ },
1669
+ "indexType": "object",
1670
+ "kind": [
1671
+ "NON_NULL",
1672
+ "OBJECT"
1673
+ ],
1674
+ "name": "PolicySectionInfo",
1675
+ "non_null": false
1676
+ },
1677
+ "varName": "policySectionInfo"
1678
+ },
1679
+ "tracking": {
1680
+ "alias": "policyRuleTrackingAlertTracking: tracking",
1681
+ "args": {},
1682
+ "deprecationReason": null,
1683
+ "description": null,
1684
+ "id_str": "remotePortFwd___policy___rules___rule___tracking",
1685
+ "isDeprecated": false,
1686
+ "name": "tracking",
1687
+ "path": "remotePortFwd.policy.rules.rule.tracking",
1688
+ "requestStr": "$policyRuleTrackingAlert:PolicyRuleTrackingAlert! ",
1689
+ "required": true,
1690
+ "responseStr": "tracking:$policyRuleTrackingAlert ",
1691
+ "type": {
1692
+ "definition": {
1693
+ "description": "Returns data for the alert settings for the rule",
1694
+ "enumValues": null,
1695
+ "fields": {
1696
+ "enabled": {
1697
+ "args": {},
1698
+ "deprecationReason": null,
1699
+ "description": "TRUE \u2013 send alerts when the rule is matched, FALSE \u2013 don\u2019t send alerts when the rule is matched",
1700
+ "id_str": "remotePortFwd___policy___rules___rule___tracking___enabled",
1701
+ "isDeprecated": false,
1702
+ "name": "enabled",
1703
+ "path": "remotePortFwd.policy.rules.rule.tracking.enabled",
1704
+ "requestStr": "$enabled:Boolean! ",
1705
+ "required": true,
1706
+ "responseStr": "enabled:$enabled ",
1707
+ "type": {
1708
+ "kind": [
1709
+ "NON_NULL",
1710
+ "SCALAR"
1711
+ ],
1712
+ "name": "Boolean",
1713
+ "non_null": false
1714
+ },
1715
+ "varName": "enabled"
1716
+ },
1717
+ "frequency": {
1718
+ "alias": "policyRuleTrackingFrequencyEnumFrequency: frequency",
1719
+ "args": {},
1720
+ "deprecationReason": null,
1721
+ "description": "Returns data for the alert frequency",
1722
+ "id_str": "remotePortFwd___policy___rules___rule___tracking___frequency",
1723
+ "isDeprecated": false,
1724
+ "name": "frequency",
1725
+ "path": "remotePortFwd.policy.rules.rule.tracking.frequency",
1726
+ "requestStr": "$frequency:PolicyRuleTrackingFrequencyEnum! ",
1727
+ "required": true,
1728
+ "responseStr": "frequency:$frequency ",
1729
+ "type": {
1730
+ "definition": {
1731
+ "description": "Enum for the frequency of an alert event for a rule",
1732
+ "enumValues": [
1733
+ {
1734
+ "deprecationReason": null,
1735
+ "description": null,
1736
+ "isDeprecated": false,
1737
+ "name": "HOURLY"
1738
+ },
1739
+ {
1740
+ "deprecationReason": null,
1741
+ "description": null,
1742
+ "isDeprecated": false,
1743
+ "name": "DAILY"
1744
+ },
1745
+ {
1746
+ "deprecationReason": null,
1747
+ "description": null,
1748
+ "isDeprecated": false,
1749
+ "name": "WEEKLY"
1750
+ },
1751
+ {
1752
+ "deprecationReason": null,
1753
+ "description": null,
1754
+ "isDeprecated": false,
1755
+ "name": "IMMEDIATE"
1756
+ }
1757
+ ],
1758
+ "fields": null,
1759
+ "inputFields": null,
1760
+ "interfaces": null,
1761
+ "kind": "ENUM",
1762
+ "name": "PolicyRuleTrackingFrequencyEnum",
1763
+ "possibleTypes": null
1764
+ },
1765
+ "indexType": "enum",
1766
+ "kind": [
1767
+ "NON_NULL",
1768
+ "ENUM"
1769
+ ],
1770
+ "name": "PolicyRuleTrackingFrequencyEnum",
1771
+ "non_null": false
1772
+ },
1773
+ "varName": "frequency"
1774
+ },
1775
+ "mailingList": {
1776
+ "alias": "subscriptionMailingListRefMailingList: mailingList",
1777
+ "args": {},
1778
+ "deprecationReason": null,
1779
+ "description": "Returns data for the Mailing List that receives the alert",
1780
+ "id_str": "remotePortFwd___policy___rules___rule___tracking___mailingList",
1781
+ "isDeprecated": false,
1782
+ "name": "mailingList",
1783
+ "path": "remotePortFwd.policy.rules.rule.tracking.mailingList",
1784
+ "requestStr": "$subscriptionMailingListRef:[SubscriptionMailingListRef]! ",
1785
+ "required": true,
1786
+ "responseStr": "mailingList:$subscriptionMailingListRef ",
1787
+ "type": {
1788
+ "definition": {
1789
+ "description": "A reference identifying the SubscriptionMailingList object. ID: Unique SubscriptionMailingList Identifier, Name: The SubscriptionMailingList Name",
1790
+ "enumValues": null,
1791
+ "fields": {
1792
+ "id": {
1793
+ "args": {},
1794
+ "deprecationReason": null,
1795
+ "description": null,
1796
+ "id_str": "remotePortFwd___policy___rules___rule___tracking___mailingList___id",
1797
+ "isDeprecated": false,
1798
+ "name": "id",
1799
+ "path": "remotePortFwd.policy.rules.rule.tracking.mailingList.id",
1800
+ "requestStr": "$id:ID! ",
1801
+ "required": true,
1802
+ "responseStr": "id:$id ",
1803
+ "type": {
1804
+ "kind": [
1805
+ "NON_NULL",
1806
+ "SCALAR"
1807
+ ],
1808
+ "name": "ID",
1809
+ "non_null": false
1810
+ },
1811
+ "varName": "id"
1812
+ },
1813
+ "name": {
1814
+ "args": {},
1815
+ "deprecationReason": null,
1816
+ "description": null,
1817
+ "id_str": "remotePortFwd___policy___rules___rule___tracking___mailingList___name",
1818
+ "isDeprecated": false,
1819
+ "name": "name",
1820
+ "path": "remotePortFwd.policy.rules.rule.tracking.mailingList.name",
1821
+ "requestStr": "$name:String! ",
1822
+ "required": true,
1823
+ "responseStr": "name:$name ",
1824
+ "type": {
1825
+ "kind": [
1826
+ "NON_NULL",
1827
+ "SCALAR"
1828
+ ],
1829
+ "name": "String",
1830
+ "non_null": false
1831
+ },
1832
+ "varName": "name"
1833
+ }
1834
+ },
1835
+ "inputFields": null,
1836
+ "interfaces": {},
1837
+ "kind": "OBJECT",
1838
+ "name": "SubscriptionMailingListRef",
1839
+ "possibleTypes": null
1840
+ },
1841
+ "indexType": "object",
1842
+ "kind": [
1843
+ "NON_NULL",
1844
+ "LIST",
1845
+ "NON_NULL",
1846
+ "OBJECT"
1847
+ ],
1848
+ "name": "SubscriptionMailingListRef",
1849
+ "non_null": false
1850
+ },
1851
+ "varName": "subscriptionMailingListRef"
1852
+ },
1853
+ "subscriptionGroup": {
1854
+ "alias": "subscriptionGroupRefSubscriptionGroup: subscriptionGroup",
1855
+ "args": {},
1856
+ "deprecationReason": null,
1857
+ "description": "Returns data for the Subscription Group that receives the alert",
1858
+ "id_str": "remotePortFwd___policy___rules___rule___tracking___subscriptionGroup",
1859
+ "isDeprecated": false,
1860
+ "name": "subscriptionGroup",
1861
+ "path": "remotePortFwd.policy.rules.rule.tracking.subscriptionGroup",
1862
+ "requestStr": "$subscriptionGroupRef:[SubscriptionGroupRef]! ",
1863
+ "required": true,
1864
+ "responseStr": "subscriptionGroup:$subscriptionGroupRef ",
1865
+ "type": {
1866
+ "definition": {
1867
+ "description": "A reference identifying the SubscriptionGroup object. ID: Unique SubscriptionGroup Identifier, Name: The SubscriptionGroup Name",
1868
+ "enumValues": null,
1869
+ "fields": {
1870
+ "id": {
1871
+ "args": {},
1872
+ "deprecationReason": null,
1873
+ "description": null,
1874
+ "id_str": "remotePortFwd___policy___rules___rule___tracking___subscriptionGroup___id",
1875
+ "isDeprecated": false,
1876
+ "name": "id",
1877
+ "path": "remotePortFwd.policy.rules.rule.tracking.subscriptionGroup.id",
1878
+ "requestStr": "$id:ID! ",
1879
+ "required": true,
1880
+ "responseStr": "id:$id ",
1881
+ "type": {
1882
+ "kind": [
1883
+ "NON_NULL",
1884
+ "SCALAR"
1885
+ ],
1886
+ "name": "ID",
1887
+ "non_null": false
1888
+ },
1889
+ "varName": "id"
1890
+ },
1891
+ "name": {
1892
+ "args": {},
1893
+ "deprecationReason": null,
1894
+ "description": null,
1895
+ "id_str": "remotePortFwd___policy___rules___rule___tracking___subscriptionGroup___name",
1896
+ "isDeprecated": false,
1897
+ "name": "name",
1898
+ "path": "remotePortFwd.policy.rules.rule.tracking.subscriptionGroup.name",
1899
+ "requestStr": "$name:String! ",
1900
+ "required": true,
1901
+ "responseStr": "name:$name ",
1902
+ "type": {
1903
+ "kind": [
1904
+ "NON_NULL",
1905
+ "SCALAR"
1906
+ ],
1907
+ "name": "String",
1908
+ "non_null": false
1909
+ },
1910
+ "varName": "name"
1911
+ }
1912
+ },
1913
+ "inputFields": null,
1914
+ "interfaces": {},
1915
+ "kind": "OBJECT",
1916
+ "name": "SubscriptionGroupRef",
1917
+ "possibleTypes": null
1918
+ },
1919
+ "indexType": "object",
1920
+ "kind": [
1921
+ "NON_NULL",
1922
+ "LIST",
1923
+ "NON_NULL",
1924
+ "OBJECT"
1925
+ ],
1926
+ "name": "SubscriptionGroupRef",
1927
+ "non_null": false
1928
+ },
1929
+ "varName": "subscriptionGroupRef"
1930
+ },
1931
+ "webhook": {
1932
+ "alias": "subscriptionWebhookRefWebhook: webhook",
1933
+ "args": {},
1934
+ "deprecationReason": null,
1935
+ "description": "Returns data for the Webhook that receives the alert",
1936
+ "id_str": "remotePortFwd___policy___rules___rule___tracking___webhook",
1937
+ "isDeprecated": false,
1938
+ "name": "webhook",
1939
+ "path": "remotePortFwd.policy.rules.rule.tracking.webhook",
1940
+ "requestStr": "$subscriptionWebhookRef:[SubscriptionWebhookRef]! ",
1941
+ "required": true,
1942
+ "responseStr": "webhook:$subscriptionWebhookRef ",
1943
+ "type": {
1944
+ "definition": {
1945
+ "description": "A reference identifying the SubscriptionWebhook object. ID: Unique SubscriptionWebhook Identifier, Name: The SubscriptionWebhook Name",
1946
+ "enumValues": null,
1947
+ "fields": {
1948
+ "id": {
1949
+ "args": {},
1950
+ "deprecationReason": null,
1951
+ "description": null,
1952
+ "id_str": "remotePortFwd___policy___rules___rule___tracking___webhook___id",
1953
+ "isDeprecated": false,
1954
+ "name": "id",
1955
+ "path": "remotePortFwd.policy.rules.rule.tracking.webhook.id",
1956
+ "requestStr": "$id:ID! ",
1957
+ "required": true,
1958
+ "responseStr": "id:$id ",
1959
+ "type": {
1960
+ "kind": [
1961
+ "NON_NULL",
1962
+ "SCALAR"
1963
+ ],
1964
+ "name": "ID",
1965
+ "non_null": false
1966
+ },
1967
+ "varName": "id"
1968
+ },
1969
+ "name": {
1970
+ "args": {},
1971
+ "deprecationReason": null,
1972
+ "description": null,
1973
+ "id_str": "remotePortFwd___policy___rules___rule___tracking___webhook___name",
1974
+ "isDeprecated": false,
1975
+ "name": "name",
1976
+ "path": "remotePortFwd.policy.rules.rule.tracking.webhook.name",
1977
+ "requestStr": "$name:String! ",
1978
+ "required": true,
1979
+ "responseStr": "name:$name ",
1980
+ "type": {
1981
+ "kind": [
1982
+ "NON_NULL",
1983
+ "SCALAR"
1984
+ ],
1985
+ "name": "String",
1986
+ "non_null": false
1987
+ },
1988
+ "varName": "name"
1989
+ }
1990
+ },
1991
+ "inputFields": null,
1992
+ "interfaces": {},
1993
+ "kind": "OBJECT",
1994
+ "name": "SubscriptionWebhookRef",
1995
+ "possibleTypes": null
1996
+ },
1997
+ "indexType": "object",
1998
+ "kind": [
1999
+ "NON_NULL",
2000
+ "LIST",
2001
+ "NON_NULL",
2002
+ "OBJECT"
2003
+ ],
2004
+ "name": "SubscriptionWebhookRef",
2005
+ "non_null": false
2006
+ },
2007
+ "varName": "subscriptionWebhookRef"
2008
+ }
2009
+ },
2010
+ "inputFields": null,
2011
+ "interfaces": {},
2012
+ "kind": "OBJECT",
2013
+ "name": "PolicyRuleTrackingAlert",
2014
+ "possibleTypes": null
2015
+ },
2016
+ "indexType": "object",
2017
+ "kind": [
2018
+ "NON_NULL",
2019
+ "OBJECT"
2020
+ ],
2021
+ "name": "PolicyRuleTrackingAlert",
2022
+ "non_null": false
2023
+ },
2024
+ "varName": "policyRuleTrackingAlert"
2025
+ }
2026
+ },
2027
+ "inputFields": null,
2028
+ "interfaces": {},
2029
+ "kind": "OBJECT",
2030
+ "name": "RemotePortFwdRule",
2031
+ "possibleTypes": null
2032
+ },
2033
+ "indexType": "object",
2034
+ "kind": [
2035
+ "NON_NULL",
2036
+ "OBJECT"
2037
+ ],
2038
+ "name": "RemotePortFwdRule",
2039
+ "non_null": false
2040
+ },
2041
+ "varName": "remotePortFwdRule"
2042
+ }
2043
+ },
2044
+ "inputFields": null,
2045
+ "interfaces": {},
2046
+ "kind": "OBJECT",
2047
+ "name": "RemotePortFwdRulePayload",
2048
+ "possibleTypes": null
2049
+ },
2050
+ "indexType": "object",
2051
+ "kind": [
2052
+ "NON_NULL",
2053
+ "LIST",
2054
+ "NON_NULL",
2055
+ "OBJECT"
2056
+ ],
2057
+ "name": "RemotePortFwdRulePayload",
2058
+ "non_null": false
2059
+ },
2060
+ "varName": "remotePortFwdRulePayload"
2061
+ },
2062
+ "sections": {
2063
+ "alias": "policySectionPayloadSections: sections",
2064
+ "args": {},
2065
+ "deprecationReason": null,
2066
+ "description": null,
2067
+ "id_str": "remotePortFwd___policy___sections",
2068
+ "isDeprecated": false,
2069
+ "name": "sections",
2070
+ "path": "remotePortFwd.policy.sections",
2071
+ "requestStr": "$policySectionPayload:[PolicySectionPayload]! ",
2072
+ "required": true,
2073
+ "responseStr": "sections:$policySectionPayload ",
2074
+ "type": {
2075
+ "definition": {
2076
+ "description": null,
2077
+ "enumValues": null,
2078
+ "fields": {
2079
+ "audit": {
2080
+ "alias": "policyElementAuditAudit: audit",
2081
+ "args": {},
2082
+ "deprecationReason": null,
2083
+ "description": null,
2084
+ "id_str": "remotePortFwd___policy___sections___audit",
2085
+ "isDeprecated": false,
2086
+ "name": "audit",
2087
+ "path": "remotePortFwd.policy.sections.audit",
2088
+ "requestStr": "$policyElementAudit:PolicyElementAudit! ",
2089
+ "required": true,
2090
+ "responseStr": "audit:$policyElementAudit ",
2091
+ "type": {
2092
+ "definition": {
2093
+ "description": null,
2094
+ "enumValues": null,
2095
+ "fields": {
2096
+ "updatedBy": {
2097
+ "args": {},
2098
+ "deprecationReason": null,
2099
+ "description": "The admin, or the API-key, that performed the last update",
2100
+ "id_str": "remotePortFwd___policy___sections___audit___updatedBy",
2101
+ "isDeprecated": false,
2102
+ "name": "updatedBy",
2103
+ "path": "remotePortFwd.policy.sections.audit.updatedBy",
2104
+ "requestStr": "$updatedBy:String! ",
2105
+ "required": true,
2106
+ "responseStr": "updatedBy:$updatedBy ",
2107
+ "type": {
2108
+ "kind": [
2109
+ "NON_NULL",
2110
+ "SCALAR"
2111
+ ],
2112
+ "name": "String",
2113
+ "non_null": false
2114
+ },
2115
+ "varName": "updatedBy"
2116
+ },
2117
+ "updatedTime": {
2118
+ "args": {},
2119
+ "deprecationReason": null,
2120
+ "description": "The last date and time the rule was updated",
2121
+ "id_str": "remotePortFwd___policy___sections___audit___updatedTime",
2122
+ "isDeprecated": false,
2123
+ "name": "updatedTime",
2124
+ "path": "remotePortFwd.policy.sections.audit.updatedTime",
2125
+ "requestStr": "$updatedTime:DateTime! ",
2126
+ "required": true,
2127
+ "responseStr": "updatedTime:$updatedTime ",
2128
+ "type": {
2129
+ "kind": [
2130
+ "NON_NULL",
2131
+ "SCALAR"
2132
+ ],
2133
+ "name": "DateTime",
2134
+ "non_null": false
2135
+ },
2136
+ "varName": "updatedTime"
2137
+ }
2138
+ },
2139
+ "inputFields": null,
2140
+ "interfaces": {},
2141
+ "kind": "OBJECT",
2142
+ "name": "PolicyElementAudit",
2143
+ "possibleTypes": null
2144
+ },
2145
+ "indexType": "object",
2146
+ "kind": [
2147
+ "NON_NULL",
2148
+ "OBJECT"
2149
+ ],
2150
+ "name": "PolicyElementAudit",
2151
+ "non_null": false
2152
+ },
2153
+ "varName": "policyElementAudit"
2154
+ },
2155
+ "properties": {
2156
+ "alias": "policyElementPropertiesEnumProperties: properties",
2157
+ "args": {},
2158
+ "deprecationReason": null,
2159
+ "description": null,
2160
+ "id_str": "remotePortFwd___policy___sections___properties",
2161
+ "isDeprecated": false,
2162
+ "name": "properties",
2163
+ "path": "remotePortFwd.policy.sections.properties",
2164
+ "requestStr": "$properties:[PolicyElementPropertiesEnum]! ",
2165
+ "required": true,
2166
+ "responseStr": "properties:$properties ",
2167
+ "type": {
2168
+ "definition": {
2169
+ "description": "Attributes describing the rule state or type",
2170
+ "enumValues": [
2171
+ {
2172
+ "deprecationReason": null,
2173
+ "description": "New (added) rule",
2174
+ "isDeprecated": false,
2175
+ "name": "ADDED"
2176
+ },
2177
+ {
2178
+ "deprecationReason": null,
2179
+ "description": "Updated (modified) existing rule",
2180
+ "isDeprecated": false,
2181
+ "name": "UPDATED"
2182
+ },
2183
+ {
2184
+ "deprecationReason": null,
2185
+ "description": "Removed (deleted) rule",
2186
+ "isDeprecated": false,
2187
+ "name": "REMOVED"
2188
+ },
2189
+ {
2190
+ "deprecationReason": null,
2191
+ "description": "A rule moved to a different position",
2192
+ "isDeprecated": false,
2193
+ "name": "MOVED"
2194
+ },
2195
+ {
2196
+ "deprecationReason": null,
2197
+ "description": "A rule locked for changes by other admins",
2198
+ "isDeprecated": false,
2199
+ "name": "LOCKED"
2200
+ },
2201
+ {
2202
+ "deprecationReason": null,
2203
+ "description": "An object can not be moved, or referenced when moving other objects.\nHowever its properties and content can be modified.",
2204
+ "isDeprecated": false,
2205
+ "name": "ANCHORED"
2206
+ },
2207
+ {
2208
+ "deprecationReason": null,
2209
+ "description": "A pre-defined (system) rule that cannot be modified or removed",
2210
+ "isDeprecated": false,
2211
+ "name": "SYSTEM"
2212
+ }
2213
+ ],
2214
+ "fields": null,
2215
+ "inputFields": null,
2216
+ "interfaces": null,
2217
+ "kind": "ENUM",
2218
+ "name": "PolicyElementPropertiesEnum",
2219
+ "possibleTypes": null
2220
+ },
2221
+ "indexType": "enum",
2222
+ "kind": [
2223
+ "NON_NULL",
2224
+ "LIST",
2225
+ "NON_NULL",
2226
+ "ENUM"
2227
+ ],
2228
+ "name": "PolicyElementPropertiesEnum",
2229
+ "non_null": false
2230
+ },
2231
+ "varName": "properties"
2232
+ },
2233
+ "section": {
2234
+ "alias": "policySectionInfoSection: section",
2235
+ "args": {},
2236
+ "deprecationReason": null,
2237
+ "description": null,
2238
+ "id_str": "remotePortFwd___policy___sections___section",
2239
+ "isDeprecated": false,
2240
+ "name": "section",
2241
+ "path": "remotePortFwd.policy.sections.section",
2242
+ "requestStr": "$policySectionInfo:PolicySectionInfo! ",
2243
+ "required": true,
2244
+ "responseStr": "section:$policySectionInfo ",
2245
+ "type": {
2246
+ "definition": {
2247
+ "description": "Define settings for a policy section",
2248
+ "enumValues": null,
2249
+ "fields": {
2250
+ "id": {
2251
+ "args": {},
2252
+ "deprecationReason": null,
2253
+ "description": null,
2254
+ "id_str": "remotePortFwd___policy___sections___section___id",
2255
+ "isDeprecated": false,
2256
+ "name": "id",
2257
+ "path": "remotePortFwd.policy.sections.section.id",
2258
+ "requestStr": "$id:ID! ",
2259
+ "required": true,
2260
+ "responseStr": "id:$id ",
2261
+ "type": {
2262
+ "kind": [
2263
+ "NON_NULL",
2264
+ "SCALAR"
2265
+ ],
2266
+ "name": "ID",
2267
+ "non_null": false
2268
+ },
2269
+ "varName": "id"
2270
+ },
2271
+ "name": {
2272
+ "args": {},
2273
+ "deprecationReason": null,
2274
+ "description": null,
2275
+ "id_str": "remotePortFwd___policy___sections___section___name",
2276
+ "isDeprecated": false,
2277
+ "name": "name",
2278
+ "path": "remotePortFwd.policy.sections.section.name",
2279
+ "requestStr": "$name:String! ",
2280
+ "required": true,
2281
+ "responseStr": "name:$name ",
2282
+ "type": {
2283
+ "kind": [
2284
+ "NON_NULL",
2285
+ "SCALAR"
2286
+ ],
2287
+ "name": "String",
2288
+ "non_null": false
2289
+ },
2290
+ "varName": "name"
2291
+ }
2292
+ },
2293
+ "inputFields": null,
2294
+ "interfaces": {},
2295
+ "kind": "OBJECT",
2296
+ "name": "PolicySectionInfo",
2297
+ "possibleTypes": null
2298
+ },
2299
+ "indexType": "object",
2300
+ "kind": [
2301
+ "NON_NULL",
2302
+ "OBJECT"
2303
+ ],
2304
+ "name": "PolicySectionInfo",
2305
+ "non_null": false
2306
+ },
2307
+ "varName": "policySectionInfo"
2308
+ }
2309
+ },
2310
+ "inputFields": null,
2311
+ "interfaces": {},
2312
+ "kind": "OBJECT",
2313
+ "name": "PolicySectionPayload",
2314
+ "possibleTypes": null
2315
+ },
2316
+ "indexType": "object",
2317
+ "kind": [
2318
+ "NON_NULL",
2319
+ "LIST",
2320
+ "NON_NULL",
2321
+ "OBJECT"
2322
+ ],
2323
+ "name": "PolicySectionPayload",
2324
+ "non_null": false
2325
+ },
2326
+ "varName": "policySectionPayload"
2327
+ }
2328
+ },
2329
+ "inputFields": null,
2330
+ "interfaces": {},
2331
+ "kind": "OBJECT",
2332
+ "name": "RemotePortFwdPolicy",
2333
+ "possibleTypes": null
2334
+ },
2335
+ "indexType": "object",
2336
+ "kind": [
2337
+ "NON_NULL",
2338
+ "OBJECT"
2339
+ ],
2340
+ "name": "RemotePortFwdPolicy",
2341
+ "non_null": false
2342
+ },
2343
+ "varName": "remotePortFwdPolicy"
2344
+ }
2345
+ },
2346
+ "inputFields": null,
2347
+ "interfaces": {},
2348
+ "kind": "OBJECT",
2349
+ "name": "RemotePortFwdPolicyQueries",
2350
+ "possibleTypes": null
2351
+ },
2352
+ "indexType": "object",
2353
+ "kind": [
2354
+ "OBJECT"
2355
+ ],
2356
+ "name": "RemotePortFwdPolicyQueries",
2357
+ "non_null": false
2358
+ },
2359
+ "varName": "remotePortFwdPolicyQueries"
2360
+ }
2361
+ },
2362
+ "inputFields": null,
2363
+ "interfaces": [],
2364
+ "kind": "OBJECT",
2365
+ "name": "PolicyQueries",
2366
+ "possibleTypes": null
2367
+ },
2368
+ "indexType": "object",
2369
+ "kind": [
2370
+ "OBJECT"
2371
+ ],
2372
+ "name": "PolicyQueries",
2373
+ "non_null": false
2374
+ },
2375
+ "variablesPayload": {
2376
+ "remotePortFwdPolicyInput": {
2377
+ "policyRevisionInput": {
2378
+ "id": {
2379
+ "id": "ID"
2380
+ },
2381
+ "type": {
2382
+ "type": "enum(PolicyRevisionType)"
2383
+ }
2384
+ }
2385
+ }
2386
+ }
2387
+ }