catocli 2.0.4__py3-none-any.whl → 2.1.0__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 (300) hide show
  1. catocli/Utils/clidriver.py +11 -4
  2. catocli/__init__.py +1 -1
  3. catocli/parsers/custom/export_sites/export_sites.py +20 -3
  4. catocli/parsers/custom/import_sites_to_tf/__init__.py +3 -1
  5. catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +71 -5
  6. catocli/parsers/mutation_accountManagement/__init__.py +13 -0
  7. catocli/parsers/mutation_accountManagement_disableAccount/README.md +16 -0
  8. catocli/parsers/mutation_container/__init__.py +116 -0
  9. catocli/parsers/mutation_container_fqdn/README.md +7 -0
  10. catocli/parsers/mutation_container_fqdn_addValues/README.md +17 -0
  11. catocli/parsers/mutation_container_fqdn_createFromFile/README.md +17 -0
  12. catocli/parsers/mutation_container_fqdn_removeValues/README.md +17 -0
  13. catocli/parsers/mutation_container_fqdn_updateFromFile/README.md +17 -0
  14. catocli/parsers/mutation_container_ipAddressRange/README.md +7 -0
  15. catocli/parsers/mutation_container_ipAddressRange_addValues/README.md +17 -0
  16. catocli/parsers/mutation_container_ipAddressRange_createFromFile/README.md +17 -0
  17. catocli/parsers/mutation_container_ipAddressRange_removeValues/README.md +17 -0
  18. catocli/parsers/mutation_container_ipAddressRange_updateFromFile/README.md +17 -0
  19. catocli/parsers/mutation_groups/README.md +7 -0
  20. catocli/parsers/mutation_groups/__init__.py +48 -0
  21. catocli/parsers/mutation_groups_createGroup/README.md +18 -0
  22. catocli/parsers/mutation_groups_deleteGroup/README.md +18 -0
  23. catocli/parsers/mutation_groups_updateGroup/README.md +18 -0
  24. catocli/parsers/mutation_policy_internetFirewall_addRule/README.md +1 -1
  25. catocli/parsers/mutation_policy_internetFirewall_updateRule/README.md +1 -1
  26. catocli/parsers/mutation_policy_wanFirewall_addRule/README.md +1 -1
  27. catocli/parsers/mutation_policy_wanFirewall_updateRule/README.md +1 -1
  28. catocli/parsers/mutation_site/__init__.py +104 -0
  29. catocli/parsers/mutation_site_assignSiteBwLicense/README.md +17 -0
  30. catocli/parsers/mutation_site_removeSecondaryAwsVSocket/README.md +17 -0
  31. catocli/parsers/mutation_site_removeSecondaryAzureVSocket/README.md +17 -0
  32. catocli/parsers/mutation_site_removeSiteBwLicense/README.md +17 -0
  33. catocli/parsers/mutation_site_replaceSiteBwLicense/README.md +17 -0
  34. catocli/parsers/mutation_site_updateSecondaryAwsVSocket/README.md +17 -0
  35. catocli/parsers/mutation_site_updateSecondaryAzureVSocket/README.md +17 -0
  36. catocli/parsers/mutation_site_updateSiteBwLicense/README.md +17 -0
  37. catocli/parsers/mutation_site_updateSiteGeneralDetails/README.md +1 -1
  38. catocli/parsers/mutation_sites/__init__.py +104 -0
  39. catocli/parsers/mutation_sites_assignSiteBwLicense/README.md +17 -0
  40. catocli/parsers/mutation_sites_removeSecondaryAwsVSocket/README.md +17 -0
  41. catocli/parsers/mutation_sites_removeSecondaryAzureVSocket/README.md +17 -0
  42. catocli/parsers/mutation_sites_removeSiteBwLicense/README.md +17 -0
  43. catocli/parsers/mutation_sites_replaceSiteBwLicense/README.md +17 -0
  44. catocli/parsers/mutation_sites_updateSecondaryAwsVSocket/README.md +17 -0
  45. catocli/parsers/mutation_sites_updateSecondaryAzureVSocket/README.md +17 -0
  46. catocli/parsers/mutation_sites_updateSiteBwLicense/README.md +17 -0
  47. catocli/parsers/mutation_sites_updateSiteGeneralDetails/README.md +1 -1
  48. catocli/parsers/parserApiClient.py +42 -19
  49. catocli/parsers/query_eventsFeed/README.md +1 -1
  50. catocli/parsers/query_groups/README.md +7 -0
  51. catocli/parsers/query_groups/__init__.py +54 -0
  52. catocli/parsers/query_groups_group/README.md +7 -0
  53. catocli/parsers/query_groups_groupList/README.md +18 -0
  54. catocli/parsers/query_groups_group_members/README.md +18 -0
  55. catocli/parsers/query_groups_whereUsed/README.md +17 -0
  56. catocli/parsers/query_policy/README.md +0 -17
  57. catocli/parsers/query_policy/__init__.py +153 -8
  58. catocli/parsers/query_policy_appTenantRestriction/README.md +7 -0
  59. catocli/parsers/query_policy_appTenantRestriction_policy/README.md +17 -0
  60. catocli/parsers/query_policy_dynamicIpAllocation/README.md +7 -0
  61. catocli/parsers/query_policy_dynamicIpAllocation_policy/README.md +17 -0
  62. catocli/parsers/query_policy_internetFirewall/README.md +7 -0
  63. catocli/parsers/query_policy_internetFirewall_policy/README.md +17 -0
  64. catocli/parsers/query_policy_remotePortFwd/README.md +7 -0
  65. catocli/parsers/query_policy_remotePortFwd_policy/README.md +17 -0
  66. catocli/parsers/query_policy_socketLan/README.md +7 -0
  67. catocli/parsers/query_policy_socketLan_policy/README.md +17 -0
  68. catocli/parsers/query_policy_terminalServer/README.md +7 -0
  69. catocli/parsers/query_policy_terminalServer_policy/README.md +17 -0
  70. catocli/parsers/query_policy_wanFirewall/README.md +7 -0
  71. catocli/parsers/query_policy_wanFirewall_policy/README.md +17 -0
  72. catocli/parsers/query_policy_wanNetwork/README.md +7 -0
  73. catocli/parsers/query_policy_wanNetwork_policy/README.md +17 -0
  74. catocli/parsers/query_popLocations/README.md +17 -0
  75. catocli/parsers/query_popLocations/__init__.py +16 -0
  76. catocli/parsers/query_site/README.md +0 -16
  77. catocli/parsers/query_site/__init__.py +118 -8
  78. catocli/parsers/query_site_availableVersionList/README.md +17 -0
  79. catocli/parsers/query_site_bgpPeer/README.md +17 -0
  80. catocli/parsers/query_site_bgpPeerList/README.md +17 -0
  81. catocli/parsers/query_site_cloudInterconnectConnectionConnectivity/README.md +17 -0
  82. catocli/parsers/query_site_cloudInterconnectPhysicalConnection/README.md +17 -0
  83. catocli/parsers/query_site_cloudInterconnectPhysicalConnectionId/README.md +17 -0
  84. catocli/parsers/query_site_secondaryAwsVSocket/README.md +17 -0
  85. catocli/parsers/query_site_secondaryAzureVSocket/README.md +17 -0
  86. catocli/parsers/query_site_siteBgpStatus/README.md +17 -0
  87. catocli/parsers/query_socketPortMetrics/README.md +23 -0
  88. catocli/parsers/query_socketPortMetrics/__init__.py +16 -0
  89. catocli/parsers/query_socketPortMetricsTimeSeries/README.md +24 -0
  90. catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +16 -0
  91. catocli/parsers/raw/README.md +0 -14
  92. catocli/parsers/raw/__init__.py +0 -2
  93. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/METADATA +3 -2
  94. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/RECORD +300 -178
  95. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/WHEEL +1 -1
  96. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/top_level.txt +0 -1
  97. graphql_client/api/call_api.py +4 -3
  98. models/mutation.accountManagement.addAccount.json +97 -0
  99. models/mutation.accountManagement.disableAccount.json +545 -0
  100. models/mutation.accountManagement.removeAccount.json +102 -3
  101. models/mutation.accountManagement.updateAccount.json +97 -0
  102. models/mutation.admin.addAdmin.json +6 -9
  103. models/mutation.container.delete.json +2 -2
  104. models/mutation.container.fqdn.addValues.json +866 -0
  105. models/mutation.container.fqdn.createFromFile.json +819 -0
  106. models/mutation.container.fqdn.removeValues.json +866 -0
  107. models/mutation.container.fqdn.updateFromFile.json +1045 -0
  108. models/mutation.container.ipAddressRange.addValues.json +1020 -0
  109. models/mutation.container.ipAddressRange.createFromFile.json +819 -0
  110. models/mutation.container.ipAddressRange.removeValues.json +1020 -0
  111. models/mutation.container.ipAddressRange.updateFromFile.json +1045 -0
  112. models/mutation.groups.createGroup.json +3178 -0
  113. models/mutation.groups.deleteGroup.json +2758 -0
  114. models/mutation.groups.updateGroup.json +4429 -0
  115. models/mutation.hardware.updateHardwareShipping.json +30 -10
  116. models/mutation.policy.appTenantRestriction.addRule.json +25 -25
  117. models/mutation.policy.appTenantRestriction.addSection.json +3 -3
  118. models/mutation.policy.appTenantRestriction.createPolicyRevision.json +31 -31
  119. models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +31 -31
  120. models/mutation.policy.appTenantRestriction.moveRule.json +25 -25
  121. models/mutation.policy.appTenantRestriction.moveSection.json +3 -3
  122. models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +31 -31
  123. models/mutation.policy.appTenantRestriction.removeRule.json +25 -25
  124. models/mutation.policy.appTenantRestriction.removeSection.json +3 -3
  125. models/mutation.policy.appTenantRestriction.updatePolicy.json +31 -31
  126. models/mutation.policy.appTenantRestriction.updateRule.json +25 -25
  127. models/mutation.policy.appTenantRestriction.updateSection.json +3 -3
  128. models/mutation.policy.dynamicIpAllocation.addRule.json +11 -11
  129. models/mutation.policy.dynamicIpAllocation.addSection.json +3 -3
  130. models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +17 -17
  131. models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +17 -17
  132. models/mutation.policy.dynamicIpAllocation.moveRule.json +11 -11
  133. models/mutation.policy.dynamicIpAllocation.moveSection.json +3 -3
  134. models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +17 -17
  135. models/mutation.policy.dynamicIpAllocation.removeRule.json +11 -11
  136. models/mutation.policy.dynamicIpAllocation.removeSection.json +3 -3
  137. models/mutation.policy.dynamicIpAllocation.updatePolicy.json +17 -17
  138. models/mutation.policy.dynamicIpAllocation.updateRule.json +11 -11
  139. models/mutation.policy.dynamicIpAllocation.updateSection.json +3 -3
  140. models/mutation.policy.internetFirewall.addRule.json +532 -85
  141. models/mutation.policy.internetFirewall.addSection.json +3 -3
  142. models/mutation.policy.internetFirewall.createPolicyRevision.json +208 -91
  143. models/mutation.policy.internetFirewall.discardPolicyRevision.json +208 -91
  144. models/mutation.policy.internetFirewall.moveRule.json +202 -85
  145. models/mutation.policy.internetFirewall.moveSection.json +3 -3
  146. models/mutation.policy.internetFirewall.publishPolicyRevision.json +208 -91
  147. models/mutation.policy.internetFirewall.removeRule.json +202 -85
  148. models/mutation.policy.internetFirewall.removeSection.json +3 -3
  149. models/mutation.policy.internetFirewall.updatePolicy.json +208 -91
  150. models/mutation.policy.internetFirewall.updateRule.json +523 -85
  151. models/mutation.policy.internetFirewall.updateSection.json +3 -3
  152. models/mutation.policy.remotePortFwd.addRule.json +16 -16
  153. models/mutation.policy.remotePortFwd.addSection.json +3 -3
  154. models/mutation.policy.remotePortFwd.createPolicyRevision.json +22 -22
  155. models/mutation.policy.remotePortFwd.discardPolicyRevision.json +22 -22
  156. models/mutation.policy.remotePortFwd.moveRule.json +16 -16
  157. models/mutation.policy.remotePortFwd.moveSection.json +3 -3
  158. models/mutation.policy.remotePortFwd.publishPolicyRevision.json +22 -22
  159. models/mutation.policy.remotePortFwd.removeRule.json +16 -16
  160. models/mutation.policy.remotePortFwd.removeSection.json +3 -3
  161. models/mutation.policy.remotePortFwd.updatePolicy.json +22 -22
  162. models/mutation.policy.remotePortFwd.updateRule.json +16 -16
  163. models/mutation.policy.remotePortFwd.updateSection.json +3 -3
  164. models/mutation.policy.socketLan.addRule.json +81 -81
  165. models/mutation.policy.socketLan.addSection.json +3 -3
  166. models/mutation.policy.socketLan.createPolicyRevision.json +87 -87
  167. models/mutation.policy.socketLan.discardPolicyRevision.json +87 -87
  168. models/mutation.policy.socketLan.moveRule.json +81 -81
  169. models/mutation.policy.socketLan.moveSection.json +3 -3
  170. models/mutation.policy.socketLan.publishPolicyRevision.json +87 -87
  171. models/mutation.policy.socketLan.removeRule.json +81 -81
  172. models/mutation.policy.socketLan.removeSection.json +3 -3
  173. models/mutation.policy.socketLan.updatePolicy.json +87 -87
  174. models/mutation.policy.socketLan.updateRule.json +81 -81
  175. models/mutation.policy.socketLan.updateSection.json +3 -3
  176. models/mutation.policy.terminalServer.addRule.json +6 -6
  177. models/mutation.policy.terminalServer.addSection.json +3 -3
  178. models/mutation.policy.terminalServer.createPolicyRevision.json +12 -12
  179. models/mutation.policy.terminalServer.discardPolicyRevision.json +12 -12
  180. models/mutation.policy.terminalServer.moveRule.json +6 -6
  181. models/mutation.policy.terminalServer.moveSection.json +3 -3
  182. models/mutation.policy.terminalServer.publishPolicyRevision.json +12 -12
  183. models/mutation.policy.terminalServer.removeRule.json +6 -6
  184. models/mutation.policy.terminalServer.removeSection.json +3 -3
  185. models/mutation.policy.terminalServer.updatePolicy.json +12 -12
  186. models/mutation.policy.terminalServer.updateRule.json +6 -6
  187. models/mutation.policy.terminalServer.updateSection.json +3 -3
  188. models/mutation.policy.wanFirewall.addRule.json +550 -103
  189. models/mutation.policy.wanFirewall.addSection.json +3 -3
  190. models/mutation.policy.wanFirewall.createPolicyRevision.json +226 -109
  191. models/mutation.policy.wanFirewall.discardPolicyRevision.json +226 -109
  192. models/mutation.policy.wanFirewall.moveRule.json +220 -103
  193. models/mutation.policy.wanFirewall.moveSection.json +3 -3
  194. models/mutation.policy.wanFirewall.publishPolicyRevision.json +226 -109
  195. models/mutation.policy.wanFirewall.removeRule.json +220 -103
  196. models/mutation.policy.wanFirewall.removeSection.json +3 -3
  197. models/mutation.policy.wanFirewall.updatePolicy.json +226 -109
  198. models/mutation.policy.wanFirewall.updateRule.json +541 -103
  199. models/mutation.policy.wanFirewall.updateSection.json +3 -3
  200. models/mutation.policy.wanNetwork.addRule.json +90 -90
  201. models/mutation.policy.wanNetwork.addSection.json +3 -3
  202. models/mutation.policy.wanNetwork.createPolicyRevision.json +96 -96
  203. models/mutation.policy.wanNetwork.discardPolicyRevision.json +96 -96
  204. models/mutation.policy.wanNetwork.moveRule.json +90 -90
  205. models/mutation.policy.wanNetwork.moveSection.json +3 -3
  206. models/mutation.policy.wanNetwork.publishPolicyRevision.json +96 -96
  207. models/mutation.policy.wanNetwork.removeRule.json +90 -90
  208. models/mutation.policy.wanNetwork.removeSection.json +3 -3
  209. models/mutation.policy.wanNetwork.updatePolicy.json +96 -96
  210. models/mutation.policy.wanNetwork.updateRule.json +90 -90
  211. models/mutation.policy.wanNetwork.updateSection.json +3 -3
  212. models/mutation.site.addBgpPeer.json +10 -10
  213. models/mutation.site.addIpsecIkeV2SiteTunnels.json +2 -2
  214. models/mutation.site.addSocketAddOnCard.json +2 -2
  215. models/mutation.site.assignSiteBwLicense.json +12879 -0
  216. models/mutation.site.removeBgpPeer.json +10 -10
  217. models/mutation.site.removeIpsecIkeV2SiteTunnels.json +2 -2
  218. models/mutation.site.removeSecondaryAwsVSocket.json +375 -0
  219. models/mutation.site.removeSecondaryAzureVSocket.json +354 -0
  220. models/mutation.site.removeSiteBwLicense.json +12822 -0
  221. models/mutation.site.removeSocketAddOnCard.json +2 -2
  222. models/mutation.site.replaceSiteBwLicense.json +12939 -0
  223. models/mutation.site.startSiteUpgrade.json +36 -15
  224. models/mutation.site.updateBgpPeer.json +10 -10
  225. models/mutation.site.updateIpsecIkeV2SiteTunnels.json +2 -2
  226. models/mutation.site.updateSecondaryAwsVSocket.json +643 -0
  227. models/mutation.site.updateSecondaryAzureVSocket.json +565 -0
  228. models/mutation.site.updateSiteBwLicense.json +12882 -0
  229. models/mutation.site.updateSiteGeneralDetails.json +724 -1
  230. models/mutation.sites.addBgpPeer.json +10 -10
  231. models/mutation.sites.addIpsecIkeV2SiteTunnels.json +2 -2
  232. models/mutation.sites.addSocketAddOnCard.json +2 -2
  233. models/mutation.sites.assignSiteBwLicense.json +12879 -0
  234. models/mutation.sites.removeBgpPeer.json +10 -10
  235. models/mutation.sites.removeIpsecIkeV2SiteTunnels.json +2 -2
  236. models/mutation.sites.removeSecondaryAwsVSocket.json +375 -0
  237. models/mutation.sites.removeSecondaryAzureVSocket.json +354 -0
  238. models/mutation.sites.removeSiteBwLicense.json +12822 -0
  239. models/mutation.sites.removeSocketAddOnCard.json +2 -2
  240. models/mutation.sites.replaceSiteBwLicense.json +12939 -0
  241. models/mutation.sites.startSiteUpgrade.json +36 -15
  242. models/mutation.sites.updateBgpPeer.json +10 -10
  243. models/mutation.sites.updateIpsecIkeV2SiteTunnels.json +2 -2
  244. models/mutation.sites.updateSecondaryAwsVSocket.json +643 -0
  245. models/mutation.sites.updateSecondaryAzureVSocket.json +565 -0
  246. models/mutation.sites.updateSiteBwLicense.json +12882 -0
  247. models/mutation.sites.updateSiteGeneralDetails.json +724 -1
  248. models/mutation.xdr.addStoryComment.json +1 -1
  249. models/mutation.xdr.analystFeedback.json +84 -84
  250. models/mutation.xdr.deleteStoryComment.json +1 -1
  251. models/query.accountManagement.json +97 -0
  252. models/query.accountMetrics.json +45 -45
  253. models/query.accountSnapshot.json +30 -30
  254. models/query.admin.json +6 -6
  255. models/query.admins.json +13 -13
  256. models/query.appStats.json +915 -867
  257. models/query.appStatsTimeSeries.json +692 -656
  258. models/query.auditFeed.json +6 -6
  259. models/query.catalogs.json +52 -52
  260. models/query.container.json +16 -16
  261. models/query.devices.json +20 -93
  262. models/query.entityLookup.json +2 -2
  263. models/query.events.json +288 -384
  264. models/query.eventsFeed.json +73 -97
  265. models/query.eventsTimeSeries.json +219 -291
  266. models/query.groups.group.members.json +3058 -0
  267. models/query.groups.groupList.json +6474 -0
  268. models/query.groups.whereUsed.json +697 -0
  269. models/query.hardware.json +27 -7
  270. models/query.hardwareManagement.json +8 -8
  271. models/query.licensing.json +3487 -1324
  272. models/query.policy.appTenantRestriction.policy.json +3086 -0
  273. models/query.policy.dynamicIpAllocation.policy.json +1934 -0
  274. models/query.policy.internetFirewall.policy.json +7833 -0
  275. models/query.policy.json +233 -0
  276. models/query.policy.remotePortFwd.policy.json +2387 -0
  277. models/query.policy.socketLan.policy.json +7140 -0
  278. models/query.policy.terminalServer.policy.json +1632 -0
  279. models/query.policy.wanFirewall.policy.json +9212 -0
  280. models/query.policy.wanNetwork.policy.json +8010 -0
  281. models/query.popLocations.json +2878 -0
  282. models/query.sandbox.json +5 -5
  283. models/query.site.availableVersionList.json +365 -0
  284. models/query.site.bgpPeer.json +1917 -0
  285. models/query.site.bgpPeerList.json +2076 -0
  286. models/query.site.cloudInterconnectConnectionConnectivity.json +298 -0
  287. models/query.site.cloudInterconnectPhysicalConnection.json +728 -0
  288. models/query.site.cloudInterconnectPhysicalConnectionId.json +660 -0
  289. models/query.site.secondaryAwsVSocket.json +340 -0
  290. models/query.site.secondaryAzureVSocket.json +319 -0
  291. models/query.site.siteBgpStatus.json +869 -0
  292. models/query.socketPortMetrics.json +2410 -0
  293. models/query.socketPortMetricsTimeSeries.json +2361 -0
  294. models/query.xdr.stories.json +104 -104
  295. models/query.xdr.story.json +93 -93
  296. schema/catolib.py +34 -18
  297. schema/remove_policyid.py +89 -0
  298. schema/remove_policyid_mutations.py +89 -0
  299. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/entry_points.txt +0 -0
  300. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info/licenses}/LICENSE +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": "auditDynamicIpAllocationPolicy: 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": "revisionDynamicIpAllocationPolicy: 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": "rulesDynamicIpAllocationPolicy: 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": "auditDynamicIpAllocationRulePayload: 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": "propertiesDynamicIpAllocationRulePayload: 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": "ruleDynamicIpAllocationRulePayload: 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": "countryDynamicIpAllocationRule: 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": "platformDynamicIpAllocationRule: 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": "rangeDynamicIpAllocationRule: 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": "globalIpRangeDynamicIpAllocationRange: 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": "sectionDynamicIpAllocationRule: 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": "sourceDynamicIpAllocationRule: 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": "userDynamicIpAllocationSource: 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": "usersGroupDynamicIpAllocationSource: 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": "sectionsDynamicIpAllocationPolicy: 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": "auditPolicySectionPayload: 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": "propertiesPolicySectionPayload: 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": "sectionPolicySectionPayload: 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
+ }