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,1934 @@
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
+ "dynamicIpAllocation": {
25
+ "args": {},
26
+ "deprecationReason": null,
27
+ "description": null,
28
+ "isDeprecated": false,
29
+ "name": "dynamicIpAllocation",
30
+ "type": {
31
+ "kind": "OBJECT",
32
+ "name": "DynamicIpAllocationPolicyQueries",
33
+ "ofType": null
34
+ }
35
+ },
36
+ "policy": {
37
+ "args": {
38
+ "policy___input": {
39
+ "defaultValue": null,
40
+ "description": null,
41
+ "id_str": "policy___input",
42
+ "name": "input",
43
+ "path": "policy.input",
44
+ "requestStr": "$dynamicIpAllocationPolicyInput:DynamicIpAllocationPolicyInput ",
45
+ "required": false,
46
+ "responseStr": "input:$dynamicIpAllocationPolicyInput ",
47
+ "type": {
48
+ "definition": {
49
+ "description": null,
50
+ "enumValues": null,
51
+ "fields": null,
52
+ "inputFields": {
53
+ "revision": {
54
+ "defaultValue": null,
55
+ "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.",
56
+ "id_str": "policy___input___revision",
57
+ "name": "revision",
58
+ "path": "policy.input.revision",
59
+ "requestStr": "$policyRevisionInput:PolicyRevisionInput ",
60
+ "required": false,
61
+ "responseStr": "revision:$policyRevisionInput ",
62
+ "type": {
63
+ "definition": {
64
+ "description": "Input for specifying a policy revision",
65
+ "enumValues": null,
66
+ "fields": null,
67
+ "inputFields": {
68
+ "id": {
69
+ "defaultValue": null,
70
+ "description": null,
71
+ "id_str": "policy___input___revision___id",
72
+ "name": "id",
73
+ "path": "policy.input.revision.id",
74
+ "requestStr": "$id:ID ",
75
+ "required": false,
76
+ "responseStr": "id:$id ",
77
+ "type": {
78
+ "kind": [
79
+ "SCALAR"
80
+ ],
81
+ "name": "ID",
82
+ "non_null": false
83
+ },
84
+ "varName": "id"
85
+ },
86
+ "type": {
87
+ "defaultValue": "PRIVATE",
88
+ "description": null,
89
+ "id_str": "policy___input___revision___type",
90
+ "name": "type",
91
+ "path": "policy.input.revision.type",
92
+ "requestStr": "$type:PolicyRevisionType ",
93
+ "required": false,
94
+ "responseStr": "type:$type ",
95
+ "type": {
96
+ "definition": {
97
+ "description": "Enum for the type of a policy revision",
98
+ "enumValues": [
99
+ {
100
+ "deprecationReason": null,
101
+ "description": null,
102
+ "isDeprecated": false,
103
+ "name": "PRIVATE"
104
+ },
105
+ {
106
+ "deprecationReason": null,
107
+ "description": null,
108
+ "isDeprecated": false,
109
+ "name": "PUBLIC"
110
+ }
111
+ ],
112
+ "fields": null,
113
+ "inputFields": null,
114
+ "interfaces": null,
115
+ "kind": "ENUM",
116
+ "name": "PolicyRevisionType",
117
+ "possibleTypes": null
118
+ },
119
+ "indexType": "enum",
120
+ "kind": [
121
+ "ENUM"
122
+ ],
123
+ "name": "PolicyRevisionType",
124
+ "non_null": false
125
+ },
126
+ "varName": "type"
127
+ }
128
+ },
129
+ "interfaces": null,
130
+ "kind": "INPUT_OBJECT",
131
+ "name": "PolicyRevisionInput",
132
+ "possibleTypes": null
133
+ },
134
+ "indexType": "input_object",
135
+ "kind": [
136
+ "INPUT_OBJECT"
137
+ ],
138
+ "name": "PolicyRevisionInput",
139
+ "non_null": false
140
+ },
141
+ "varName": "policyRevisionInput"
142
+ }
143
+ },
144
+ "interfaces": null,
145
+ "kind": "INPUT_OBJECT",
146
+ "name": "DynamicIpAllocationPolicyInput",
147
+ "possibleTypes": null
148
+ },
149
+ "indexType": "input_object",
150
+ "kind": [
151
+ "INPUT_OBJECT"
152
+ ],
153
+ "name": "DynamicIpAllocationPolicyInput",
154
+ "non_null": false
155
+ },
156
+ "varName": "dynamicIpAllocationPolicyInput"
157
+ }
158
+ },
159
+ "deprecationReason": null,
160
+ "description": null,
161
+ "isDeprecated": false,
162
+ "name": "policy",
163
+ "type": {
164
+ "kind": "NON_NULL",
165
+ "name": null,
166
+ "ofType": {
167
+ "kind": "OBJECT",
168
+ "name": "DynamicIpAllocationPolicy",
169
+ "ofType": null
170
+ }
171
+ }
172
+ }
173
+ },
174
+ "deprecationReason": null,
175
+ "description": null,
176
+ "fieldTypes": {
177
+ "CountryRef": true,
178
+ "DynamicIpAllocationPolicy": true,
179
+ "DynamicIpAllocationPolicyQueries": true,
180
+ "DynamicIpAllocationRange": true,
181
+ "DynamicIpAllocationRule": true,
182
+ "DynamicIpAllocationRulePayload": true,
183
+ "DynamicIpAllocationSource": true,
184
+ "GlobalIpRangeRef": true,
185
+ "OperatingSystem": true,
186
+ "PolicyAudit": true,
187
+ "PolicyElementAudit": true,
188
+ "PolicyElementPropertiesEnum": true,
189
+ "PolicyRevision": true,
190
+ "PolicyRevisionInput": true,
191
+ "PolicyRevisionType": true,
192
+ "PolicySectionInfo": true,
193
+ "PolicySectionPayload": true,
194
+ "UserRef": true,
195
+ "UsersGroupRef": true
196
+ },
197
+ "isDeprecated": false,
198
+ "name": "policy",
199
+ "operationArgs": {
200
+ "accountId": {
201
+ "defaultValue": null,
202
+ "description": null,
203
+ "id_str": "accountId",
204
+ "name": "accountId",
205
+ "path": "accountId",
206
+ "requestStr": "$accountId:ID! ",
207
+ "required": true,
208
+ "responseStr": "accountId:$accountId ",
209
+ "type": {
210
+ "kind": [
211
+ "NON_NULL",
212
+ "SCALAR"
213
+ ],
214
+ "name": "ID",
215
+ "non_null": false
216
+ },
217
+ "varName": "accountId"
218
+ },
219
+ "dynamicIpAllocationPolicyInput": {
220
+ "defaultValue": null,
221
+ "description": null,
222
+ "id_str": "policy___input",
223
+ "name": "input",
224
+ "path": "policy.input",
225
+ "requestStr": "$dynamicIpAllocationPolicyInput:DynamicIpAllocationPolicyInput ",
226
+ "required": false,
227
+ "responseStr": "input:$dynamicIpAllocationPolicyInput ",
228
+ "type": {
229
+ "definition": {
230
+ "description": null,
231
+ "enumValues": null,
232
+ "fields": null,
233
+ "inputFields": {
234
+ "revision": {
235
+ "defaultValue": null,
236
+ "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.",
237
+ "id_str": "policy___input___revision",
238
+ "name": "revision",
239
+ "path": "policy.input.revision",
240
+ "requestStr": "$policyRevisionInput:PolicyRevisionInput ",
241
+ "required": false,
242
+ "responseStr": "revision:$policyRevisionInput ",
243
+ "type": {
244
+ "definition": {
245
+ "description": "Input for specifying a policy revision",
246
+ "enumValues": null,
247
+ "fields": null,
248
+ "inputFields": {
249
+ "id": {
250
+ "defaultValue": null,
251
+ "description": null,
252
+ "id_str": "policy___input___revision___id",
253
+ "name": "id",
254
+ "path": "policy.input.revision.id",
255
+ "requestStr": "$id:ID ",
256
+ "required": false,
257
+ "responseStr": "id:$id ",
258
+ "type": {
259
+ "kind": [
260
+ "SCALAR"
261
+ ],
262
+ "name": "ID",
263
+ "non_null": false
264
+ },
265
+ "varName": "id"
266
+ },
267
+ "type": {
268
+ "defaultValue": "PRIVATE",
269
+ "description": null,
270
+ "id_str": "policy___input___revision___type",
271
+ "name": "type",
272
+ "path": "policy.input.revision.type",
273
+ "requestStr": "$type:PolicyRevisionType ",
274
+ "required": false,
275
+ "responseStr": "type:$type ",
276
+ "type": {
277
+ "definition": {
278
+ "description": "Enum for the type of a policy revision",
279
+ "enumValues": [
280
+ {
281
+ "deprecationReason": null,
282
+ "description": null,
283
+ "isDeprecated": false,
284
+ "name": "PRIVATE"
285
+ },
286
+ {
287
+ "deprecationReason": null,
288
+ "description": null,
289
+ "isDeprecated": false,
290
+ "name": "PUBLIC"
291
+ }
292
+ ],
293
+ "fields": null,
294
+ "inputFields": null,
295
+ "interfaces": null,
296
+ "kind": "ENUM",
297
+ "name": "PolicyRevisionType",
298
+ "possibleTypes": null
299
+ },
300
+ "indexType": "enum",
301
+ "kind": [
302
+ "ENUM"
303
+ ],
304
+ "name": "PolicyRevisionType",
305
+ "non_null": false
306
+ },
307
+ "varName": "type"
308
+ }
309
+ },
310
+ "interfaces": null,
311
+ "kind": "INPUT_OBJECT",
312
+ "name": "PolicyRevisionInput",
313
+ "possibleTypes": null
314
+ },
315
+ "indexType": "input_object",
316
+ "kind": [
317
+ "INPUT_OBJECT"
318
+ ],
319
+ "name": "PolicyRevisionInput",
320
+ "non_null": false
321
+ },
322
+ "varName": "policyRevisionInput"
323
+ }
324
+ },
325
+ "interfaces": null,
326
+ "kind": "INPUT_OBJECT",
327
+ "name": "DynamicIpAllocationPolicyInput",
328
+ "possibleTypes": null
329
+ },
330
+ "indexType": "input_object",
331
+ "kind": [
332
+ "INPUT_OBJECT"
333
+ ],
334
+ "name": "DynamicIpAllocationPolicyInput",
335
+ "non_null": false
336
+ },
337
+ "varName": "dynamicIpAllocationPolicyInput"
338
+ }
339
+ },
340
+ "path": "query.policy.dynamicIpAllocation.policy",
341
+ "type": {
342
+ "definition": {
343
+ "description": "policies which configuration can be read with query APIs.",
344
+ "enumValues": null,
345
+ "fields": {
346
+ "dynamicIpAllocation": {
347
+ "args": {},
348
+ "deprecationReason": null,
349
+ "description": null,
350
+ "id_str": "dynamicIpAllocation",
351
+ "isDeprecated": false,
352
+ "name": "dynamicIpAllocation",
353
+ "path": "dynamicIpAllocation",
354
+ "requestStr": "$dynamicIpAllocationPolicyQueries:DynamicIpAllocationPolicyQueries ",
355
+ "required": false,
356
+ "responseStr": "dynamicIpAllocation:$dynamicIpAllocationPolicyQueries ",
357
+ "type": {
358
+ "definition": {
359
+ "description": null,
360
+ "enumValues": null,
361
+ "fields": {
362
+ "policy": {
363
+ "args": {
364
+ "policy___input": {
365
+ "defaultValue": null,
366
+ "description": null,
367
+ "id_str": "policy___input",
368
+ "name": "input",
369
+ "path": "policy.input",
370
+ "requestStr": "$dynamicIpAllocationPolicyInput:DynamicIpAllocationPolicyInput ",
371
+ "required": false,
372
+ "responseStr": "input:$dynamicIpAllocationPolicyInput ",
373
+ "type": {
374
+ "definition": {
375
+ "description": null,
376
+ "enumValues": null,
377
+ "fields": null,
378
+ "inputFields": {
379
+ "revision": {
380
+ "defaultValue": null,
381
+ "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.",
382
+ "id_str": "policy___input___revision",
383
+ "name": "revision",
384
+ "path": "policy.input.revision",
385
+ "requestStr": "$policyRevisionInput:PolicyRevisionInput ",
386
+ "required": false,
387
+ "responseStr": "revision:$policyRevisionInput ",
388
+ "type": {
389
+ "definition": {
390
+ "description": "Input for specifying a policy revision",
391
+ "enumValues": null,
392
+ "fields": null,
393
+ "inputFields": {
394
+ "id": {
395
+ "defaultValue": null,
396
+ "description": null,
397
+ "id_str": "policy___input___revision___id",
398
+ "name": "id",
399
+ "path": "policy.input.revision.id",
400
+ "requestStr": "$id:ID ",
401
+ "required": false,
402
+ "responseStr": "id:$id ",
403
+ "type": {
404
+ "kind": [
405
+ "SCALAR"
406
+ ],
407
+ "name": "ID",
408
+ "non_null": false
409
+ },
410
+ "varName": "id"
411
+ },
412
+ "type": {
413
+ "defaultValue": "PRIVATE",
414
+ "description": null,
415
+ "id_str": "policy___input___revision___type",
416
+ "name": "type",
417
+ "path": "policy.input.revision.type",
418
+ "requestStr": "$type:PolicyRevisionType ",
419
+ "required": false,
420
+ "responseStr": "type:$type ",
421
+ "type": {
422
+ "definition": {
423
+ "description": "Enum for the type of a policy revision",
424
+ "enumValues": [
425
+ {
426
+ "deprecationReason": null,
427
+ "description": null,
428
+ "isDeprecated": false,
429
+ "name": "PRIVATE"
430
+ },
431
+ {
432
+ "deprecationReason": null,
433
+ "description": null,
434
+ "isDeprecated": false,
435
+ "name": "PUBLIC"
436
+ }
437
+ ],
438
+ "fields": null,
439
+ "inputFields": null,
440
+ "interfaces": null,
441
+ "kind": "ENUM",
442
+ "name": "PolicyRevisionType",
443
+ "possibleTypes": null
444
+ },
445
+ "indexType": "enum",
446
+ "kind": [
447
+ "ENUM"
448
+ ],
449
+ "name": "PolicyRevisionType",
450
+ "non_null": false
451
+ },
452
+ "varName": "type"
453
+ }
454
+ },
455
+ "interfaces": null,
456
+ "kind": "INPUT_OBJECT",
457
+ "name": "PolicyRevisionInput",
458
+ "possibleTypes": null
459
+ },
460
+ "indexType": "input_object",
461
+ "kind": [
462
+ "INPUT_OBJECT"
463
+ ],
464
+ "name": "PolicyRevisionInput",
465
+ "non_null": false
466
+ },
467
+ "varName": "policyRevisionInput"
468
+ }
469
+ },
470
+ "interfaces": null,
471
+ "kind": "INPUT_OBJECT",
472
+ "name": "DynamicIpAllocationPolicyInput",
473
+ "possibleTypes": null
474
+ },
475
+ "indexType": "input_object",
476
+ "kind": [
477
+ "INPUT_OBJECT"
478
+ ],
479
+ "name": "DynamicIpAllocationPolicyInput",
480
+ "non_null": false
481
+ },
482
+ "varName": "dynamicIpAllocationPolicyInput"
483
+ }
484
+ },
485
+ "deprecationReason": null,
486
+ "description": null,
487
+ "id_str": "dynamicIpAllocation___policy",
488
+ "isDeprecated": false,
489
+ "name": "policy",
490
+ "path": "dynamicIpAllocation.policy",
491
+ "requestStr": "$dynamicIpAllocationPolicy:DynamicIpAllocationPolicy! ",
492
+ "required": true,
493
+ "responseStr": "policy:$dynamicIpAllocationPolicy ",
494
+ "type": {
495
+ "definition": {
496
+ "description": null,
497
+ "enumValues": null,
498
+ "fields": {
499
+ "audit": {
500
+ "alias": "policyAuditAudit: audit",
501
+ "args": {},
502
+ "deprecationReason": null,
503
+ "description": null,
504
+ "id_str": "dynamicIpAllocation___policy___audit",
505
+ "isDeprecated": false,
506
+ "name": "audit",
507
+ "path": "dynamicIpAllocation.policy.audit",
508
+ "requestStr": "$policyAudit:PolicyAudit ",
509
+ "required": false,
510
+ "responseStr": "audit:$policyAudit ",
511
+ "type": {
512
+ "definition": {
513
+ "description": null,
514
+ "enumValues": null,
515
+ "fields": {
516
+ "publishedBy": {
517
+ "args": {},
518
+ "deprecationReason": null,
519
+ "description": null,
520
+ "id_str": "dynamicIpAllocation___policy___audit___publishedBy",
521
+ "isDeprecated": false,
522
+ "name": "publishedBy",
523
+ "path": "dynamicIpAllocation.policy.audit.publishedBy",
524
+ "requestStr": "$publishedBy:String! ",
525
+ "required": true,
526
+ "responseStr": "publishedBy:$publishedBy ",
527
+ "type": {
528
+ "kind": [
529
+ "NON_NULL",
530
+ "SCALAR"
531
+ ],
532
+ "name": "String",
533
+ "non_null": false
534
+ },
535
+ "varName": "publishedBy"
536
+ },
537
+ "publishedTime": {
538
+ "args": {},
539
+ "deprecationReason": null,
540
+ "description": null,
541
+ "id_str": "dynamicIpAllocation___policy___audit___publishedTime",
542
+ "isDeprecated": false,
543
+ "name": "publishedTime",
544
+ "path": "dynamicIpAllocation.policy.audit.publishedTime",
545
+ "requestStr": "$publishedTime:DateTime! ",
546
+ "required": true,
547
+ "responseStr": "publishedTime:$publishedTime ",
548
+ "type": {
549
+ "kind": [
550
+ "NON_NULL",
551
+ "SCALAR"
552
+ ],
553
+ "name": "DateTime",
554
+ "non_null": false
555
+ },
556
+ "varName": "publishedTime"
557
+ }
558
+ },
559
+ "inputFields": null,
560
+ "interfaces": {},
561
+ "kind": "OBJECT",
562
+ "name": "PolicyAudit",
563
+ "possibleTypes": null
564
+ },
565
+ "indexType": "object",
566
+ "kind": [
567
+ "OBJECT"
568
+ ],
569
+ "name": "PolicyAudit",
570
+ "non_null": false
571
+ },
572
+ "varName": "policyAudit"
573
+ },
574
+ "enabled": {
575
+ "args": {},
576
+ "deprecationReason": null,
577
+ "description": null,
578
+ "id_str": "dynamicIpAllocation___policy___enabled",
579
+ "isDeprecated": false,
580
+ "name": "enabled",
581
+ "path": "dynamicIpAllocation.policy.enabled",
582
+ "requestStr": "$enabled:Boolean! ",
583
+ "required": true,
584
+ "responseStr": "enabled:$enabled ",
585
+ "type": {
586
+ "kind": [
587
+ "NON_NULL",
588
+ "SCALAR"
589
+ ],
590
+ "name": "Boolean",
591
+ "non_null": false
592
+ },
593
+ "varName": "enabled"
594
+ },
595
+ "revision": {
596
+ "alias": "policyRevisionRevision: revision",
597
+ "args": {},
598
+ "deprecationReason": null,
599
+ "description": null,
600
+ "id_str": "dynamicIpAllocation___policy___revision",
601
+ "isDeprecated": false,
602
+ "name": "revision",
603
+ "path": "dynamicIpAllocation.policy.revision",
604
+ "requestStr": "$policyRevision:PolicyRevision ",
605
+ "required": false,
606
+ "responseStr": "revision:$policyRevision ",
607
+ "type": {
608
+ "definition": {
609
+ "description": "Returns data about the policy revision, such as when the change was made, how many rules were changed, etc.",
610
+ "enumValues": null,
611
+ "fields": {
612
+ "changes": {
613
+ "args": {},
614
+ "deprecationReason": null,
615
+ "description": null,
616
+ "id_str": "dynamicIpAllocation___policy___revision___changes",
617
+ "isDeprecated": false,
618
+ "name": "changes",
619
+ "path": "dynamicIpAllocation.policy.revision.changes",
620
+ "requestStr": "$changes:Int! ",
621
+ "required": true,
622
+ "responseStr": "changes:$changes ",
623
+ "type": {
624
+ "kind": [
625
+ "NON_NULL",
626
+ "SCALAR"
627
+ ],
628
+ "name": "Int",
629
+ "non_null": false
630
+ },
631
+ "varName": "changes"
632
+ },
633
+ "createdTime": {
634
+ "args": {},
635
+ "deprecationReason": null,
636
+ "description": null,
637
+ "id_str": "dynamicIpAllocation___policy___revision___createdTime",
638
+ "isDeprecated": false,
639
+ "name": "createdTime",
640
+ "path": "dynamicIpAllocation.policy.revision.createdTime",
641
+ "requestStr": "$createdTime:DateTime! ",
642
+ "required": true,
643
+ "responseStr": "createdTime:$createdTime ",
644
+ "type": {
645
+ "kind": [
646
+ "NON_NULL",
647
+ "SCALAR"
648
+ ],
649
+ "name": "DateTime",
650
+ "non_null": false
651
+ },
652
+ "varName": "createdTime"
653
+ },
654
+ "description": {
655
+ "args": {},
656
+ "deprecationReason": null,
657
+ "description": null,
658
+ "id_str": "dynamicIpAllocation___policy___revision___description",
659
+ "isDeprecated": false,
660
+ "name": "description",
661
+ "path": "dynamicIpAllocation.policy.revision.description",
662
+ "requestStr": "$description:String! ",
663
+ "required": true,
664
+ "responseStr": "description:$description ",
665
+ "type": {
666
+ "kind": [
667
+ "NON_NULL",
668
+ "SCALAR"
669
+ ],
670
+ "name": "String",
671
+ "non_null": false
672
+ },
673
+ "varName": "description"
674
+ },
675
+ "id": {
676
+ "args": {},
677
+ "deprecationReason": null,
678
+ "description": null,
679
+ "id_str": "dynamicIpAllocation___policy___revision___id",
680
+ "isDeprecated": false,
681
+ "name": "id",
682
+ "path": "dynamicIpAllocation.policy.revision.id",
683
+ "requestStr": "$id:ID! ",
684
+ "required": true,
685
+ "responseStr": "id:$id ",
686
+ "type": {
687
+ "kind": [
688
+ "NON_NULL",
689
+ "SCALAR"
690
+ ],
691
+ "name": "ID",
692
+ "non_null": false
693
+ },
694
+ "varName": "id"
695
+ },
696
+ "name": {
697
+ "args": {},
698
+ "deprecationReason": null,
699
+ "description": null,
700
+ "id_str": "dynamicIpAllocation___policy___revision___name",
701
+ "isDeprecated": false,
702
+ "name": "name",
703
+ "path": "dynamicIpAllocation.policy.revision.name",
704
+ "requestStr": "$name:String! ",
705
+ "required": true,
706
+ "responseStr": "name:$name ",
707
+ "type": {
708
+ "kind": [
709
+ "NON_NULL",
710
+ "SCALAR"
711
+ ],
712
+ "name": "String",
713
+ "non_null": false
714
+ },
715
+ "varName": "name"
716
+ },
717
+ "updatedTime": {
718
+ "args": {},
719
+ "deprecationReason": null,
720
+ "description": null,
721
+ "id_str": "dynamicIpAllocation___policy___revision___updatedTime",
722
+ "isDeprecated": false,
723
+ "name": "updatedTime",
724
+ "path": "dynamicIpAllocation.policy.revision.updatedTime",
725
+ "requestStr": "$updatedTime:DateTime! ",
726
+ "required": true,
727
+ "responseStr": "updatedTime:$updatedTime ",
728
+ "type": {
729
+ "kind": [
730
+ "NON_NULL",
731
+ "SCALAR"
732
+ ],
733
+ "name": "DateTime",
734
+ "non_null": false
735
+ },
736
+ "varName": "updatedTime"
737
+ }
738
+ },
739
+ "inputFields": null,
740
+ "interfaces": {},
741
+ "kind": "OBJECT",
742
+ "name": "PolicyRevision",
743
+ "possibleTypes": null
744
+ },
745
+ "indexType": "object",
746
+ "kind": [
747
+ "OBJECT"
748
+ ],
749
+ "name": "PolicyRevision",
750
+ "non_null": false
751
+ },
752
+ "varName": "policyRevision"
753
+ },
754
+ "rules": {
755
+ "alias": "dynamicIpAllocationRulePayloadRules: rules",
756
+ "args": {},
757
+ "deprecationReason": null,
758
+ "description": null,
759
+ "id_str": "dynamicIpAllocation___policy___rules",
760
+ "isDeprecated": false,
761
+ "name": "rules",
762
+ "path": "dynamicIpAllocation.policy.rules",
763
+ "requestStr": "$dynamicIpAllocationRulePayload:[DynamicIpAllocationRulePayload]! ",
764
+ "required": true,
765
+ "responseStr": "rules:$dynamicIpAllocationRulePayload ",
766
+ "type": {
767
+ "definition": {
768
+ "description": null,
769
+ "enumValues": null,
770
+ "fields": {
771
+ "audit": {
772
+ "alias": "policyElementAuditAudit: audit",
773
+ "args": {},
774
+ "deprecationReason": null,
775
+ "description": null,
776
+ "id_str": "dynamicIpAllocation___policy___rules___audit",
777
+ "isDeprecated": false,
778
+ "name": "audit",
779
+ "path": "dynamicIpAllocation.policy.rules.audit",
780
+ "requestStr": "$policyElementAudit:PolicyElementAudit! ",
781
+ "required": true,
782
+ "responseStr": "audit:$policyElementAudit ",
783
+ "type": {
784
+ "definition": {
785
+ "description": null,
786
+ "enumValues": null,
787
+ "fields": {
788
+ "updatedBy": {
789
+ "args": {},
790
+ "deprecationReason": null,
791
+ "description": "The admin, or the API-key, that performed the last update",
792
+ "id_str": "dynamicIpAllocation___policy___rules___audit___updatedBy",
793
+ "isDeprecated": false,
794
+ "name": "updatedBy",
795
+ "path": "dynamicIpAllocation.policy.rules.audit.updatedBy",
796
+ "requestStr": "$updatedBy:String! ",
797
+ "required": true,
798
+ "responseStr": "updatedBy:$updatedBy ",
799
+ "type": {
800
+ "kind": [
801
+ "NON_NULL",
802
+ "SCALAR"
803
+ ],
804
+ "name": "String",
805
+ "non_null": false
806
+ },
807
+ "varName": "updatedBy"
808
+ },
809
+ "updatedTime": {
810
+ "args": {},
811
+ "deprecationReason": null,
812
+ "description": "The last date and time the rule was updated",
813
+ "id_str": "dynamicIpAllocation___policy___rules___audit___updatedTime",
814
+ "isDeprecated": false,
815
+ "name": "updatedTime",
816
+ "path": "dynamicIpAllocation.policy.rules.audit.updatedTime",
817
+ "requestStr": "$updatedTime:DateTime! ",
818
+ "required": true,
819
+ "responseStr": "updatedTime:$updatedTime ",
820
+ "type": {
821
+ "kind": [
822
+ "NON_NULL",
823
+ "SCALAR"
824
+ ],
825
+ "name": "DateTime",
826
+ "non_null": false
827
+ },
828
+ "varName": "updatedTime"
829
+ }
830
+ },
831
+ "inputFields": null,
832
+ "interfaces": {},
833
+ "kind": "OBJECT",
834
+ "name": "PolicyElementAudit",
835
+ "possibleTypes": null
836
+ },
837
+ "indexType": "object",
838
+ "kind": [
839
+ "NON_NULL",
840
+ "OBJECT"
841
+ ],
842
+ "name": "PolicyElementAudit",
843
+ "non_null": false
844
+ },
845
+ "varName": "policyElementAudit"
846
+ },
847
+ "properties": {
848
+ "alias": "policyElementPropertiesEnumProperties: properties",
849
+ "args": {},
850
+ "deprecationReason": null,
851
+ "description": null,
852
+ "id_str": "dynamicIpAllocation___policy___rules___properties",
853
+ "isDeprecated": false,
854
+ "name": "properties",
855
+ "path": "dynamicIpAllocation.policy.rules.properties",
856
+ "requestStr": "$properties:[PolicyElementPropertiesEnum]! ",
857
+ "required": true,
858
+ "responseStr": "properties:$properties ",
859
+ "type": {
860
+ "definition": {
861
+ "description": "Attributes describing the rule state or type",
862
+ "enumValues": [
863
+ {
864
+ "deprecationReason": null,
865
+ "description": "New (added) rule",
866
+ "isDeprecated": false,
867
+ "name": "ADDED"
868
+ },
869
+ {
870
+ "deprecationReason": null,
871
+ "description": "Updated (modified) existing rule",
872
+ "isDeprecated": false,
873
+ "name": "UPDATED"
874
+ },
875
+ {
876
+ "deprecationReason": null,
877
+ "description": "Removed (deleted) rule",
878
+ "isDeprecated": false,
879
+ "name": "REMOVED"
880
+ },
881
+ {
882
+ "deprecationReason": null,
883
+ "description": "A rule moved to a different position",
884
+ "isDeprecated": false,
885
+ "name": "MOVED"
886
+ },
887
+ {
888
+ "deprecationReason": null,
889
+ "description": "A rule locked for changes by other admins",
890
+ "isDeprecated": false,
891
+ "name": "LOCKED"
892
+ },
893
+ {
894
+ "deprecationReason": null,
895
+ "description": "An object can not be moved, or referenced when moving other objects.\nHowever its properties and content can be modified.",
896
+ "isDeprecated": false,
897
+ "name": "ANCHORED"
898
+ },
899
+ {
900
+ "deprecationReason": null,
901
+ "description": "A pre-defined (system) rule that cannot be modified or removed",
902
+ "isDeprecated": false,
903
+ "name": "SYSTEM"
904
+ }
905
+ ],
906
+ "fields": null,
907
+ "inputFields": null,
908
+ "interfaces": null,
909
+ "kind": "ENUM",
910
+ "name": "PolicyElementPropertiesEnum",
911
+ "possibleTypes": null
912
+ },
913
+ "indexType": "enum",
914
+ "kind": [
915
+ "NON_NULL",
916
+ "LIST",
917
+ "NON_NULL",
918
+ "ENUM"
919
+ ],
920
+ "name": "PolicyElementPropertiesEnum",
921
+ "non_null": false
922
+ },
923
+ "varName": "properties"
924
+ },
925
+ "rule": {
926
+ "alias": "dynamicIpAllocationRuleRule: rule",
927
+ "args": {},
928
+ "deprecationReason": null,
929
+ "description": null,
930
+ "id_str": "dynamicIpAllocation___policy___rules___rule",
931
+ "isDeprecated": false,
932
+ "name": "rule",
933
+ "path": "dynamicIpAllocation.policy.rules.rule",
934
+ "requestStr": "$dynamicIpAllocationRule:DynamicIpAllocationRule! ",
935
+ "required": true,
936
+ "responseStr": "rule:$dynamicIpAllocationRule ",
937
+ "type": {
938
+ "definition": {
939
+ "description": null,
940
+ "enumValues": null,
941
+ "fields": {
942
+ "country": {
943
+ "alias": "countryRefCountry: country",
944
+ "args": {},
945
+ "deprecationReason": null,
946
+ "description": null,
947
+ "id_str": "dynamicIpAllocation___policy___rules___rule___country",
948
+ "isDeprecated": false,
949
+ "name": "country",
950
+ "path": "dynamicIpAllocation.policy.rules.rule.country",
951
+ "requestStr": "$countryRef:[CountryRef]! ",
952
+ "required": true,
953
+ "responseStr": "country:$countryRef ",
954
+ "type": {
955
+ "definition": {
956
+ "description": "A reference identifying the Country object. ID: Unique Country Identifier, Name: The Country Name",
957
+ "enumValues": null,
958
+ "fields": {
959
+ "id": {
960
+ "args": {},
961
+ "deprecationReason": null,
962
+ "description": null,
963
+ "id_str": "dynamicIpAllocation___policy___rules___rule___country___id",
964
+ "isDeprecated": false,
965
+ "name": "id",
966
+ "path": "dynamicIpAllocation.policy.rules.rule.country.id",
967
+ "requestStr": "$id:ID! ",
968
+ "required": true,
969
+ "responseStr": "id:$id ",
970
+ "type": {
971
+ "kind": [
972
+ "NON_NULL",
973
+ "SCALAR"
974
+ ],
975
+ "name": "ID",
976
+ "non_null": false
977
+ },
978
+ "varName": "id"
979
+ },
980
+ "name": {
981
+ "args": {},
982
+ "deprecationReason": null,
983
+ "description": null,
984
+ "id_str": "dynamicIpAllocation___policy___rules___rule___country___name",
985
+ "isDeprecated": false,
986
+ "name": "name",
987
+ "path": "dynamicIpAllocation.policy.rules.rule.country.name",
988
+ "requestStr": "$name:String! ",
989
+ "required": true,
990
+ "responseStr": "name:$name ",
991
+ "type": {
992
+ "kind": [
993
+ "NON_NULL",
994
+ "SCALAR"
995
+ ],
996
+ "name": "String",
997
+ "non_null": false
998
+ },
999
+ "varName": "name"
1000
+ }
1001
+ },
1002
+ "inputFields": null,
1003
+ "interfaces": {},
1004
+ "kind": "OBJECT",
1005
+ "name": "CountryRef",
1006
+ "possibleTypes": null
1007
+ },
1008
+ "indexType": "object",
1009
+ "kind": [
1010
+ "NON_NULL",
1011
+ "LIST",
1012
+ "NON_NULL",
1013
+ "OBJECT"
1014
+ ],
1015
+ "name": "CountryRef",
1016
+ "non_null": false
1017
+ },
1018
+ "varName": "countryRef"
1019
+ },
1020
+ "description": {
1021
+ "args": {},
1022
+ "deprecationReason": null,
1023
+ "description": "Description for the rule",
1024
+ "id_str": "dynamicIpAllocation___policy___rules___rule___description",
1025
+ "isDeprecated": false,
1026
+ "name": "description",
1027
+ "path": "dynamicIpAllocation.policy.rules.rule.description",
1028
+ "requestStr": "$description:String! ",
1029
+ "required": true,
1030
+ "responseStr": "description:$description ",
1031
+ "type": {
1032
+ "kind": [
1033
+ "NON_NULL",
1034
+ "SCALAR"
1035
+ ],
1036
+ "name": "String",
1037
+ "non_null": false
1038
+ },
1039
+ "varName": "description"
1040
+ },
1041
+ "enabled": {
1042
+ "args": {},
1043
+ "deprecationReason": null,
1044
+ "description": "TRUE = Rule is enabled \n FALSE = Rule is disabled",
1045
+ "id_str": "dynamicIpAllocation___policy___rules___rule___enabled",
1046
+ "isDeprecated": false,
1047
+ "name": "enabled",
1048
+ "path": "dynamicIpAllocation.policy.rules.rule.enabled",
1049
+ "requestStr": "$enabled:Boolean! ",
1050
+ "required": true,
1051
+ "responseStr": "enabled:$enabled ",
1052
+ "type": {
1053
+ "kind": [
1054
+ "NON_NULL",
1055
+ "SCALAR"
1056
+ ],
1057
+ "name": "Boolean",
1058
+ "non_null": false
1059
+ },
1060
+ "varName": "enabled"
1061
+ },
1062
+ "id": {
1063
+ "args": {},
1064
+ "deprecationReason": null,
1065
+ "description": "Rule ID",
1066
+ "id_str": "dynamicIpAllocation___policy___rules___rule___id",
1067
+ "isDeprecated": false,
1068
+ "name": "id",
1069
+ "path": "dynamicIpAllocation.policy.rules.rule.id",
1070
+ "requestStr": "$id:ID! ",
1071
+ "required": true,
1072
+ "responseStr": "id:$id ",
1073
+ "type": {
1074
+ "kind": [
1075
+ "NON_NULL",
1076
+ "SCALAR"
1077
+ ],
1078
+ "name": "ID",
1079
+ "non_null": false
1080
+ },
1081
+ "varName": "id"
1082
+ },
1083
+ "index": {
1084
+ "args": {},
1085
+ "deprecationReason": null,
1086
+ "description": "Position / priority of rule",
1087
+ "id_str": "dynamicIpAllocation___policy___rules___rule___index",
1088
+ "isDeprecated": false,
1089
+ "name": "index",
1090
+ "path": "dynamicIpAllocation.policy.rules.rule.index",
1091
+ "requestStr": "$index:Int! ",
1092
+ "required": true,
1093
+ "responseStr": "index:$index ",
1094
+ "type": {
1095
+ "kind": [
1096
+ "NON_NULL",
1097
+ "SCALAR"
1098
+ ],
1099
+ "name": "Int",
1100
+ "non_null": false
1101
+ },
1102
+ "varName": "index"
1103
+ },
1104
+ "name": {
1105
+ "args": {},
1106
+ "deprecationReason": null,
1107
+ "description": "Name of the rule",
1108
+ "id_str": "dynamicIpAllocation___policy___rules___rule___name",
1109
+ "isDeprecated": false,
1110
+ "name": "name",
1111
+ "path": "dynamicIpAllocation.policy.rules.rule.name",
1112
+ "requestStr": "$name:String! ",
1113
+ "required": true,
1114
+ "responseStr": "name:$name ",
1115
+ "type": {
1116
+ "kind": [
1117
+ "NON_NULL",
1118
+ "SCALAR"
1119
+ ],
1120
+ "name": "String",
1121
+ "non_null": false
1122
+ },
1123
+ "varName": "name"
1124
+ },
1125
+ "platform": {
1126
+ "alias": "operatingSystemPlatform: platform",
1127
+ "args": {},
1128
+ "deprecationReason": null,
1129
+ "description": null,
1130
+ "id_str": "dynamicIpAllocation___policy___rules___rule___platform",
1131
+ "isDeprecated": false,
1132
+ "name": "platform",
1133
+ "path": "dynamicIpAllocation.policy.rules.rule.platform",
1134
+ "requestStr": "$platform:[OperatingSystem]! ",
1135
+ "required": true,
1136
+ "responseStr": "platform:$platform ",
1137
+ "type": {
1138
+ "definition": {
1139
+ "description": null,
1140
+ "enumValues": [
1141
+ {
1142
+ "deprecationReason": null,
1143
+ "description": null,
1144
+ "isDeprecated": false,
1145
+ "name": "WINDOWS"
1146
+ },
1147
+ {
1148
+ "deprecationReason": null,
1149
+ "description": null,
1150
+ "isDeprecated": false,
1151
+ "name": "MACOS"
1152
+ },
1153
+ {
1154
+ "deprecationReason": null,
1155
+ "description": null,
1156
+ "isDeprecated": false,
1157
+ "name": "IOS"
1158
+ },
1159
+ {
1160
+ "deprecationReason": null,
1161
+ "description": null,
1162
+ "isDeprecated": false,
1163
+ "name": "ANDROID"
1164
+ },
1165
+ {
1166
+ "deprecationReason": null,
1167
+ "description": null,
1168
+ "isDeprecated": false,
1169
+ "name": "LINUX"
1170
+ },
1171
+ {
1172
+ "deprecationReason": null,
1173
+ "description": null,
1174
+ "isDeprecated": false,
1175
+ "name": "EMBEDDED"
1176
+ }
1177
+ ],
1178
+ "fields": null,
1179
+ "inputFields": null,
1180
+ "interfaces": null,
1181
+ "kind": "ENUM",
1182
+ "name": "OperatingSystem",
1183
+ "possibleTypes": null
1184
+ },
1185
+ "indexType": "enum",
1186
+ "kind": [
1187
+ "NON_NULL",
1188
+ "LIST",
1189
+ "NON_NULL",
1190
+ "ENUM"
1191
+ ],
1192
+ "name": "OperatingSystem",
1193
+ "non_null": false
1194
+ },
1195
+ "varName": "platform"
1196
+ },
1197
+ "range": {
1198
+ "alias": "dynamicIpAllocationRangeRange: range",
1199
+ "args": {},
1200
+ "deprecationReason": null,
1201
+ "description": null,
1202
+ "id_str": "dynamicIpAllocation___policy___rules___rule___range",
1203
+ "isDeprecated": false,
1204
+ "name": "range",
1205
+ "path": "dynamicIpAllocation.policy.rules.rule.range",
1206
+ "requestStr": "$dynamicIpAllocationRange:DynamicIpAllocationRange! ",
1207
+ "required": true,
1208
+ "responseStr": "range:$dynamicIpAllocationRange ",
1209
+ "type": {
1210
+ "definition": {
1211
+ "description": null,
1212
+ "enumValues": null,
1213
+ "fields": {
1214
+ "globalIpRange": {
1215
+ "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
1216
+ "args": {},
1217
+ "deprecationReason": null,
1218
+ "description": null,
1219
+ "id_str": "dynamicIpAllocation___policy___rules___rule___range___globalIpRange",
1220
+ "isDeprecated": false,
1221
+ "name": "globalIpRange",
1222
+ "path": "dynamicIpAllocation.policy.rules.rule.range.globalIpRange",
1223
+ "requestStr": "$globalIpRangeRef:GlobalIpRangeRef! ",
1224
+ "required": true,
1225
+ "responseStr": "globalIpRange:$globalIpRangeRef ",
1226
+ "type": {
1227
+ "definition": {
1228
+ "description": "A reference identifying the GlobalIpRange object. ID: Unique GlobalIpRange Identifier, Name: The GlobalIpRange Name",
1229
+ "enumValues": null,
1230
+ "fields": {
1231
+ "id": {
1232
+ "args": {},
1233
+ "deprecationReason": null,
1234
+ "description": null,
1235
+ "id_str": "dynamicIpAllocation___policy___rules___rule___range___globalIpRange___id",
1236
+ "isDeprecated": false,
1237
+ "name": "id",
1238
+ "path": "dynamicIpAllocation.policy.rules.rule.range.globalIpRange.id",
1239
+ "requestStr": "$id:ID! ",
1240
+ "required": true,
1241
+ "responseStr": "id:$id ",
1242
+ "type": {
1243
+ "kind": [
1244
+ "NON_NULL",
1245
+ "SCALAR"
1246
+ ],
1247
+ "name": "ID",
1248
+ "non_null": false
1249
+ },
1250
+ "varName": "id"
1251
+ },
1252
+ "name": {
1253
+ "args": {},
1254
+ "deprecationReason": null,
1255
+ "description": null,
1256
+ "id_str": "dynamicIpAllocation___policy___rules___rule___range___globalIpRange___name",
1257
+ "isDeprecated": false,
1258
+ "name": "name",
1259
+ "path": "dynamicIpAllocation.policy.rules.rule.range.globalIpRange.name",
1260
+ "requestStr": "$name:String! ",
1261
+ "required": true,
1262
+ "responseStr": "name:$name ",
1263
+ "type": {
1264
+ "kind": [
1265
+ "NON_NULL",
1266
+ "SCALAR"
1267
+ ],
1268
+ "name": "String",
1269
+ "non_null": false
1270
+ },
1271
+ "varName": "name"
1272
+ }
1273
+ },
1274
+ "inputFields": null,
1275
+ "interfaces": {},
1276
+ "kind": "OBJECT",
1277
+ "name": "GlobalIpRangeRef",
1278
+ "possibleTypes": null
1279
+ },
1280
+ "indexType": "object",
1281
+ "kind": [
1282
+ "NON_NULL",
1283
+ "OBJECT"
1284
+ ],
1285
+ "name": "GlobalIpRangeRef",
1286
+ "non_null": false
1287
+ },
1288
+ "varName": "globalIpRangeRef"
1289
+ }
1290
+ },
1291
+ "inputFields": null,
1292
+ "interfaces": {},
1293
+ "kind": "OBJECT",
1294
+ "name": "DynamicIpAllocationRange",
1295
+ "possibleTypes": null
1296
+ },
1297
+ "indexType": "object",
1298
+ "kind": [
1299
+ "NON_NULL",
1300
+ "OBJECT"
1301
+ ],
1302
+ "name": "DynamicIpAllocationRange",
1303
+ "non_null": false
1304
+ },
1305
+ "varName": "dynamicIpAllocationRange"
1306
+ },
1307
+ "section": {
1308
+ "alias": "policySectionInfoSection: section",
1309
+ "args": {},
1310
+ "deprecationReason": null,
1311
+ "description": "Policy section where the rule is located",
1312
+ "id_str": "dynamicIpAllocation___policy___rules___rule___section",
1313
+ "isDeprecated": false,
1314
+ "name": "section",
1315
+ "path": "dynamicIpAllocation.policy.rules.rule.section",
1316
+ "requestStr": "$policySectionInfo:PolicySectionInfo! ",
1317
+ "required": true,
1318
+ "responseStr": "section:$policySectionInfo ",
1319
+ "type": {
1320
+ "definition": {
1321
+ "description": "Define settings for a policy section",
1322
+ "enumValues": null,
1323
+ "fields": {
1324
+ "id": {
1325
+ "args": {},
1326
+ "deprecationReason": null,
1327
+ "description": null,
1328
+ "id_str": "dynamicIpAllocation___policy___rules___rule___section___id",
1329
+ "isDeprecated": false,
1330
+ "name": "id",
1331
+ "path": "dynamicIpAllocation.policy.rules.rule.section.id",
1332
+ "requestStr": "$id:ID! ",
1333
+ "required": true,
1334
+ "responseStr": "id:$id ",
1335
+ "type": {
1336
+ "kind": [
1337
+ "NON_NULL",
1338
+ "SCALAR"
1339
+ ],
1340
+ "name": "ID",
1341
+ "non_null": false
1342
+ },
1343
+ "varName": "id"
1344
+ },
1345
+ "name": {
1346
+ "args": {},
1347
+ "deprecationReason": null,
1348
+ "description": null,
1349
+ "id_str": "dynamicIpAllocation___policy___rules___rule___section___name",
1350
+ "isDeprecated": false,
1351
+ "name": "name",
1352
+ "path": "dynamicIpAllocation.policy.rules.rule.section.name",
1353
+ "requestStr": "$name:String! ",
1354
+ "required": true,
1355
+ "responseStr": "name:$name ",
1356
+ "type": {
1357
+ "kind": [
1358
+ "NON_NULL",
1359
+ "SCALAR"
1360
+ ],
1361
+ "name": "String",
1362
+ "non_null": false
1363
+ },
1364
+ "varName": "name"
1365
+ }
1366
+ },
1367
+ "inputFields": null,
1368
+ "interfaces": {},
1369
+ "kind": "OBJECT",
1370
+ "name": "PolicySectionInfo",
1371
+ "possibleTypes": null
1372
+ },
1373
+ "indexType": "object",
1374
+ "kind": [
1375
+ "NON_NULL",
1376
+ "OBJECT"
1377
+ ],
1378
+ "name": "PolicySectionInfo",
1379
+ "non_null": false
1380
+ },
1381
+ "varName": "policySectionInfo"
1382
+ },
1383
+ "source": {
1384
+ "alias": "dynamicIpAllocationSourceSource: source",
1385
+ "args": {},
1386
+ "deprecationReason": null,
1387
+ "description": null,
1388
+ "id_str": "dynamicIpAllocation___policy___rules___rule___source",
1389
+ "isDeprecated": false,
1390
+ "name": "source",
1391
+ "path": "dynamicIpAllocation.policy.rules.rule.source",
1392
+ "requestStr": "$dynamicIpAllocationSource:DynamicIpAllocationSource! ",
1393
+ "required": true,
1394
+ "responseStr": "source:$dynamicIpAllocationSource ",
1395
+ "type": {
1396
+ "definition": {
1397
+ "description": null,
1398
+ "enumValues": null,
1399
+ "fields": {
1400
+ "user": {
1401
+ "alias": "userRefUser: user",
1402
+ "args": {},
1403
+ "deprecationReason": null,
1404
+ "description": null,
1405
+ "id_str": "dynamicIpAllocation___policy___rules___rule___source___user",
1406
+ "isDeprecated": false,
1407
+ "name": "user",
1408
+ "path": "dynamicIpAllocation.policy.rules.rule.source.user",
1409
+ "requestStr": "$userRef:[UserRef]! ",
1410
+ "required": true,
1411
+ "responseStr": "user:$userRef ",
1412
+ "type": {
1413
+ "definition": {
1414
+ "description": "A reference identifying the User object. ID: Unique User Identifier, Name: The User Name",
1415
+ "enumValues": null,
1416
+ "fields": {
1417
+ "id": {
1418
+ "args": {},
1419
+ "deprecationReason": null,
1420
+ "description": null,
1421
+ "id_str": "dynamicIpAllocation___policy___rules___rule___source___user___id",
1422
+ "isDeprecated": false,
1423
+ "name": "id",
1424
+ "path": "dynamicIpAllocation.policy.rules.rule.source.user.id",
1425
+ "requestStr": "$id:ID! ",
1426
+ "required": true,
1427
+ "responseStr": "id:$id ",
1428
+ "type": {
1429
+ "kind": [
1430
+ "NON_NULL",
1431
+ "SCALAR"
1432
+ ],
1433
+ "name": "ID",
1434
+ "non_null": false
1435
+ },
1436
+ "varName": "id"
1437
+ },
1438
+ "name": {
1439
+ "args": {},
1440
+ "deprecationReason": null,
1441
+ "description": null,
1442
+ "id_str": "dynamicIpAllocation___policy___rules___rule___source___user___name",
1443
+ "isDeprecated": false,
1444
+ "name": "name",
1445
+ "path": "dynamicIpAllocation.policy.rules.rule.source.user.name",
1446
+ "requestStr": "$name:String! ",
1447
+ "required": true,
1448
+ "responseStr": "name:$name ",
1449
+ "type": {
1450
+ "kind": [
1451
+ "NON_NULL",
1452
+ "SCALAR"
1453
+ ],
1454
+ "name": "String",
1455
+ "non_null": false
1456
+ },
1457
+ "varName": "name"
1458
+ }
1459
+ },
1460
+ "inputFields": null,
1461
+ "interfaces": {},
1462
+ "kind": "OBJECT",
1463
+ "name": "UserRef",
1464
+ "possibleTypes": null
1465
+ },
1466
+ "indexType": "object",
1467
+ "kind": [
1468
+ "NON_NULL",
1469
+ "LIST",
1470
+ "NON_NULL",
1471
+ "OBJECT"
1472
+ ],
1473
+ "name": "UserRef",
1474
+ "non_null": false
1475
+ },
1476
+ "varName": "userRef"
1477
+ },
1478
+ "usersGroup": {
1479
+ "alias": "usersGroupRefUsersGroup: usersGroup",
1480
+ "args": {},
1481
+ "deprecationReason": null,
1482
+ "description": null,
1483
+ "id_str": "dynamicIpAllocation___policy___rules___rule___source___usersGroup",
1484
+ "isDeprecated": false,
1485
+ "name": "usersGroup",
1486
+ "path": "dynamicIpAllocation.policy.rules.rule.source.usersGroup",
1487
+ "requestStr": "$usersGroupRef:[UsersGroupRef]! ",
1488
+ "required": true,
1489
+ "responseStr": "usersGroup:$usersGroupRef ",
1490
+ "type": {
1491
+ "definition": {
1492
+ "description": "A reference identifying the UsersGroup object. ID: Unique UsersGroup Identifier, Name: The UsersGroup Name",
1493
+ "enumValues": null,
1494
+ "fields": {
1495
+ "id": {
1496
+ "args": {},
1497
+ "deprecationReason": null,
1498
+ "description": null,
1499
+ "id_str": "dynamicIpAllocation___policy___rules___rule___source___usersGroup___id",
1500
+ "isDeprecated": false,
1501
+ "name": "id",
1502
+ "path": "dynamicIpAllocation.policy.rules.rule.source.usersGroup.id",
1503
+ "requestStr": "$id:ID! ",
1504
+ "required": true,
1505
+ "responseStr": "id:$id ",
1506
+ "type": {
1507
+ "kind": [
1508
+ "NON_NULL",
1509
+ "SCALAR"
1510
+ ],
1511
+ "name": "ID",
1512
+ "non_null": false
1513
+ },
1514
+ "varName": "id"
1515
+ },
1516
+ "name": {
1517
+ "args": {},
1518
+ "deprecationReason": null,
1519
+ "description": null,
1520
+ "id_str": "dynamicIpAllocation___policy___rules___rule___source___usersGroup___name",
1521
+ "isDeprecated": false,
1522
+ "name": "name",
1523
+ "path": "dynamicIpAllocation.policy.rules.rule.source.usersGroup.name",
1524
+ "requestStr": "$name:String! ",
1525
+ "required": true,
1526
+ "responseStr": "name:$name ",
1527
+ "type": {
1528
+ "kind": [
1529
+ "NON_NULL",
1530
+ "SCALAR"
1531
+ ],
1532
+ "name": "String",
1533
+ "non_null": false
1534
+ },
1535
+ "varName": "name"
1536
+ }
1537
+ },
1538
+ "inputFields": null,
1539
+ "interfaces": {},
1540
+ "kind": "OBJECT",
1541
+ "name": "UsersGroupRef",
1542
+ "possibleTypes": null
1543
+ },
1544
+ "indexType": "object",
1545
+ "kind": [
1546
+ "NON_NULL",
1547
+ "LIST",
1548
+ "NON_NULL",
1549
+ "OBJECT"
1550
+ ],
1551
+ "name": "UsersGroupRef",
1552
+ "non_null": false
1553
+ },
1554
+ "varName": "usersGroupRef"
1555
+ }
1556
+ },
1557
+ "inputFields": null,
1558
+ "interfaces": {},
1559
+ "kind": "OBJECT",
1560
+ "name": "DynamicIpAllocationSource",
1561
+ "possibleTypes": null
1562
+ },
1563
+ "indexType": "object",
1564
+ "kind": [
1565
+ "NON_NULL",
1566
+ "OBJECT"
1567
+ ],
1568
+ "name": "DynamicIpAllocationSource",
1569
+ "non_null": false
1570
+ },
1571
+ "varName": "dynamicIpAllocationSource"
1572
+ }
1573
+ },
1574
+ "inputFields": null,
1575
+ "interfaces": {},
1576
+ "kind": "OBJECT",
1577
+ "name": "DynamicIpAllocationRule",
1578
+ "possibleTypes": null
1579
+ },
1580
+ "indexType": "object",
1581
+ "kind": [
1582
+ "NON_NULL",
1583
+ "OBJECT"
1584
+ ],
1585
+ "name": "DynamicIpAllocationRule",
1586
+ "non_null": false
1587
+ },
1588
+ "varName": "dynamicIpAllocationRule"
1589
+ }
1590
+ },
1591
+ "inputFields": null,
1592
+ "interfaces": {},
1593
+ "kind": "OBJECT",
1594
+ "name": "DynamicIpAllocationRulePayload",
1595
+ "possibleTypes": null
1596
+ },
1597
+ "indexType": "object",
1598
+ "kind": [
1599
+ "NON_NULL",
1600
+ "LIST",
1601
+ "NON_NULL",
1602
+ "OBJECT"
1603
+ ],
1604
+ "name": "DynamicIpAllocationRulePayload",
1605
+ "non_null": false
1606
+ },
1607
+ "varName": "dynamicIpAllocationRulePayload"
1608
+ },
1609
+ "sections": {
1610
+ "alias": "policySectionPayloadSections: sections",
1611
+ "args": {},
1612
+ "deprecationReason": null,
1613
+ "description": null,
1614
+ "id_str": "dynamicIpAllocation___policy___sections",
1615
+ "isDeprecated": false,
1616
+ "name": "sections",
1617
+ "path": "dynamicIpAllocation.policy.sections",
1618
+ "requestStr": "$policySectionPayload:[PolicySectionPayload]! ",
1619
+ "required": true,
1620
+ "responseStr": "sections:$policySectionPayload ",
1621
+ "type": {
1622
+ "definition": {
1623
+ "description": null,
1624
+ "enumValues": null,
1625
+ "fields": {
1626
+ "audit": {
1627
+ "alias": "policyElementAuditAudit: audit",
1628
+ "args": {},
1629
+ "deprecationReason": null,
1630
+ "description": null,
1631
+ "id_str": "dynamicIpAllocation___policy___sections___audit",
1632
+ "isDeprecated": false,
1633
+ "name": "audit",
1634
+ "path": "dynamicIpAllocation.policy.sections.audit",
1635
+ "requestStr": "$policyElementAudit:PolicyElementAudit! ",
1636
+ "required": true,
1637
+ "responseStr": "audit:$policyElementAudit ",
1638
+ "type": {
1639
+ "definition": {
1640
+ "description": null,
1641
+ "enumValues": null,
1642
+ "fields": {
1643
+ "updatedBy": {
1644
+ "args": {},
1645
+ "deprecationReason": null,
1646
+ "description": "The admin, or the API-key, that performed the last update",
1647
+ "id_str": "dynamicIpAllocation___policy___sections___audit___updatedBy",
1648
+ "isDeprecated": false,
1649
+ "name": "updatedBy",
1650
+ "path": "dynamicIpAllocation.policy.sections.audit.updatedBy",
1651
+ "requestStr": "$updatedBy:String! ",
1652
+ "required": true,
1653
+ "responseStr": "updatedBy:$updatedBy ",
1654
+ "type": {
1655
+ "kind": [
1656
+ "NON_NULL",
1657
+ "SCALAR"
1658
+ ],
1659
+ "name": "String",
1660
+ "non_null": false
1661
+ },
1662
+ "varName": "updatedBy"
1663
+ },
1664
+ "updatedTime": {
1665
+ "args": {},
1666
+ "deprecationReason": null,
1667
+ "description": "The last date and time the rule was updated",
1668
+ "id_str": "dynamicIpAllocation___policy___sections___audit___updatedTime",
1669
+ "isDeprecated": false,
1670
+ "name": "updatedTime",
1671
+ "path": "dynamicIpAllocation.policy.sections.audit.updatedTime",
1672
+ "requestStr": "$updatedTime:DateTime! ",
1673
+ "required": true,
1674
+ "responseStr": "updatedTime:$updatedTime ",
1675
+ "type": {
1676
+ "kind": [
1677
+ "NON_NULL",
1678
+ "SCALAR"
1679
+ ],
1680
+ "name": "DateTime",
1681
+ "non_null": false
1682
+ },
1683
+ "varName": "updatedTime"
1684
+ }
1685
+ },
1686
+ "inputFields": null,
1687
+ "interfaces": {},
1688
+ "kind": "OBJECT",
1689
+ "name": "PolicyElementAudit",
1690
+ "possibleTypes": null
1691
+ },
1692
+ "indexType": "object",
1693
+ "kind": [
1694
+ "NON_NULL",
1695
+ "OBJECT"
1696
+ ],
1697
+ "name": "PolicyElementAudit",
1698
+ "non_null": false
1699
+ },
1700
+ "varName": "policyElementAudit"
1701
+ },
1702
+ "properties": {
1703
+ "alias": "policyElementPropertiesEnumProperties: properties",
1704
+ "args": {},
1705
+ "deprecationReason": null,
1706
+ "description": null,
1707
+ "id_str": "dynamicIpAllocation___policy___sections___properties",
1708
+ "isDeprecated": false,
1709
+ "name": "properties",
1710
+ "path": "dynamicIpAllocation.policy.sections.properties",
1711
+ "requestStr": "$properties:[PolicyElementPropertiesEnum]! ",
1712
+ "required": true,
1713
+ "responseStr": "properties:$properties ",
1714
+ "type": {
1715
+ "definition": {
1716
+ "description": "Attributes describing the rule state or type",
1717
+ "enumValues": [
1718
+ {
1719
+ "deprecationReason": null,
1720
+ "description": "New (added) rule",
1721
+ "isDeprecated": false,
1722
+ "name": "ADDED"
1723
+ },
1724
+ {
1725
+ "deprecationReason": null,
1726
+ "description": "Updated (modified) existing rule",
1727
+ "isDeprecated": false,
1728
+ "name": "UPDATED"
1729
+ },
1730
+ {
1731
+ "deprecationReason": null,
1732
+ "description": "Removed (deleted) rule",
1733
+ "isDeprecated": false,
1734
+ "name": "REMOVED"
1735
+ },
1736
+ {
1737
+ "deprecationReason": null,
1738
+ "description": "A rule moved to a different position",
1739
+ "isDeprecated": false,
1740
+ "name": "MOVED"
1741
+ },
1742
+ {
1743
+ "deprecationReason": null,
1744
+ "description": "A rule locked for changes by other admins",
1745
+ "isDeprecated": false,
1746
+ "name": "LOCKED"
1747
+ },
1748
+ {
1749
+ "deprecationReason": null,
1750
+ "description": "An object can not be moved, or referenced when moving other objects.\nHowever its properties and content can be modified.",
1751
+ "isDeprecated": false,
1752
+ "name": "ANCHORED"
1753
+ },
1754
+ {
1755
+ "deprecationReason": null,
1756
+ "description": "A pre-defined (system) rule that cannot be modified or removed",
1757
+ "isDeprecated": false,
1758
+ "name": "SYSTEM"
1759
+ }
1760
+ ],
1761
+ "fields": null,
1762
+ "inputFields": null,
1763
+ "interfaces": null,
1764
+ "kind": "ENUM",
1765
+ "name": "PolicyElementPropertiesEnum",
1766
+ "possibleTypes": null
1767
+ },
1768
+ "indexType": "enum",
1769
+ "kind": [
1770
+ "NON_NULL",
1771
+ "LIST",
1772
+ "NON_NULL",
1773
+ "ENUM"
1774
+ ],
1775
+ "name": "PolicyElementPropertiesEnum",
1776
+ "non_null": false
1777
+ },
1778
+ "varName": "properties"
1779
+ },
1780
+ "section": {
1781
+ "alias": "policySectionInfoSection: section",
1782
+ "args": {},
1783
+ "deprecationReason": null,
1784
+ "description": null,
1785
+ "id_str": "dynamicIpAllocation___policy___sections___section",
1786
+ "isDeprecated": false,
1787
+ "name": "section",
1788
+ "path": "dynamicIpAllocation.policy.sections.section",
1789
+ "requestStr": "$policySectionInfo:PolicySectionInfo! ",
1790
+ "required": true,
1791
+ "responseStr": "section:$policySectionInfo ",
1792
+ "type": {
1793
+ "definition": {
1794
+ "description": "Define settings for a policy section",
1795
+ "enumValues": null,
1796
+ "fields": {
1797
+ "id": {
1798
+ "args": {},
1799
+ "deprecationReason": null,
1800
+ "description": null,
1801
+ "id_str": "dynamicIpAllocation___policy___sections___section___id",
1802
+ "isDeprecated": false,
1803
+ "name": "id",
1804
+ "path": "dynamicIpAllocation.policy.sections.section.id",
1805
+ "requestStr": "$id:ID! ",
1806
+ "required": true,
1807
+ "responseStr": "id:$id ",
1808
+ "type": {
1809
+ "kind": [
1810
+ "NON_NULL",
1811
+ "SCALAR"
1812
+ ],
1813
+ "name": "ID",
1814
+ "non_null": false
1815
+ },
1816
+ "varName": "id"
1817
+ },
1818
+ "name": {
1819
+ "args": {},
1820
+ "deprecationReason": null,
1821
+ "description": null,
1822
+ "id_str": "dynamicIpAllocation___policy___sections___section___name",
1823
+ "isDeprecated": false,
1824
+ "name": "name",
1825
+ "path": "dynamicIpAllocation.policy.sections.section.name",
1826
+ "requestStr": "$name:String! ",
1827
+ "required": true,
1828
+ "responseStr": "name:$name ",
1829
+ "type": {
1830
+ "kind": [
1831
+ "NON_NULL",
1832
+ "SCALAR"
1833
+ ],
1834
+ "name": "String",
1835
+ "non_null": false
1836
+ },
1837
+ "varName": "name"
1838
+ }
1839
+ },
1840
+ "inputFields": null,
1841
+ "interfaces": {},
1842
+ "kind": "OBJECT",
1843
+ "name": "PolicySectionInfo",
1844
+ "possibleTypes": null
1845
+ },
1846
+ "indexType": "object",
1847
+ "kind": [
1848
+ "NON_NULL",
1849
+ "OBJECT"
1850
+ ],
1851
+ "name": "PolicySectionInfo",
1852
+ "non_null": false
1853
+ },
1854
+ "varName": "policySectionInfo"
1855
+ }
1856
+ },
1857
+ "inputFields": null,
1858
+ "interfaces": {},
1859
+ "kind": "OBJECT",
1860
+ "name": "PolicySectionPayload",
1861
+ "possibleTypes": null
1862
+ },
1863
+ "indexType": "object",
1864
+ "kind": [
1865
+ "NON_NULL",
1866
+ "LIST",
1867
+ "NON_NULL",
1868
+ "OBJECT"
1869
+ ],
1870
+ "name": "PolicySectionPayload",
1871
+ "non_null": false
1872
+ },
1873
+ "varName": "policySectionPayload"
1874
+ }
1875
+ },
1876
+ "inputFields": null,
1877
+ "interfaces": {},
1878
+ "kind": "OBJECT",
1879
+ "name": "DynamicIpAllocationPolicy",
1880
+ "possibleTypes": null
1881
+ },
1882
+ "indexType": "object",
1883
+ "kind": [
1884
+ "NON_NULL",
1885
+ "OBJECT"
1886
+ ],
1887
+ "name": "DynamicIpAllocationPolicy",
1888
+ "non_null": false
1889
+ },
1890
+ "varName": "dynamicIpAllocationPolicy"
1891
+ }
1892
+ },
1893
+ "inputFields": null,
1894
+ "interfaces": {},
1895
+ "kind": "OBJECT",
1896
+ "name": "DynamicIpAllocationPolicyQueries",
1897
+ "possibleTypes": null
1898
+ },
1899
+ "indexType": "object",
1900
+ "kind": [
1901
+ "OBJECT"
1902
+ ],
1903
+ "name": "DynamicIpAllocationPolicyQueries",
1904
+ "non_null": false
1905
+ },
1906
+ "varName": "dynamicIpAllocationPolicyQueries"
1907
+ }
1908
+ },
1909
+ "inputFields": null,
1910
+ "interfaces": [],
1911
+ "kind": "OBJECT",
1912
+ "name": "PolicyQueries",
1913
+ "possibleTypes": null
1914
+ },
1915
+ "indexType": "object",
1916
+ "kind": [
1917
+ "OBJECT"
1918
+ ],
1919
+ "name": "PolicyQueries",
1920
+ "non_null": false
1921
+ },
1922
+ "variablesPayload": {
1923
+ "dynamicIpAllocationPolicyInput": {
1924
+ "policyRevisionInput": {
1925
+ "id": {
1926
+ "id": "ID"
1927
+ },
1928
+ "type": {
1929
+ "type": "enum(PolicyRevisionType)"
1930
+ }
1931
+ }
1932
+ }
1933
+ }
1934
+ }