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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (291) hide show
  1. build/lib/catocli/Utils/clidriver.py +268 -0
  2. build/lib/catocli/Utils/profile_manager.py +188 -0
  3. build/lib/catocli/Utils/version_checker.py +192 -0
  4. build/lib/catocli/__init__.py +2 -0
  5. build/lib/catocli/__main__.py +12 -0
  6. build/lib/catocli/parsers/configure/__init__.py +115 -0
  7. build/lib/catocli/parsers/configure/configure.py +307 -0
  8. build/lib/catocli/parsers/custom/__init__.py +57 -0
  9. build/lib/catocli/parsers/custom/customLib.py +561 -0
  10. build/lib/catocli/parsers/custom/export_rules/__init__.py +42 -0
  11. build/lib/catocli/parsers/custom/export_rules/export_rules.py +234 -0
  12. build/lib/catocli/parsers/custom/export_sites/__init__.py +21 -0
  13. build/lib/catocli/parsers/custom/export_sites/export_sites.py +372 -0
  14. build/lib/catocli/parsers/custom/import_rules_to_tf/__init__.py +58 -0
  15. build/lib/catocli/parsers/custom/import_rules_to_tf/import_rules_to_tf.py +451 -0
  16. build/lib/catocli/parsers/custom/import_sites_to_tf/__init__.py +45 -0
  17. build/lib/catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +891 -0
  18. build/lib/catocli/parsers/mutation_accountManagement/__init__.py +48 -0
  19. build/lib/catocli/parsers/mutation_admin/__init__.py +48 -0
  20. build/lib/catocli/parsers/mutation_container/__init__.py +138 -0
  21. build/lib/catocli/parsers/mutation_hardware/__init__.py +22 -0
  22. build/lib/catocli/parsers/mutation_policy/__init__.py +1305 -0
  23. build/lib/catocli/parsers/mutation_sandbox/__init__.py +35 -0
  24. build/lib/catocli/parsers/mutation_site/__init__.py +373 -0
  25. build/lib/catocli/parsers/mutation_sites/__init__.py +373 -0
  26. build/lib/catocli/parsers/mutation_xdr/__init__.py +48 -0
  27. build/lib/catocli/parsers/parserApiClient.py +513 -0
  28. build/lib/catocli/parsers/query_accountBySubdomain/__init__.py +16 -0
  29. build/lib/catocli/parsers/query_accountManagement/__init__.py +16 -0
  30. build/lib/catocli/parsers/query_accountMetrics/__init__.py +16 -0
  31. build/lib/catocli/parsers/query_accountRoles/__init__.py +16 -0
  32. build/lib/catocli/parsers/query_accountSnapshot/__init__.py +16 -0
  33. build/lib/catocli/parsers/query_admin/__init__.py +16 -0
  34. build/lib/catocli/parsers/query_admins/__init__.py +16 -0
  35. build/lib/catocli/parsers/query_appStats/__init__.py +16 -0
  36. build/lib/catocli/parsers/query_appStatsTimeSeries/__init__.py +16 -0
  37. build/lib/catocli/parsers/query_auditFeed/__init__.py +16 -0
  38. build/lib/catocli/parsers/query_catalogs/__init__.py +16 -0
  39. build/lib/catocli/parsers/query_container/__init__.py +16 -0
  40. build/lib/catocli/parsers/query_devices/__init__.py +16 -0
  41. build/lib/catocli/parsers/query_entityLookup/__init__.py +16 -0
  42. build/lib/catocli/parsers/query_events/__init__.py +16 -0
  43. build/lib/catocli/parsers/query_eventsFeed/__init__.py +16 -0
  44. build/lib/catocli/parsers/query_eventsTimeSeries/__init__.py +16 -0
  45. build/lib/catocli/parsers/query_hardware/__init__.py +16 -0
  46. build/lib/catocli/parsers/query_hardwareManagement/__init__.py +16 -0
  47. build/lib/catocli/parsers/query_licensing/__init__.py +16 -0
  48. build/lib/catocli/parsers/query_policy/__init__.py +161 -0
  49. build/lib/catocli/parsers/query_sandbox/__init__.py +16 -0
  50. build/lib/catocli/parsers/query_site/__init__.py +100 -0
  51. build/lib/catocli/parsers/query_siteLocation/__init__.py +13 -0
  52. build/lib/catocli/parsers/query_subDomains/__init__.py +16 -0
  53. build/lib/catocli/parsers/query_xdr/__init__.py +35 -0
  54. build/lib/catocli/parsers/raw/__init__.py +12 -0
  55. build/lib/graphql_client/__init__.py +11 -0
  56. build/lib/graphql_client/api/__init__.py +3 -0
  57. build/lib/graphql_client/api/call_api.py +84 -0
  58. build/lib/graphql_client/api_client.py +192 -0
  59. build/lib/graphql_client/api_client_types.py +409 -0
  60. build/lib/graphql_client/configuration.py +232 -0
  61. build/lib/graphql_client/models/__init__.py +13 -0
  62. build/lib/graphql_client/models/no_schema.py +71 -0
  63. build/lib/schema/catolib.py +1141 -0
  64. build/lib/schema/importSchema.py +60 -0
  65. build/lib/schema/remove_policyid.py +89 -0
  66. build/lib/schema/remove_policyid_mutations.py +89 -0
  67. build/lib/scripts/catolib.py +62 -0
  68. build/lib/scripts/export_if_rules_to_json.py +188 -0
  69. build/lib/scripts/export_wf_rules_to_json.py +111 -0
  70. build/lib/scripts/import_wf_rules_to_tfstate.py +331 -0
  71. build/lib/vendor/certifi/__init__.py +4 -0
  72. build/lib/vendor/certifi/__main__.py +12 -0
  73. build/lib/vendor/certifi/core.py +114 -0
  74. build/lib/vendor/certifi/py.typed +0 -0
  75. build/lib/vendor/six.py +998 -0
  76. build/lib/vendor/urllib3/__init__.py +211 -0
  77. build/lib/vendor/urllib3/_base_connection.py +172 -0
  78. build/lib/vendor/urllib3/_collections.py +483 -0
  79. build/lib/vendor/urllib3/_request_methods.py +278 -0
  80. build/lib/vendor/urllib3/_version.py +16 -0
  81. build/lib/vendor/urllib3/connection.py +1033 -0
  82. build/lib/vendor/urllib3/connectionpool.py +1182 -0
  83. build/lib/vendor/urllib3/contrib/__init__.py +0 -0
  84. build/lib/vendor/urllib3/contrib/emscripten/__init__.py +18 -0
  85. build/lib/vendor/urllib3/contrib/emscripten/connection.py +254 -0
  86. build/lib/vendor/urllib3/contrib/emscripten/fetch.py +418 -0
  87. build/lib/vendor/urllib3/contrib/emscripten/request.py +22 -0
  88. build/lib/vendor/urllib3/contrib/emscripten/response.py +285 -0
  89. build/lib/vendor/urllib3/contrib/pyopenssl.py +552 -0
  90. build/lib/vendor/urllib3/contrib/socks.py +228 -0
  91. build/lib/vendor/urllib3/exceptions.py +321 -0
  92. build/lib/vendor/urllib3/fields.py +341 -0
  93. build/lib/vendor/urllib3/filepost.py +89 -0
  94. build/lib/vendor/urllib3/http2/__init__.py +53 -0
  95. build/lib/vendor/urllib3/http2/connection.py +356 -0
  96. build/lib/vendor/urllib3/http2/probe.py +87 -0
  97. build/lib/vendor/urllib3/poolmanager.py +637 -0
  98. build/lib/vendor/urllib3/py.typed +2 -0
  99. build/lib/vendor/urllib3/response.py +1265 -0
  100. build/lib/vendor/urllib3/util/__init__.py +42 -0
  101. build/lib/vendor/urllib3/util/connection.py +137 -0
  102. build/lib/vendor/urllib3/util/proxy.py +43 -0
  103. build/lib/vendor/urllib3/util/request.py +256 -0
  104. build/lib/vendor/urllib3/util/response.py +101 -0
  105. build/lib/vendor/urllib3/util/retry.py +533 -0
  106. build/lib/vendor/urllib3/util/ssl_.py +513 -0
  107. build/lib/vendor/urllib3/util/ssl_match_hostname.py +159 -0
  108. build/lib/vendor/urllib3/util/ssltransport.py +276 -0
  109. build/lib/vendor/urllib3/util/timeout.py +275 -0
  110. build/lib/vendor/urllib3/util/url.py +471 -0
  111. build/lib/vendor/urllib3/util/util.py +42 -0
  112. build/lib/vendor/urllib3/util/wait.py +124 -0
  113. catocli/Utils/clidriver.py +1 -4
  114. catocli/__init__.py +1 -1
  115. catocli/parsers/custom/export_rules/__init__.py +2 -0
  116. catocli/parsers/custom/export_rules/export_rules.py +29 -5
  117. catocli/parsers/custom/export_sites/__init__.py +1 -0
  118. catocli/parsers/custom/export_sites/export_sites.py +10 -3
  119. catocli/parsers/mutation_container/__init__.py +116 -0
  120. catocli/parsers/mutation_container_fqdn/README.md +7 -0
  121. catocli/parsers/mutation_container_fqdn_addValues/README.md +17 -0
  122. catocli/parsers/mutation_container_fqdn_createFromFile/README.md +17 -0
  123. catocli/parsers/mutation_container_fqdn_removeValues/README.md +17 -0
  124. catocli/parsers/mutation_container_fqdn_updateFromFile/README.md +17 -0
  125. catocli/parsers/mutation_container_ipAddressRange/README.md +7 -0
  126. catocli/parsers/mutation_container_ipAddressRange_addValues/README.md +17 -0
  127. catocli/parsers/mutation_container_ipAddressRange_createFromFile/README.md +17 -0
  128. catocli/parsers/mutation_container_ipAddressRange_removeValues/README.md +17 -0
  129. catocli/parsers/mutation_container_ipAddressRange_updateFromFile/README.md +17 -0
  130. catocli/parsers/mutation_policy_internetFirewall_addRule/README.md +1 -1
  131. catocli/parsers/mutation_policy_internetFirewall_updateRule/README.md +1 -1
  132. catocli/parsers/mutation_policy_wanFirewall_addRule/README.md +1 -1
  133. catocli/parsers/mutation_policy_wanFirewall_updateRule/README.md +1 -1
  134. catocli/parsers/parserApiClient.py +183 -7
  135. catocli/parsers/query_policy/README.md +0 -17
  136. catocli/parsers/query_policy/__init__.py +153 -8
  137. catocli/parsers/query_policy_appTenantRestriction/README.md +7 -0
  138. catocli/parsers/query_policy_appTenantRestriction_policy/README.md +17 -0
  139. catocli/parsers/query_policy_dynamicIpAllocation/README.md +7 -0
  140. catocli/parsers/query_policy_dynamicIpAllocation_policy/README.md +17 -0
  141. catocli/parsers/query_policy_internetFirewall/README.md +7 -0
  142. catocli/parsers/query_policy_internetFirewall_policy/README.md +17 -0
  143. catocli/parsers/query_policy_remotePortFwd/README.md +7 -0
  144. catocli/parsers/query_policy_remotePortFwd_policy/README.md +17 -0
  145. catocli/parsers/query_policy_socketLan/README.md +7 -0
  146. catocli/parsers/query_policy_socketLan_policy/README.md +17 -0
  147. catocli/parsers/query_policy_terminalServer/README.md +7 -0
  148. catocli/parsers/query_policy_terminalServer_policy/README.md +17 -0
  149. catocli/parsers/query_policy_wanFirewall/README.md +7 -0
  150. catocli/parsers/query_policy_wanFirewall_policy/README.md +17 -0
  151. catocli/parsers/query_policy_wanNetwork/README.md +7 -0
  152. catocli/parsers/query_policy_wanNetwork_policy/README.md +17 -0
  153. catocli/parsers/query_site/README.md +0 -16
  154. catocli/parsers/query_site/__init__.py +92 -8
  155. catocli/parsers/query_site_availableVersionList/README.md +17 -0
  156. catocli/parsers/query_site_bgpPeer/README.md +17 -0
  157. catocli/parsers/query_site_bgpPeerList/README.md +17 -0
  158. catocli/parsers/query_site_cloudInterconnectConnectionConnectivity/README.md +17 -0
  159. catocli/parsers/query_site_cloudInterconnectPhysicalConnection/README.md +17 -0
  160. catocli/parsers/query_site_cloudInterconnectPhysicalConnectionId/README.md +17 -0
  161. catocli/parsers/query_site_siteBgpStatus/README.md +17 -0
  162. {catocli-2.0.3.dist-info → catocli-2.0.5.dist-info}/METADATA +1 -1
  163. {catocli-2.0.3.dist-info → catocli-2.0.5.dist-info}/RECORD +291 -121
  164. {catocli-2.0.3.dist-info → catocli-2.0.5.dist-info}/top_level.txt +1 -0
  165. graphql_client/api/call_api.py +4 -3
  166. models/mutation.container.fqdn.addValues.json +866 -0
  167. models/mutation.container.fqdn.createFromFile.json +819 -0
  168. models/mutation.container.fqdn.removeValues.json +866 -0
  169. models/mutation.container.fqdn.updateFromFile.json +1045 -0
  170. models/mutation.container.ipAddressRange.addValues.json +1020 -0
  171. models/mutation.container.ipAddressRange.createFromFile.json +819 -0
  172. models/mutation.container.ipAddressRange.removeValues.json +1020 -0
  173. models/mutation.container.ipAddressRange.updateFromFile.json +1045 -0
  174. models/mutation.policy.appTenantRestriction.addRule.json +8 -8
  175. models/mutation.policy.appTenantRestriction.addSection.json +1 -1
  176. models/mutation.policy.appTenantRestriction.createPolicyRevision.json +2 -2
  177. models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +2 -2
  178. models/mutation.policy.appTenantRestriction.moveRule.json +2 -2
  179. models/mutation.policy.appTenantRestriction.moveSection.json +1 -1
  180. models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +2 -2
  181. models/mutation.policy.appTenantRestriction.removeRule.json +2 -2
  182. models/mutation.policy.appTenantRestriction.removeSection.json +1 -1
  183. models/mutation.policy.appTenantRestriction.updatePolicy.json +2 -2
  184. models/mutation.policy.appTenantRestriction.updateRule.json +8 -8
  185. models/mutation.policy.appTenantRestriction.updateSection.json +1 -1
  186. models/mutation.policy.dynamicIpAllocation.addRule.json +1 -1
  187. models/mutation.policy.dynamicIpAllocation.addSection.json +1 -1
  188. models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +1 -1
  189. models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +1 -1
  190. models/mutation.policy.dynamicIpAllocation.moveRule.json +1 -1
  191. models/mutation.policy.dynamicIpAllocation.moveSection.json +1 -1
  192. models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +1 -1
  193. models/mutation.policy.dynamicIpAllocation.removeRule.json +1 -1
  194. models/mutation.policy.dynamicIpAllocation.removeSection.json +1 -1
  195. models/mutation.policy.dynamicIpAllocation.updatePolicy.json +1 -1
  196. models/mutation.policy.dynamicIpAllocation.updateRule.json +1 -1
  197. models/mutation.policy.dynamicIpAllocation.updateSection.json +1 -1
  198. models/mutation.policy.internetFirewall.addRule.json +502 -55
  199. models/mutation.policy.internetFirewall.addSection.json +1 -1
  200. models/mutation.policy.internetFirewall.createPolicyRevision.json +127 -10
  201. models/mutation.policy.internetFirewall.discardPolicyRevision.json +127 -10
  202. models/mutation.policy.internetFirewall.moveRule.json +127 -10
  203. models/mutation.policy.internetFirewall.moveSection.json +1 -1
  204. models/mutation.policy.internetFirewall.publishPolicyRevision.json +127 -10
  205. models/mutation.policy.internetFirewall.removeRule.json +127 -10
  206. models/mutation.policy.internetFirewall.removeSection.json +1 -1
  207. models/mutation.policy.internetFirewall.updatePolicy.json +127 -10
  208. models/mutation.policy.internetFirewall.updateRule.json +493 -55
  209. models/mutation.policy.internetFirewall.updateSection.json +1 -1
  210. models/mutation.policy.remotePortFwd.addRule.json +5 -5
  211. models/mutation.policy.remotePortFwd.addSection.json +1 -1
  212. models/mutation.policy.remotePortFwd.createPolicyRevision.json +2 -2
  213. models/mutation.policy.remotePortFwd.discardPolicyRevision.json +2 -2
  214. models/mutation.policy.remotePortFwd.moveRule.json +2 -2
  215. models/mutation.policy.remotePortFwd.moveSection.json +1 -1
  216. models/mutation.policy.remotePortFwd.publishPolicyRevision.json +2 -2
  217. models/mutation.policy.remotePortFwd.removeRule.json +2 -2
  218. models/mutation.policy.remotePortFwd.removeSection.json +1 -1
  219. models/mutation.policy.remotePortFwd.updatePolicy.json +2 -2
  220. models/mutation.policy.remotePortFwd.updateRule.json +5 -5
  221. models/mutation.policy.remotePortFwd.updateSection.json +1 -1
  222. models/mutation.policy.socketLan.addRule.json +16 -16
  223. models/mutation.policy.socketLan.addSection.json +1 -1
  224. models/mutation.policy.socketLan.createPolicyRevision.json +4 -4
  225. models/mutation.policy.socketLan.discardPolicyRevision.json +4 -4
  226. models/mutation.policy.socketLan.moveRule.json +4 -4
  227. models/mutation.policy.socketLan.moveSection.json +1 -1
  228. models/mutation.policy.socketLan.publishPolicyRevision.json +4 -4
  229. models/mutation.policy.socketLan.removeRule.json +4 -4
  230. models/mutation.policy.socketLan.removeSection.json +1 -1
  231. models/mutation.policy.socketLan.updatePolicy.json +4 -4
  232. models/mutation.policy.socketLan.updateRule.json +16 -16
  233. models/mutation.policy.socketLan.updateSection.json +1 -1
  234. models/mutation.policy.terminalServer.addRule.json +1 -1
  235. models/mutation.policy.terminalServer.addSection.json +1 -1
  236. models/mutation.policy.terminalServer.createPolicyRevision.json +1 -1
  237. models/mutation.policy.terminalServer.discardPolicyRevision.json +1 -1
  238. models/mutation.policy.terminalServer.moveRule.json +1 -1
  239. models/mutation.policy.terminalServer.moveSection.json +1 -1
  240. models/mutation.policy.terminalServer.publishPolicyRevision.json +1 -1
  241. models/mutation.policy.terminalServer.removeRule.json +1 -1
  242. models/mutation.policy.terminalServer.removeSection.json +1 -1
  243. models/mutation.policy.terminalServer.updatePolicy.json +1 -1
  244. models/mutation.policy.terminalServer.updateRule.json +1 -1
  245. models/mutation.policy.terminalServer.updateSection.json +1 -1
  246. models/mutation.policy.wanFirewall.addRule.json +500 -53
  247. models/mutation.policy.wanFirewall.addSection.json +1 -1
  248. models/mutation.policy.wanFirewall.createPolicyRevision.json +128 -11
  249. models/mutation.policy.wanFirewall.discardPolicyRevision.json +128 -11
  250. models/mutation.policy.wanFirewall.moveRule.json +128 -11
  251. models/mutation.policy.wanFirewall.moveSection.json +1 -1
  252. models/mutation.policy.wanFirewall.publishPolicyRevision.json +128 -11
  253. models/mutation.policy.wanFirewall.removeRule.json +128 -11
  254. models/mutation.policy.wanFirewall.removeSection.json +1 -1
  255. models/mutation.policy.wanFirewall.updatePolicy.json +128 -11
  256. models/mutation.policy.wanFirewall.updateRule.json +491 -53
  257. models/mutation.policy.wanFirewall.updateSection.json +1 -1
  258. models/mutation.policy.wanNetwork.addRule.json +13 -13
  259. models/mutation.policy.wanNetwork.addSection.json +1 -1
  260. models/mutation.policy.wanNetwork.createPolicyRevision.json +1 -1
  261. models/mutation.policy.wanNetwork.discardPolicyRevision.json +1 -1
  262. models/mutation.policy.wanNetwork.moveRule.json +1 -1
  263. models/mutation.policy.wanNetwork.moveSection.json +1 -1
  264. models/mutation.policy.wanNetwork.publishPolicyRevision.json +1 -1
  265. models/mutation.policy.wanNetwork.removeRule.json +1 -1
  266. models/mutation.policy.wanNetwork.removeSection.json +1 -1
  267. models/mutation.policy.wanNetwork.updatePolicy.json +1 -1
  268. models/mutation.policy.wanNetwork.updateRule.json +13 -13
  269. models/mutation.policy.wanNetwork.updateSection.json +1 -1
  270. models/query.policy.appTenantRestriction.policy.json +3086 -0
  271. models/query.policy.dynamicIpAllocation.policy.json +1934 -0
  272. models/query.policy.internetFirewall.policy.json +7833 -0
  273. models/query.policy.json +233 -0
  274. models/query.policy.remotePortFwd.policy.json +2387 -0
  275. models/query.policy.socketLan.policy.json +7140 -0
  276. models/query.policy.terminalServer.policy.json +1632 -0
  277. models/query.policy.wanFirewall.policy.json +9212 -0
  278. models/query.policy.wanNetwork.policy.json +8010 -0
  279. models/query.site.availableVersionList.json +365 -0
  280. models/query.site.bgpPeer.json +1917 -0
  281. models/query.site.bgpPeerList.json +2076 -0
  282. models/query.site.cloudInterconnectConnectionConnectivity.json +298 -0
  283. models/query.site.cloudInterconnectPhysicalConnection.json +728 -0
  284. models/query.site.cloudInterconnectPhysicalConnectionId.json +660 -0
  285. models/query.site.siteBgpStatus.json +869 -0
  286. schema/catolib.py +13 -6
  287. schema/remove_policyid.py +89 -0
  288. schema/remove_policyid_mutations.py +89 -0
  289. {catocli-2.0.3.dist-info → catocli-2.0.5.dist-info}/LICENSE +0 -0
  290. {catocli-2.0.3.dist-info → catocli-2.0.5.dist-info}/WHEEL +0 -0
  291. {catocli-2.0.3.dist-info → catocli-2.0.5.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,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": "ipAddressRangeContainerAddValuesPayloadAddValues: 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": "ipAddressRangeContainerContainer: 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": "containerAuditAudit: 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
+ }