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,1020 @@
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
+ "addValues": {
25
+ "args": {
26
+ "addValues___input": {
27
+ "defaultValue": null,
28
+ "description": null,
29
+ "id_str": "addValues___input",
30
+ "name": "input",
31
+ "path": "addValues.input",
32
+ "requestStr": "$ipAddressRangeContainerAddValuesInput:IpAddressRangeContainerAddValuesInput! ",
33
+ "required": true,
34
+ "responseStr": "input:$ipAddressRangeContainerAddValuesInput ",
35
+ "type": {
36
+ "definition": {
37
+ "description": "Input for adding values to existing IPAddressRange typed container",
38
+ "enumValues": null,
39
+ "fields": null,
40
+ "inputFields": {
41
+ "ref": {
42
+ "defaultValue": null,
43
+ "description": "Reference to existing container by container ID or container name",
44
+ "id_str": "addValues___input___ref",
45
+ "name": "ref",
46
+ "path": "addValues.input.ref",
47
+ "requestStr": "$containerRefInput:ContainerRefInput! ",
48
+ "required": true,
49
+ "responseStr": "ref:$containerRefInput ",
50
+ "type": {
51
+ "definition": {
52
+ "description": "Add a container by ID or name",
53
+ "enumValues": null,
54
+ "fields": null,
55
+ "inputFields": {
56
+ "by": {
57
+ "defaultValue": "ID",
58
+ "description": "Defines the object identification method \u2013 by ID (default) or by name",
59
+ "id_str": "addValues___input___ref___by",
60
+ "name": "by",
61
+ "path": "addValues.input.ref.by",
62
+ "requestStr": "$by:ObjectRefBy! ",
63
+ "required": true,
64
+ "responseStr": "by:$by ",
65
+ "type": {
66
+ "definition": {
67
+ "description": null,
68
+ "enumValues": [
69
+ {
70
+ "deprecationReason": null,
71
+ "description": null,
72
+ "isDeprecated": false,
73
+ "name": "ID"
74
+ },
75
+ {
76
+ "deprecationReason": null,
77
+ "description": null,
78
+ "isDeprecated": false,
79
+ "name": "NAME"
80
+ }
81
+ ],
82
+ "fields": null,
83
+ "inputFields": null,
84
+ "interfaces": null,
85
+ "kind": "ENUM",
86
+ "name": "ObjectRefBy",
87
+ "possibleTypes": null
88
+ },
89
+ "indexType": "enum",
90
+ "kind": [
91
+ "NON_NULL",
92
+ "ENUM"
93
+ ],
94
+ "name": "ObjectRefBy",
95
+ "non_null": false
96
+ },
97
+ "varName": "by"
98
+ },
99
+ "input": {
100
+ "defaultValue": null,
101
+ "description": "The object identification (ID or name) value",
102
+ "id_str": "addValues___input___ref___input",
103
+ "name": "input",
104
+ "path": "addValues.input.ref.input",
105
+ "requestStr": "$input:String! ",
106
+ "required": true,
107
+ "responseStr": "input:$input ",
108
+ "type": {
109
+ "kind": [
110
+ "NON_NULL",
111
+ "SCALAR"
112
+ ],
113
+ "name": "String",
114
+ "non_null": false
115
+ },
116
+ "varName": "input"
117
+ }
118
+ },
119
+ "interfaces": null,
120
+ "kind": "INPUT_OBJECT",
121
+ "name": "ContainerRefInput",
122
+ "possibleTypes": null
123
+ },
124
+ "indexType": "input_object",
125
+ "kind": [
126
+ "NON_NULL",
127
+ "INPUT_OBJECT"
128
+ ],
129
+ "name": "ContainerRefInput",
130
+ "non_null": false
131
+ },
132
+ "varName": "containerRefInput"
133
+ },
134
+ "values": {
135
+ "defaultValue": "[]",
136
+ "description": null,
137
+ "id_str": "addValues___input___values",
138
+ "name": "values",
139
+ "path": "addValues.input.values",
140
+ "requestStr": "$ipAddressRangeInput:[IpAddressRangeInput]! ",
141
+ "required": true,
142
+ "responseStr": "values:$ipAddressRangeInput ",
143
+ "type": {
144
+ "definition": {
145
+ "description": "Inclusive range of IPs",
146
+ "enumValues": null,
147
+ "fields": null,
148
+ "inputFields": {
149
+ "from": {
150
+ "defaultValue": null,
151
+ "description": null,
152
+ "id_str": "addValues___input___values___from",
153
+ "name": "from",
154
+ "path": "addValues.input.values.from",
155
+ "requestStr": "$from:IPAddress! ",
156
+ "required": true,
157
+ "responseStr": "from:$from ",
158
+ "type": {
159
+ "kind": [
160
+ "NON_NULL",
161
+ "SCALAR"
162
+ ],
163
+ "name": "IPAddress",
164
+ "non_null": false
165
+ },
166
+ "varName": "from"
167
+ },
168
+ "to": {
169
+ "defaultValue": null,
170
+ "description": null,
171
+ "id_str": "addValues___input___values___to",
172
+ "name": "to",
173
+ "path": "addValues.input.values.to",
174
+ "requestStr": "$to:IPAddress! ",
175
+ "required": true,
176
+ "responseStr": "to:$to ",
177
+ "type": {
178
+ "kind": [
179
+ "NON_NULL",
180
+ "SCALAR"
181
+ ],
182
+ "name": "IPAddress",
183
+ "non_null": false
184
+ },
185
+ "varName": "to"
186
+ }
187
+ },
188
+ "interfaces": null,
189
+ "kind": "INPUT_OBJECT",
190
+ "name": "IpAddressRangeInput",
191
+ "possibleTypes": null
192
+ },
193
+ "indexType": "input_object",
194
+ "kind": [
195
+ "NON_NULL",
196
+ "LIST",
197
+ "NON_NULL",
198
+ "INPUT_OBJECT"
199
+ ],
200
+ "name": "IpAddressRangeInput",
201
+ "non_null": false
202
+ },
203
+ "varName": "ipAddressRangeInput"
204
+ }
205
+ },
206
+ "interfaces": null,
207
+ "kind": "INPUT_OBJECT",
208
+ "name": "IpAddressRangeContainerAddValuesInput",
209
+ "possibleTypes": null
210
+ },
211
+ "indexType": "input_object",
212
+ "kind": [
213
+ "NON_NULL",
214
+ "INPUT_OBJECT"
215
+ ],
216
+ "name": "IpAddressRangeContainerAddValuesInput",
217
+ "non_null": false
218
+ },
219
+ "varName": "ipAddressRangeContainerAddValuesInput"
220
+ }
221
+ },
222
+ "deprecationReason": null,
223
+ "description": null,
224
+ "isDeprecated": false,
225
+ "name": "addValues",
226
+ "type": {
227
+ "kind": "NON_NULL",
228
+ "name": null,
229
+ "ofType": {
230
+ "kind": "OBJECT",
231
+ "name": "IpAddressRangeContainerAddValuesPayload",
232
+ "ofType": null
233
+ }
234
+ }
235
+ },
236
+ "ipAddressRange": {
237
+ "args": {},
238
+ "deprecationReason": null,
239
+ "description": null,
240
+ "isDeprecated": false,
241
+ "name": "ipAddressRange",
242
+ "type": {
243
+ "kind": "NON_NULL",
244
+ "name": null,
245
+ "ofType": {
246
+ "kind": "OBJECT",
247
+ "name": "IpAddressRangeContainerMutations",
248
+ "ofType": null
249
+ }
250
+ }
251
+ }
252
+ },
253
+ "deprecationReason": null,
254
+ "description": null,
255
+ "fieldTypes": {
256
+ "ContainerAudit": true,
257
+ "ContainerRefInput": true,
258
+ "IpAddressRangeContainer": true,
259
+ "IpAddressRangeContainerAddValuesPayload": true,
260
+ "IpAddressRangeContainerMutations": true,
261
+ "IpAddressRangeInput": true,
262
+ "ObjectRefBy": true
263
+ },
264
+ "isDeprecated": false,
265
+ "name": "container",
266
+ "operationArgs": {
267
+ "accountId": {
268
+ "defaultValue": null,
269
+ "description": null,
270
+ "id_str": "accountId",
271
+ "name": "accountId",
272
+ "path": "accountId",
273
+ "requestStr": "$accountId:ID! ",
274
+ "required": true,
275
+ "responseStr": "accountId:$accountId ",
276
+ "type": {
277
+ "kind": [
278
+ "NON_NULL",
279
+ "SCALAR"
280
+ ],
281
+ "name": "ID",
282
+ "non_null": false
283
+ },
284
+ "varName": "accountId"
285
+ },
286
+ "ipAddressRangeContainerAddValuesInput": {
287
+ "defaultValue": null,
288
+ "description": null,
289
+ "id_str": "addValues___input",
290
+ "name": "input",
291
+ "path": "addValues.input",
292
+ "requestStr": "$ipAddressRangeContainerAddValuesInput:IpAddressRangeContainerAddValuesInput! ",
293
+ "required": true,
294
+ "responseStr": "input:$ipAddressRangeContainerAddValuesInput ",
295
+ "type": {
296
+ "definition": {
297
+ "description": "Input for adding values to existing IPAddressRange typed container",
298
+ "enumValues": null,
299
+ "fields": null,
300
+ "inputFields": {
301
+ "ref": {
302
+ "defaultValue": null,
303
+ "description": "Reference to existing container by container ID or container name",
304
+ "id_str": "addValues___input___ref",
305
+ "name": "ref",
306
+ "path": "addValues.input.ref",
307
+ "requestStr": "$containerRefInput:ContainerRefInput! ",
308
+ "required": true,
309
+ "responseStr": "ref:$containerRefInput ",
310
+ "type": {
311
+ "definition": {
312
+ "description": "Add a container by ID or name",
313
+ "enumValues": null,
314
+ "fields": null,
315
+ "inputFields": {
316
+ "by": {
317
+ "defaultValue": "ID",
318
+ "description": "Defines the object identification method \u2013 by ID (default) or by name",
319
+ "id_str": "addValues___input___ref___by",
320
+ "name": "by",
321
+ "path": "addValues.input.ref.by",
322
+ "requestStr": "$by:ObjectRefBy! ",
323
+ "required": true,
324
+ "responseStr": "by:$by ",
325
+ "type": {
326
+ "definition": {
327
+ "description": null,
328
+ "enumValues": [
329
+ {
330
+ "deprecationReason": null,
331
+ "description": null,
332
+ "isDeprecated": false,
333
+ "name": "ID"
334
+ },
335
+ {
336
+ "deprecationReason": null,
337
+ "description": null,
338
+ "isDeprecated": false,
339
+ "name": "NAME"
340
+ }
341
+ ],
342
+ "fields": null,
343
+ "inputFields": null,
344
+ "interfaces": null,
345
+ "kind": "ENUM",
346
+ "name": "ObjectRefBy",
347
+ "possibleTypes": null
348
+ },
349
+ "indexType": "enum",
350
+ "kind": [
351
+ "NON_NULL",
352
+ "ENUM"
353
+ ],
354
+ "name": "ObjectRefBy",
355
+ "non_null": false
356
+ },
357
+ "varName": "by"
358
+ },
359
+ "input": {
360
+ "defaultValue": null,
361
+ "description": "The object identification (ID or name) value",
362
+ "id_str": "addValues___input___ref___input",
363
+ "name": "input",
364
+ "path": "addValues.input.ref.input",
365
+ "requestStr": "$input:String! ",
366
+ "required": true,
367
+ "responseStr": "input:$input ",
368
+ "type": {
369
+ "kind": [
370
+ "NON_NULL",
371
+ "SCALAR"
372
+ ],
373
+ "name": "String",
374
+ "non_null": false
375
+ },
376
+ "varName": "input"
377
+ }
378
+ },
379
+ "interfaces": null,
380
+ "kind": "INPUT_OBJECT",
381
+ "name": "ContainerRefInput",
382
+ "possibleTypes": null
383
+ },
384
+ "indexType": "input_object",
385
+ "kind": [
386
+ "NON_NULL",
387
+ "INPUT_OBJECT"
388
+ ],
389
+ "name": "ContainerRefInput",
390
+ "non_null": false
391
+ },
392
+ "varName": "containerRefInput"
393
+ },
394
+ "values": {
395
+ "defaultValue": "[]",
396
+ "description": null,
397
+ "id_str": "addValues___input___values",
398
+ "name": "values",
399
+ "path": "addValues.input.values",
400
+ "requestStr": "$ipAddressRangeInput:[IpAddressRangeInput]! ",
401
+ "required": true,
402
+ "responseStr": "values:$ipAddressRangeInput ",
403
+ "type": {
404
+ "definition": {
405
+ "description": "Inclusive range of IPs",
406
+ "enumValues": null,
407
+ "fields": null,
408
+ "inputFields": {
409
+ "from": {
410
+ "defaultValue": null,
411
+ "description": null,
412
+ "id_str": "addValues___input___values___from",
413
+ "name": "from",
414
+ "path": "addValues.input.values.from",
415
+ "requestStr": "$from:IPAddress! ",
416
+ "required": true,
417
+ "responseStr": "from:$from ",
418
+ "type": {
419
+ "kind": [
420
+ "NON_NULL",
421
+ "SCALAR"
422
+ ],
423
+ "name": "IPAddress",
424
+ "non_null": false
425
+ },
426
+ "varName": "from"
427
+ },
428
+ "to": {
429
+ "defaultValue": null,
430
+ "description": null,
431
+ "id_str": "addValues___input___values___to",
432
+ "name": "to",
433
+ "path": "addValues.input.values.to",
434
+ "requestStr": "$to:IPAddress! ",
435
+ "required": true,
436
+ "responseStr": "to:$to ",
437
+ "type": {
438
+ "kind": [
439
+ "NON_NULL",
440
+ "SCALAR"
441
+ ],
442
+ "name": "IPAddress",
443
+ "non_null": false
444
+ },
445
+ "varName": "to"
446
+ }
447
+ },
448
+ "interfaces": null,
449
+ "kind": "INPUT_OBJECT",
450
+ "name": "IpAddressRangeInput",
451
+ "possibleTypes": null
452
+ },
453
+ "indexType": "input_object",
454
+ "kind": [
455
+ "NON_NULL",
456
+ "LIST",
457
+ "NON_NULL",
458
+ "INPUT_OBJECT"
459
+ ],
460
+ "name": "IpAddressRangeInput",
461
+ "non_null": false
462
+ },
463
+ "varName": "ipAddressRangeInput"
464
+ }
465
+ },
466
+ "interfaces": null,
467
+ "kind": "INPUT_OBJECT",
468
+ "name": "IpAddressRangeContainerAddValuesInput",
469
+ "possibleTypes": null
470
+ },
471
+ "indexType": "input_object",
472
+ "kind": [
473
+ "NON_NULL",
474
+ "INPUT_OBJECT"
475
+ ],
476
+ "name": "IpAddressRangeContainerAddValuesInput",
477
+ "non_null": false
478
+ },
479
+ "varName": "ipAddressRangeContainerAddValuesInput"
480
+ }
481
+ },
482
+ "path": "mutation.container.ipAddressRange.addValues",
483
+ "type": {
484
+ "definition": {
485
+ "description": null,
486
+ "enumValues": null,
487
+ "fields": {
488
+ "ipAddressRange": {
489
+ "args": {},
490
+ "deprecationReason": null,
491
+ "description": null,
492
+ "id_str": "ipAddressRange",
493
+ "isDeprecated": false,
494
+ "name": "ipAddressRange",
495
+ "path": "ipAddressRange",
496
+ "requestStr": "$ipAddressRangeContainerMutations:IpAddressRangeContainerMutations! ",
497
+ "required": true,
498
+ "responseStr": "ipAddressRange:$ipAddressRangeContainerMutations ",
499
+ "type": {
500
+ "definition": {
501
+ "description": null,
502
+ "enumValues": null,
503
+ "fields": {
504
+ "addValues": {
505
+ "alias": "addValuesIpAddressRangeContainerMutations: addValues",
506
+ "args": {
507
+ "addValues___input": {
508
+ "defaultValue": null,
509
+ "description": null,
510
+ "id_str": "addValues___input",
511
+ "name": "input",
512
+ "path": "addValues.input",
513
+ "requestStr": "$ipAddressRangeContainerAddValuesInput:IpAddressRangeContainerAddValuesInput! ",
514
+ "required": true,
515
+ "responseStr": "input:$ipAddressRangeContainerAddValuesInput ",
516
+ "type": {
517
+ "definition": {
518
+ "description": "Input for adding values to existing IPAddressRange typed container",
519
+ "enumValues": null,
520
+ "fields": null,
521
+ "inputFields": {
522
+ "ref": {
523
+ "defaultValue": null,
524
+ "description": "Reference to existing container by container ID or container name",
525
+ "id_str": "addValues___input___ref",
526
+ "name": "ref",
527
+ "path": "addValues.input.ref",
528
+ "requestStr": "$containerRefInput:ContainerRefInput! ",
529
+ "required": true,
530
+ "responseStr": "ref:$containerRefInput ",
531
+ "type": {
532
+ "definition": {
533
+ "description": "Add a container by ID or name",
534
+ "enumValues": null,
535
+ "fields": null,
536
+ "inputFields": {
537
+ "by": {
538
+ "defaultValue": "ID",
539
+ "description": "Defines the object identification method \u2013 by ID (default) or by name",
540
+ "id_str": "addValues___input___ref___by",
541
+ "name": "by",
542
+ "path": "addValues.input.ref.by",
543
+ "requestStr": "$by:ObjectRefBy! ",
544
+ "required": true,
545
+ "responseStr": "by:$by ",
546
+ "type": {
547
+ "definition": {
548
+ "description": null,
549
+ "enumValues": [
550
+ {
551
+ "deprecationReason": null,
552
+ "description": null,
553
+ "isDeprecated": false,
554
+ "name": "ID"
555
+ },
556
+ {
557
+ "deprecationReason": null,
558
+ "description": null,
559
+ "isDeprecated": false,
560
+ "name": "NAME"
561
+ }
562
+ ],
563
+ "fields": null,
564
+ "inputFields": null,
565
+ "interfaces": null,
566
+ "kind": "ENUM",
567
+ "name": "ObjectRefBy",
568
+ "possibleTypes": null
569
+ },
570
+ "indexType": "enum",
571
+ "kind": [
572
+ "NON_NULL",
573
+ "ENUM"
574
+ ],
575
+ "name": "ObjectRefBy",
576
+ "non_null": false
577
+ },
578
+ "varName": "by"
579
+ },
580
+ "input": {
581
+ "defaultValue": null,
582
+ "description": "The object identification (ID or name) value",
583
+ "id_str": "addValues___input___ref___input",
584
+ "name": "input",
585
+ "path": "addValues.input.ref.input",
586
+ "requestStr": "$input:String! ",
587
+ "required": true,
588
+ "responseStr": "input:$input ",
589
+ "type": {
590
+ "kind": [
591
+ "NON_NULL",
592
+ "SCALAR"
593
+ ],
594
+ "name": "String",
595
+ "non_null": false
596
+ },
597
+ "varName": "input"
598
+ }
599
+ },
600
+ "interfaces": null,
601
+ "kind": "INPUT_OBJECT",
602
+ "name": "ContainerRefInput",
603
+ "possibleTypes": null
604
+ },
605
+ "indexType": "input_object",
606
+ "kind": [
607
+ "NON_NULL",
608
+ "INPUT_OBJECT"
609
+ ],
610
+ "name": "ContainerRefInput",
611
+ "non_null": false
612
+ },
613
+ "varName": "containerRefInput"
614
+ },
615
+ "values": {
616
+ "defaultValue": "[]",
617
+ "description": null,
618
+ "id_str": "addValues___input___values",
619
+ "name": "values",
620
+ "path": "addValues.input.values",
621
+ "requestStr": "$ipAddressRangeInput:[IpAddressRangeInput]! ",
622
+ "required": true,
623
+ "responseStr": "values:$ipAddressRangeInput ",
624
+ "type": {
625
+ "definition": {
626
+ "description": "Inclusive range of IPs",
627
+ "enumValues": null,
628
+ "fields": null,
629
+ "inputFields": {
630
+ "from": {
631
+ "defaultValue": null,
632
+ "description": null,
633
+ "id_str": "addValues___input___values___from",
634
+ "name": "from",
635
+ "path": "addValues.input.values.from",
636
+ "requestStr": "$from:IPAddress! ",
637
+ "required": true,
638
+ "responseStr": "from:$from ",
639
+ "type": {
640
+ "kind": [
641
+ "NON_NULL",
642
+ "SCALAR"
643
+ ],
644
+ "name": "IPAddress",
645
+ "non_null": false
646
+ },
647
+ "varName": "from"
648
+ },
649
+ "to": {
650
+ "defaultValue": null,
651
+ "description": null,
652
+ "id_str": "addValues___input___values___to",
653
+ "name": "to",
654
+ "path": "addValues.input.values.to",
655
+ "requestStr": "$to:IPAddress! ",
656
+ "required": true,
657
+ "responseStr": "to:$to ",
658
+ "type": {
659
+ "kind": [
660
+ "NON_NULL",
661
+ "SCALAR"
662
+ ],
663
+ "name": "IPAddress",
664
+ "non_null": false
665
+ },
666
+ "varName": "to"
667
+ }
668
+ },
669
+ "interfaces": null,
670
+ "kind": "INPUT_OBJECT",
671
+ "name": "IpAddressRangeInput",
672
+ "possibleTypes": null
673
+ },
674
+ "indexType": "input_object",
675
+ "kind": [
676
+ "NON_NULL",
677
+ "LIST",
678
+ "NON_NULL",
679
+ "INPUT_OBJECT"
680
+ ],
681
+ "name": "IpAddressRangeInput",
682
+ "non_null": false
683
+ },
684
+ "varName": "ipAddressRangeInput"
685
+ }
686
+ },
687
+ "interfaces": null,
688
+ "kind": "INPUT_OBJECT",
689
+ "name": "IpAddressRangeContainerAddValuesInput",
690
+ "possibleTypes": null
691
+ },
692
+ "indexType": "input_object",
693
+ "kind": [
694
+ "NON_NULL",
695
+ "INPUT_OBJECT"
696
+ ],
697
+ "name": "IpAddressRangeContainerAddValuesInput",
698
+ "non_null": false
699
+ },
700
+ "varName": "ipAddressRangeContainerAddValuesInput"
701
+ }
702
+ },
703
+ "deprecationReason": null,
704
+ "description": null,
705
+ "id_str": "ipAddressRange___addValues",
706
+ "isDeprecated": false,
707
+ "name": "addValues",
708
+ "path": "ipAddressRange.addValues",
709
+ "requestStr": "$ipAddressRangeContainerAddValuesPayload:IpAddressRangeContainerAddValuesPayload! ",
710
+ "required": true,
711
+ "responseStr": "addValues:$ipAddressRangeContainerAddValuesPayload ",
712
+ "type": {
713
+ "definition": {
714
+ "description": "Payload of AddValues operation on IPAddressRange typed container",
715
+ "enumValues": null,
716
+ "fields": {
717
+ "container": {
718
+ "alias": "containerIpAddressRangeContainerAddValuesPayload: container",
719
+ "args": {},
720
+ "deprecationReason": null,
721
+ "description": "Container with members of type IPAddressRange",
722
+ "id_str": "ipAddressRange___addValues___container",
723
+ "isDeprecated": false,
724
+ "name": "container",
725
+ "path": "ipAddressRange.addValues.container",
726
+ "requestStr": "$ipAddressRangeContainer:IpAddressRangeContainer! ",
727
+ "required": true,
728
+ "responseStr": "container:$ipAddressRangeContainer ",
729
+ "type": {
730
+ "definition": {
731
+ "description": "A group with members of IPAddressRange type",
732
+ "enumValues": null,
733
+ "fields": {
734
+ "audit": {
735
+ "alias": "auditIpAddressRangeContainer: audit",
736
+ "args": {},
737
+ "deprecationReason": null,
738
+ "description": "Audit metadata about the container",
739
+ "id_str": "ipAddressRange___addValues___container___audit",
740
+ "isDeprecated": false,
741
+ "name": "audit",
742
+ "path": "ipAddressRange.addValues.container.audit",
743
+ "requestStr": "$containerAudit:ContainerAudit! ",
744
+ "required": true,
745
+ "responseStr": "audit:$containerAudit ",
746
+ "type": {
747
+ "definition": {
748
+ "description": "Audit metadata about the container",
749
+ "enumValues": null,
750
+ "fields": {
751
+ "createdAt": {
752
+ "args": {},
753
+ "deprecationReason": null,
754
+ "description": "Indicates when the container was created",
755
+ "id_str": "ipAddressRange___addValues___container___audit___createdAt",
756
+ "isDeprecated": false,
757
+ "name": "createdAt",
758
+ "path": "ipAddressRange.addValues.container.audit.createdAt",
759
+ "requestStr": "$createdAt:DateTime! ",
760
+ "required": true,
761
+ "responseStr": "createdAt:$createdAt ",
762
+ "type": {
763
+ "kind": [
764
+ "NON_NULL",
765
+ "SCALAR"
766
+ ],
767
+ "name": "DateTime",
768
+ "non_null": false
769
+ },
770
+ "varName": "createdAt"
771
+ },
772
+ "createdBy": {
773
+ "args": {},
774
+ "deprecationReason": null,
775
+ "description": "Indicates who created the container",
776
+ "id_str": "ipAddressRange___addValues___container___audit___createdBy",
777
+ "isDeprecated": false,
778
+ "name": "createdBy",
779
+ "path": "ipAddressRange.addValues.container.audit.createdBy",
780
+ "requestStr": "$createdBy:String! ",
781
+ "required": true,
782
+ "responseStr": "createdBy:$createdBy ",
783
+ "type": {
784
+ "kind": [
785
+ "NON_NULL",
786
+ "SCALAR"
787
+ ],
788
+ "name": "String",
789
+ "non_null": false
790
+ },
791
+ "varName": "createdBy"
792
+ },
793
+ "lastModifiedAt": {
794
+ "args": {},
795
+ "deprecationReason": null,
796
+ "description": "Indicated when the container was last updated",
797
+ "id_str": "ipAddressRange___addValues___container___audit___lastModifiedAt",
798
+ "isDeprecated": false,
799
+ "name": "lastModifiedAt",
800
+ "path": "ipAddressRange.addValues.container.audit.lastModifiedAt",
801
+ "requestStr": "$lastModifiedAt:DateTime! ",
802
+ "required": true,
803
+ "responseStr": "lastModifiedAt:$lastModifiedAt ",
804
+ "type": {
805
+ "kind": [
806
+ "NON_NULL",
807
+ "SCALAR"
808
+ ],
809
+ "name": "DateTime",
810
+ "non_null": false
811
+ },
812
+ "varName": "lastModifiedAt"
813
+ },
814
+ "lastModifiedBy": {
815
+ "args": {},
816
+ "deprecationReason": null,
817
+ "description": "Indicates who was the last to update the container",
818
+ "id_str": "ipAddressRange___addValues___container___audit___lastModifiedBy",
819
+ "isDeprecated": false,
820
+ "name": "lastModifiedBy",
821
+ "path": "ipAddressRange.addValues.container.audit.lastModifiedBy",
822
+ "requestStr": "$lastModifiedBy:String! ",
823
+ "required": true,
824
+ "responseStr": "lastModifiedBy:$lastModifiedBy ",
825
+ "type": {
826
+ "kind": [
827
+ "NON_NULL",
828
+ "SCALAR"
829
+ ],
830
+ "name": "String",
831
+ "non_null": false
832
+ },
833
+ "varName": "lastModifiedBy"
834
+ }
835
+ },
836
+ "inputFields": null,
837
+ "interfaces": {},
838
+ "kind": "OBJECT",
839
+ "name": "ContainerAudit",
840
+ "possibleTypes": null
841
+ },
842
+ "indexType": "object",
843
+ "kind": [
844
+ "NON_NULL",
845
+ "OBJECT"
846
+ ],
847
+ "name": "ContainerAudit",
848
+ "non_null": false
849
+ },
850
+ "varName": "containerAudit"
851
+ },
852
+ "description": {
853
+ "args": {},
854
+ "deprecationReason": null,
855
+ "description": "Description for the container",
856
+ "id_str": "ipAddressRange___addValues___container___description",
857
+ "isDeprecated": false,
858
+ "name": "description",
859
+ "path": "ipAddressRange.addValues.container.description",
860
+ "requestStr": "$description:String ",
861
+ "required": false,
862
+ "responseStr": "description:$description ",
863
+ "type": {
864
+ "kind": [
865
+ "SCALAR"
866
+ ],
867
+ "name": "String",
868
+ "non_null": false
869
+ },
870
+ "varName": "description"
871
+ },
872
+ "id": {
873
+ "args": {},
874
+ "deprecationReason": null,
875
+ "description": "Unique container ID",
876
+ "id_str": "ipAddressRange___addValues___container___id",
877
+ "isDeprecated": false,
878
+ "name": "id",
879
+ "path": "ipAddressRange.addValues.container.id",
880
+ "requestStr": "$id:ID! ",
881
+ "required": true,
882
+ "responseStr": "id:$id ",
883
+ "type": {
884
+ "kind": [
885
+ "NON_NULL",
886
+ "SCALAR"
887
+ ],
888
+ "name": "ID",
889
+ "non_null": false
890
+ },
891
+ "varName": "id"
892
+ },
893
+ "name": {
894
+ "args": {},
895
+ "deprecationReason": null,
896
+ "description": "Name for the container",
897
+ "id_str": "ipAddressRange___addValues___container___name",
898
+ "isDeprecated": false,
899
+ "name": "name",
900
+ "path": "ipAddressRange.addValues.container.name",
901
+ "requestStr": "$name:String! ",
902
+ "required": true,
903
+ "responseStr": "name:$name ",
904
+ "type": {
905
+ "kind": [
906
+ "NON_NULL",
907
+ "SCALAR"
908
+ ],
909
+ "name": "String",
910
+ "non_null": false
911
+ },
912
+ "varName": "name"
913
+ },
914
+ "size": {
915
+ "args": {},
916
+ "deprecationReason": null,
917
+ "description": "Number of items in the container",
918
+ "id_str": "ipAddressRange___addValues___container___size",
919
+ "isDeprecated": false,
920
+ "name": "size",
921
+ "path": "ipAddressRange.addValues.container.size",
922
+ "requestStr": "$size:Int! ",
923
+ "required": true,
924
+ "responseStr": "size:$size ",
925
+ "type": {
926
+ "kind": [
927
+ "NON_NULL",
928
+ "SCALAR"
929
+ ],
930
+ "name": "Int",
931
+ "non_null": false
932
+ },
933
+ "varName": "size"
934
+ }
935
+ },
936
+ "inputFields": null,
937
+ "interfaces": {},
938
+ "kind": "OBJECT",
939
+ "name": "IpAddressRangeContainer",
940
+ "possibleTypes": null
941
+ },
942
+ "indexType": "object",
943
+ "kind": [
944
+ "NON_NULL",
945
+ "OBJECT"
946
+ ],
947
+ "name": "IpAddressRangeContainer",
948
+ "non_null": false
949
+ },
950
+ "varName": "ipAddressRangeContainer"
951
+ }
952
+ },
953
+ "inputFields": null,
954
+ "interfaces": {},
955
+ "kind": "OBJECT",
956
+ "name": "IpAddressRangeContainerAddValuesPayload",
957
+ "possibleTypes": null
958
+ },
959
+ "indexType": "object",
960
+ "kind": [
961
+ "NON_NULL",
962
+ "OBJECT"
963
+ ],
964
+ "name": "IpAddressRangeContainerAddValuesPayload",
965
+ "non_null": false
966
+ },
967
+ "varName": "ipAddressRangeContainerAddValuesPayload"
968
+ }
969
+ },
970
+ "inputFields": null,
971
+ "interfaces": {},
972
+ "kind": "OBJECT",
973
+ "name": "IpAddressRangeContainerMutations",
974
+ "possibleTypes": null
975
+ },
976
+ "indexType": "object",
977
+ "kind": [
978
+ "NON_NULL",
979
+ "OBJECT"
980
+ ],
981
+ "name": "IpAddressRangeContainerMutations",
982
+ "non_null": false
983
+ },
984
+ "varName": "ipAddressRangeContainerMutations"
985
+ }
986
+ },
987
+ "inputFields": null,
988
+ "interfaces": [],
989
+ "kind": "OBJECT",
990
+ "name": "ContainerMutations",
991
+ "possibleTypes": null
992
+ },
993
+ "indexType": "object",
994
+ "kind": [
995
+ "OBJECT"
996
+ ],
997
+ "name": "ContainerMutations",
998
+ "non_null": false
999
+ },
1000
+ "variablesPayload": {
1001
+ "ipAddressRangeContainerAddValuesInput": {
1002
+ "containerRefInput": {
1003
+ "by": {
1004
+ "by": "enum(ObjectRefBy)"
1005
+ },
1006
+ "input": {
1007
+ "input": "String"
1008
+ }
1009
+ },
1010
+ "ipAddressRangeInput": {
1011
+ "from": {
1012
+ "from": "IPAddress"
1013
+ },
1014
+ "to": {
1015
+ "to": "IPAddress"
1016
+ }
1017
+ }
1018
+ }
1019
+ }
1020
+ }