catocli 2.0.4__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 (290) 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_sites/export_sites.py +2 -2
  116. catocli/parsers/mutation_container/__init__.py +116 -0
  117. catocli/parsers/mutation_container_fqdn/README.md +7 -0
  118. catocli/parsers/mutation_container_fqdn_addValues/README.md +17 -0
  119. catocli/parsers/mutation_container_fqdn_createFromFile/README.md +17 -0
  120. catocli/parsers/mutation_container_fqdn_removeValues/README.md +17 -0
  121. catocli/parsers/mutation_container_fqdn_updateFromFile/README.md +17 -0
  122. catocli/parsers/mutation_container_ipAddressRange/README.md +7 -0
  123. catocli/parsers/mutation_container_ipAddressRange_addValues/README.md +17 -0
  124. catocli/parsers/mutation_container_ipAddressRange_createFromFile/README.md +17 -0
  125. catocli/parsers/mutation_container_ipAddressRange_removeValues/README.md +17 -0
  126. catocli/parsers/mutation_container_ipAddressRange_updateFromFile/README.md +17 -0
  127. catocli/parsers/mutation_policy_internetFirewall_addRule/README.md +1 -1
  128. catocli/parsers/mutation_policy_internetFirewall_updateRule/README.md +1 -1
  129. catocli/parsers/mutation_policy_wanFirewall_addRule/README.md +1 -1
  130. catocli/parsers/mutation_policy_wanFirewall_updateRule/README.md +1 -1
  131. catocli/parsers/parserApiClient.py +25 -11
  132. catocli/parsers/query_policy/README.md +0 -17
  133. catocli/parsers/query_policy/__init__.py +153 -8
  134. catocli/parsers/query_policy_appTenantRestriction/README.md +7 -0
  135. catocli/parsers/query_policy_appTenantRestriction_policy/README.md +17 -0
  136. catocli/parsers/query_policy_dynamicIpAllocation/README.md +7 -0
  137. catocli/parsers/query_policy_dynamicIpAllocation_policy/README.md +17 -0
  138. catocli/parsers/query_policy_internetFirewall/README.md +7 -0
  139. catocli/parsers/query_policy_internetFirewall_policy/README.md +17 -0
  140. catocli/parsers/query_policy_remotePortFwd/README.md +7 -0
  141. catocli/parsers/query_policy_remotePortFwd_policy/README.md +17 -0
  142. catocli/parsers/query_policy_socketLan/README.md +7 -0
  143. catocli/parsers/query_policy_socketLan_policy/README.md +17 -0
  144. catocli/parsers/query_policy_terminalServer/README.md +7 -0
  145. catocli/parsers/query_policy_terminalServer_policy/README.md +17 -0
  146. catocli/parsers/query_policy_wanFirewall/README.md +7 -0
  147. catocli/parsers/query_policy_wanFirewall_policy/README.md +17 -0
  148. catocli/parsers/query_policy_wanNetwork/README.md +7 -0
  149. catocli/parsers/query_policy_wanNetwork_policy/README.md +17 -0
  150. catocli/parsers/query_site/README.md +0 -16
  151. catocli/parsers/query_site/__init__.py +92 -8
  152. catocli/parsers/query_site_availableVersionList/README.md +17 -0
  153. catocli/parsers/query_site_bgpPeer/README.md +17 -0
  154. catocli/parsers/query_site_bgpPeerList/README.md +17 -0
  155. catocli/parsers/query_site_cloudInterconnectConnectionConnectivity/README.md +17 -0
  156. catocli/parsers/query_site_cloudInterconnectPhysicalConnection/README.md +17 -0
  157. catocli/parsers/query_site_cloudInterconnectPhysicalConnectionId/README.md +17 -0
  158. catocli/parsers/query_site_siteBgpStatus/README.md +17 -0
  159. catocli/parsers/raw/README.md +0 -14
  160. catocli/parsers/raw/__init__.py +0 -2
  161. {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/METADATA +1 -1
  162. {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/RECORD +290 -120
  163. {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/top_level.txt +1 -0
  164. graphql_client/api/call_api.py +4 -3
  165. models/mutation.container.fqdn.addValues.json +866 -0
  166. models/mutation.container.fqdn.createFromFile.json +819 -0
  167. models/mutation.container.fqdn.removeValues.json +866 -0
  168. models/mutation.container.fqdn.updateFromFile.json +1045 -0
  169. models/mutation.container.ipAddressRange.addValues.json +1020 -0
  170. models/mutation.container.ipAddressRange.createFromFile.json +819 -0
  171. models/mutation.container.ipAddressRange.removeValues.json +1020 -0
  172. models/mutation.container.ipAddressRange.updateFromFile.json +1045 -0
  173. models/mutation.policy.appTenantRestriction.addRule.json +8 -8
  174. models/mutation.policy.appTenantRestriction.addSection.json +1 -1
  175. models/mutation.policy.appTenantRestriction.createPolicyRevision.json +2 -2
  176. models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +2 -2
  177. models/mutation.policy.appTenantRestriction.moveRule.json +2 -2
  178. models/mutation.policy.appTenantRestriction.moveSection.json +1 -1
  179. models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +2 -2
  180. models/mutation.policy.appTenantRestriction.removeRule.json +2 -2
  181. models/mutation.policy.appTenantRestriction.removeSection.json +1 -1
  182. models/mutation.policy.appTenantRestriction.updatePolicy.json +2 -2
  183. models/mutation.policy.appTenantRestriction.updateRule.json +8 -8
  184. models/mutation.policy.appTenantRestriction.updateSection.json +1 -1
  185. models/mutation.policy.dynamicIpAllocation.addRule.json +1 -1
  186. models/mutation.policy.dynamicIpAllocation.addSection.json +1 -1
  187. models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +1 -1
  188. models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +1 -1
  189. models/mutation.policy.dynamicIpAllocation.moveRule.json +1 -1
  190. models/mutation.policy.dynamicIpAllocation.moveSection.json +1 -1
  191. models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +1 -1
  192. models/mutation.policy.dynamicIpAllocation.removeRule.json +1 -1
  193. models/mutation.policy.dynamicIpAllocation.removeSection.json +1 -1
  194. models/mutation.policy.dynamicIpAllocation.updatePolicy.json +1 -1
  195. models/mutation.policy.dynamicIpAllocation.updateRule.json +1 -1
  196. models/mutation.policy.dynamicIpAllocation.updateSection.json +1 -1
  197. models/mutation.policy.internetFirewall.addRule.json +502 -55
  198. models/mutation.policy.internetFirewall.addSection.json +1 -1
  199. models/mutation.policy.internetFirewall.createPolicyRevision.json +127 -10
  200. models/mutation.policy.internetFirewall.discardPolicyRevision.json +127 -10
  201. models/mutation.policy.internetFirewall.moveRule.json +127 -10
  202. models/mutation.policy.internetFirewall.moveSection.json +1 -1
  203. models/mutation.policy.internetFirewall.publishPolicyRevision.json +127 -10
  204. models/mutation.policy.internetFirewall.removeRule.json +127 -10
  205. models/mutation.policy.internetFirewall.removeSection.json +1 -1
  206. models/mutation.policy.internetFirewall.updatePolicy.json +127 -10
  207. models/mutation.policy.internetFirewall.updateRule.json +493 -55
  208. models/mutation.policy.internetFirewall.updateSection.json +1 -1
  209. models/mutation.policy.remotePortFwd.addRule.json +5 -5
  210. models/mutation.policy.remotePortFwd.addSection.json +1 -1
  211. models/mutation.policy.remotePortFwd.createPolicyRevision.json +2 -2
  212. models/mutation.policy.remotePortFwd.discardPolicyRevision.json +2 -2
  213. models/mutation.policy.remotePortFwd.moveRule.json +2 -2
  214. models/mutation.policy.remotePortFwd.moveSection.json +1 -1
  215. models/mutation.policy.remotePortFwd.publishPolicyRevision.json +2 -2
  216. models/mutation.policy.remotePortFwd.removeRule.json +2 -2
  217. models/mutation.policy.remotePortFwd.removeSection.json +1 -1
  218. models/mutation.policy.remotePortFwd.updatePolicy.json +2 -2
  219. models/mutation.policy.remotePortFwd.updateRule.json +5 -5
  220. models/mutation.policy.remotePortFwd.updateSection.json +1 -1
  221. models/mutation.policy.socketLan.addRule.json +16 -16
  222. models/mutation.policy.socketLan.addSection.json +1 -1
  223. models/mutation.policy.socketLan.createPolicyRevision.json +4 -4
  224. models/mutation.policy.socketLan.discardPolicyRevision.json +4 -4
  225. models/mutation.policy.socketLan.moveRule.json +4 -4
  226. models/mutation.policy.socketLan.moveSection.json +1 -1
  227. models/mutation.policy.socketLan.publishPolicyRevision.json +4 -4
  228. models/mutation.policy.socketLan.removeRule.json +4 -4
  229. models/mutation.policy.socketLan.removeSection.json +1 -1
  230. models/mutation.policy.socketLan.updatePolicy.json +4 -4
  231. models/mutation.policy.socketLan.updateRule.json +16 -16
  232. models/mutation.policy.socketLan.updateSection.json +1 -1
  233. models/mutation.policy.terminalServer.addRule.json +1 -1
  234. models/mutation.policy.terminalServer.addSection.json +1 -1
  235. models/mutation.policy.terminalServer.createPolicyRevision.json +1 -1
  236. models/mutation.policy.terminalServer.discardPolicyRevision.json +1 -1
  237. models/mutation.policy.terminalServer.moveRule.json +1 -1
  238. models/mutation.policy.terminalServer.moveSection.json +1 -1
  239. models/mutation.policy.terminalServer.publishPolicyRevision.json +1 -1
  240. models/mutation.policy.terminalServer.removeRule.json +1 -1
  241. models/mutation.policy.terminalServer.removeSection.json +1 -1
  242. models/mutation.policy.terminalServer.updatePolicy.json +1 -1
  243. models/mutation.policy.terminalServer.updateRule.json +1 -1
  244. models/mutation.policy.terminalServer.updateSection.json +1 -1
  245. models/mutation.policy.wanFirewall.addRule.json +500 -53
  246. models/mutation.policy.wanFirewall.addSection.json +1 -1
  247. models/mutation.policy.wanFirewall.createPolicyRevision.json +128 -11
  248. models/mutation.policy.wanFirewall.discardPolicyRevision.json +128 -11
  249. models/mutation.policy.wanFirewall.moveRule.json +128 -11
  250. models/mutation.policy.wanFirewall.moveSection.json +1 -1
  251. models/mutation.policy.wanFirewall.publishPolicyRevision.json +128 -11
  252. models/mutation.policy.wanFirewall.removeRule.json +128 -11
  253. models/mutation.policy.wanFirewall.removeSection.json +1 -1
  254. models/mutation.policy.wanFirewall.updatePolicy.json +128 -11
  255. models/mutation.policy.wanFirewall.updateRule.json +491 -53
  256. models/mutation.policy.wanFirewall.updateSection.json +1 -1
  257. models/mutation.policy.wanNetwork.addRule.json +13 -13
  258. models/mutation.policy.wanNetwork.addSection.json +1 -1
  259. models/mutation.policy.wanNetwork.createPolicyRevision.json +1 -1
  260. models/mutation.policy.wanNetwork.discardPolicyRevision.json +1 -1
  261. models/mutation.policy.wanNetwork.moveRule.json +1 -1
  262. models/mutation.policy.wanNetwork.moveSection.json +1 -1
  263. models/mutation.policy.wanNetwork.publishPolicyRevision.json +1 -1
  264. models/mutation.policy.wanNetwork.removeRule.json +1 -1
  265. models/mutation.policy.wanNetwork.removeSection.json +1 -1
  266. models/mutation.policy.wanNetwork.updatePolicy.json +1 -1
  267. models/mutation.policy.wanNetwork.updateRule.json +13 -13
  268. models/mutation.policy.wanNetwork.updateSection.json +1 -1
  269. models/query.policy.appTenantRestriction.policy.json +3086 -0
  270. models/query.policy.dynamicIpAllocation.policy.json +1934 -0
  271. models/query.policy.internetFirewall.policy.json +7833 -0
  272. models/query.policy.json +233 -0
  273. models/query.policy.remotePortFwd.policy.json +2387 -0
  274. models/query.policy.socketLan.policy.json +7140 -0
  275. models/query.policy.terminalServer.policy.json +1632 -0
  276. models/query.policy.wanFirewall.policy.json +9212 -0
  277. models/query.policy.wanNetwork.policy.json +8010 -0
  278. models/query.site.availableVersionList.json +365 -0
  279. models/query.site.bgpPeer.json +1917 -0
  280. models/query.site.bgpPeerList.json +2076 -0
  281. models/query.site.cloudInterconnectConnectionConnectivity.json +298 -0
  282. models/query.site.cloudInterconnectPhysicalConnection.json +728 -0
  283. models/query.site.cloudInterconnectPhysicalConnectionId.json +660 -0
  284. models/query.site.siteBgpStatus.json +869 -0
  285. schema/catolib.py +13 -6
  286. schema/remove_policyid.py +89 -0
  287. schema/remove_policyid_mutations.py +89 -0
  288. {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/LICENSE +0 -0
  289. {catocli-2.0.4.dist-info → catocli-2.0.5.dist-info}/WHEEL +0 -0
  290. {catocli-2.0.4.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
+ "ipAddressRange": {
25
+ "args": {},
26
+ "deprecationReason": null,
27
+ "description": null,
28
+ "isDeprecated": false,
29
+ "name": "ipAddressRange",
30
+ "type": {
31
+ "kind": "NON_NULL",
32
+ "name": null,
33
+ "ofType": {
34
+ "kind": "OBJECT",
35
+ "name": "IpAddressRangeContainerMutations",
36
+ "ofType": null
37
+ }
38
+ }
39
+ },
40
+ "removeValues": {
41
+ "args": {
42
+ "removeValues___input": {
43
+ "defaultValue": null,
44
+ "description": null,
45
+ "id_str": "removeValues___input",
46
+ "name": "input",
47
+ "path": "removeValues.input",
48
+ "requestStr": "$ipAddressRangeContainerRemoveValuesInput:IpAddressRangeContainerRemoveValuesInput! ",
49
+ "required": true,
50
+ "responseStr": "input:$ipAddressRangeContainerRemoveValuesInput ",
51
+ "type": {
52
+ "definition": {
53
+ "description": "Input for removing values from existing IPAddressRange typed container",
54
+ "enumValues": null,
55
+ "fields": null,
56
+ "inputFields": {
57
+ "ref": {
58
+ "defaultValue": null,
59
+ "description": "Reference to existing container by container ID or container name",
60
+ "id_str": "removeValues___input___ref",
61
+ "name": "ref",
62
+ "path": "removeValues.input.ref",
63
+ "requestStr": "$containerRefInput:ContainerRefInput! ",
64
+ "required": true,
65
+ "responseStr": "ref:$containerRefInput ",
66
+ "type": {
67
+ "definition": {
68
+ "description": "Add a container by ID or name",
69
+ "enumValues": null,
70
+ "fields": null,
71
+ "inputFields": {
72
+ "by": {
73
+ "defaultValue": "ID",
74
+ "description": "Defines the object identification method \u2013 by ID (default) or by name",
75
+ "id_str": "removeValues___input___ref___by",
76
+ "name": "by",
77
+ "path": "removeValues.input.ref.by",
78
+ "requestStr": "$by:ObjectRefBy! ",
79
+ "required": true,
80
+ "responseStr": "by:$by ",
81
+ "type": {
82
+ "definition": {
83
+ "description": null,
84
+ "enumValues": [
85
+ {
86
+ "deprecationReason": null,
87
+ "description": null,
88
+ "isDeprecated": false,
89
+ "name": "ID"
90
+ },
91
+ {
92
+ "deprecationReason": null,
93
+ "description": null,
94
+ "isDeprecated": false,
95
+ "name": "NAME"
96
+ }
97
+ ],
98
+ "fields": null,
99
+ "inputFields": null,
100
+ "interfaces": null,
101
+ "kind": "ENUM",
102
+ "name": "ObjectRefBy",
103
+ "possibleTypes": null
104
+ },
105
+ "indexType": "enum",
106
+ "kind": [
107
+ "NON_NULL",
108
+ "ENUM"
109
+ ],
110
+ "name": "ObjectRefBy",
111
+ "non_null": false
112
+ },
113
+ "varName": "by"
114
+ },
115
+ "input": {
116
+ "defaultValue": null,
117
+ "description": "The object identification (ID or name) value",
118
+ "id_str": "removeValues___input___ref___input",
119
+ "name": "input",
120
+ "path": "removeValues.input.ref.input",
121
+ "requestStr": "$input:String! ",
122
+ "required": true,
123
+ "responseStr": "input:$input ",
124
+ "type": {
125
+ "kind": [
126
+ "NON_NULL",
127
+ "SCALAR"
128
+ ],
129
+ "name": "String",
130
+ "non_null": false
131
+ },
132
+ "varName": "input"
133
+ }
134
+ },
135
+ "interfaces": null,
136
+ "kind": "INPUT_OBJECT",
137
+ "name": "ContainerRefInput",
138
+ "possibleTypes": null
139
+ },
140
+ "indexType": "input_object",
141
+ "kind": [
142
+ "NON_NULL",
143
+ "INPUT_OBJECT"
144
+ ],
145
+ "name": "ContainerRefInput",
146
+ "non_null": false
147
+ },
148
+ "varName": "containerRefInput"
149
+ },
150
+ "values": {
151
+ "defaultValue": "[]",
152
+ "description": null,
153
+ "id_str": "removeValues___input___values",
154
+ "name": "values",
155
+ "path": "removeValues.input.values",
156
+ "requestStr": "$ipAddressRangeInput:[IpAddressRangeInput]! ",
157
+ "required": true,
158
+ "responseStr": "values:$ipAddressRangeInput ",
159
+ "type": {
160
+ "definition": {
161
+ "description": "Inclusive range of IPs",
162
+ "enumValues": null,
163
+ "fields": null,
164
+ "inputFields": {
165
+ "from": {
166
+ "defaultValue": null,
167
+ "description": null,
168
+ "id_str": "removeValues___input___values___from",
169
+ "name": "from",
170
+ "path": "removeValues.input.values.from",
171
+ "requestStr": "$from:IPAddress! ",
172
+ "required": true,
173
+ "responseStr": "from:$from ",
174
+ "type": {
175
+ "kind": [
176
+ "NON_NULL",
177
+ "SCALAR"
178
+ ],
179
+ "name": "IPAddress",
180
+ "non_null": false
181
+ },
182
+ "varName": "from"
183
+ },
184
+ "to": {
185
+ "defaultValue": null,
186
+ "description": null,
187
+ "id_str": "removeValues___input___values___to",
188
+ "name": "to",
189
+ "path": "removeValues.input.values.to",
190
+ "requestStr": "$to:IPAddress! ",
191
+ "required": true,
192
+ "responseStr": "to:$to ",
193
+ "type": {
194
+ "kind": [
195
+ "NON_NULL",
196
+ "SCALAR"
197
+ ],
198
+ "name": "IPAddress",
199
+ "non_null": false
200
+ },
201
+ "varName": "to"
202
+ }
203
+ },
204
+ "interfaces": null,
205
+ "kind": "INPUT_OBJECT",
206
+ "name": "IpAddressRangeInput",
207
+ "possibleTypes": null
208
+ },
209
+ "indexType": "input_object",
210
+ "kind": [
211
+ "NON_NULL",
212
+ "LIST",
213
+ "NON_NULL",
214
+ "INPUT_OBJECT"
215
+ ],
216
+ "name": "IpAddressRangeInput",
217
+ "non_null": false
218
+ },
219
+ "varName": "ipAddressRangeInput"
220
+ }
221
+ },
222
+ "interfaces": null,
223
+ "kind": "INPUT_OBJECT",
224
+ "name": "IpAddressRangeContainerRemoveValuesInput",
225
+ "possibleTypes": null
226
+ },
227
+ "indexType": "input_object",
228
+ "kind": [
229
+ "NON_NULL",
230
+ "INPUT_OBJECT"
231
+ ],
232
+ "name": "IpAddressRangeContainerRemoveValuesInput",
233
+ "non_null": false
234
+ },
235
+ "varName": "ipAddressRangeContainerRemoveValuesInput"
236
+ }
237
+ },
238
+ "deprecationReason": null,
239
+ "description": null,
240
+ "isDeprecated": false,
241
+ "name": "removeValues",
242
+ "type": {
243
+ "kind": "NON_NULL",
244
+ "name": null,
245
+ "ofType": {
246
+ "kind": "OBJECT",
247
+ "name": "IpAddressRangeContainerRemoveValuesPayload",
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
+ "IpAddressRangeContainerMutations": true,
260
+ "IpAddressRangeContainerRemoveValuesPayload": 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
+ "ipAddressRangeContainerRemoveValuesInput": {
287
+ "defaultValue": null,
288
+ "description": null,
289
+ "id_str": "removeValues___input",
290
+ "name": "input",
291
+ "path": "removeValues.input",
292
+ "requestStr": "$ipAddressRangeContainerRemoveValuesInput:IpAddressRangeContainerRemoveValuesInput! ",
293
+ "required": true,
294
+ "responseStr": "input:$ipAddressRangeContainerRemoveValuesInput ",
295
+ "type": {
296
+ "definition": {
297
+ "description": "Input for removing values from 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": "removeValues___input___ref",
305
+ "name": "ref",
306
+ "path": "removeValues.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": "removeValues___input___ref___by",
320
+ "name": "by",
321
+ "path": "removeValues.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": "removeValues___input___ref___input",
363
+ "name": "input",
364
+ "path": "removeValues.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": "removeValues___input___values",
398
+ "name": "values",
399
+ "path": "removeValues.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": "removeValues___input___values___from",
413
+ "name": "from",
414
+ "path": "removeValues.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": "removeValues___input___values___to",
432
+ "name": "to",
433
+ "path": "removeValues.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": "IpAddressRangeContainerRemoveValuesInput",
469
+ "possibleTypes": null
470
+ },
471
+ "indexType": "input_object",
472
+ "kind": [
473
+ "NON_NULL",
474
+ "INPUT_OBJECT"
475
+ ],
476
+ "name": "IpAddressRangeContainerRemoveValuesInput",
477
+ "non_null": false
478
+ },
479
+ "varName": "ipAddressRangeContainerRemoveValuesInput"
480
+ }
481
+ },
482
+ "path": "mutation.container.ipAddressRange.removeValues",
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
+ "removeValues": {
505
+ "alias": "ipAddressRangeContainerRemoveValuesPayloadRemoveValues: removeValues",
506
+ "args": {
507
+ "removeValues___input": {
508
+ "defaultValue": null,
509
+ "description": null,
510
+ "id_str": "removeValues___input",
511
+ "name": "input",
512
+ "path": "removeValues.input",
513
+ "requestStr": "$ipAddressRangeContainerRemoveValuesInput:IpAddressRangeContainerRemoveValuesInput! ",
514
+ "required": true,
515
+ "responseStr": "input:$ipAddressRangeContainerRemoveValuesInput ",
516
+ "type": {
517
+ "definition": {
518
+ "description": "Input for removing values from 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": "removeValues___input___ref",
526
+ "name": "ref",
527
+ "path": "removeValues.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": "removeValues___input___ref___by",
541
+ "name": "by",
542
+ "path": "removeValues.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": "removeValues___input___ref___input",
584
+ "name": "input",
585
+ "path": "removeValues.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": "removeValues___input___values",
619
+ "name": "values",
620
+ "path": "removeValues.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": "removeValues___input___values___from",
634
+ "name": "from",
635
+ "path": "removeValues.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": "removeValues___input___values___to",
653
+ "name": "to",
654
+ "path": "removeValues.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": "IpAddressRangeContainerRemoveValuesInput",
690
+ "possibleTypes": null
691
+ },
692
+ "indexType": "input_object",
693
+ "kind": [
694
+ "NON_NULL",
695
+ "INPUT_OBJECT"
696
+ ],
697
+ "name": "IpAddressRangeContainerRemoveValuesInput",
698
+ "non_null": false
699
+ },
700
+ "varName": "ipAddressRangeContainerRemoveValuesInput"
701
+ }
702
+ },
703
+ "deprecationReason": null,
704
+ "description": null,
705
+ "id_str": "ipAddressRange___removeValues",
706
+ "isDeprecated": false,
707
+ "name": "removeValues",
708
+ "path": "ipAddressRange.removeValues",
709
+ "requestStr": "$ipAddressRangeContainerRemoveValuesPayload:IpAddressRangeContainerRemoveValuesPayload! ",
710
+ "required": true,
711
+ "responseStr": "removeValues:$ipAddressRangeContainerRemoveValuesPayload ",
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___removeValues___container",
723
+ "isDeprecated": false,
724
+ "name": "container",
725
+ "path": "ipAddressRange.removeValues.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___removeValues___container___audit",
740
+ "isDeprecated": false,
741
+ "name": "audit",
742
+ "path": "ipAddressRange.removeValues.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___removeValues___container___audit___createdAt",
756
+ "isDeprecated": false,
757
+ "name": "createdAt",
758
+ "path": "ipAddressRange.removeValues.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___removeValues___container___audit___createdBy",
777
+ "isDeprecated": false,
778
+ "name": "createdBy",
779
+ "path": "ipAddressRange.removeValues.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___removeValues___container___audit___lastModifiedAt",
798
+ "isDeprecated": false,
799
+ "name": "lastModifiedAt",
800
+ "path": "ipAddressRange.removeValues.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___removeValues___container___audit___lastModifiedBy",
819
+ "isDeprecated": false,
820
+ "name": "lastModifiedBy",
821
+ "path": "ipAddressRange.removeValues.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___removeValues___container___description",
857
+ "isDeprecated": false,
858
+ "name": "description",
859
+ "path": "ipAddressRange.removeValues.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___removeValues___container___id",
877
+ "isDeprecated": false,
878
+ "name": "id",
879
+ "path": "ipAddressRange.removeValues.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___removeValues___container___name",
898
+ "isDeprecated": false,
899
+ "name": "name",
900
+ "path": "ipAddressRange.removeValues.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___removeValues___container___size",
919
+ "isDeprecated": false,
920
+ "name": "size",
921
+ "path": "ipAddressRange.removeValues.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": "IpAddressRangeContainerRemoveValuesPayload",
957
+ "possibleTypes": null
958
+ },
959
+ "indexType": "object",
960
+ "kind": [
961
+ "NON_NULL",
962
+ "OBJECT"
963
+ ],
964
+ "name": "IpAddressRangeContainerRemoveValuesPayload",
965
+ "non_null": false
966
+ },
967
+ "varName": "ipAddressRangeContainerRemoveValuesPayload"
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
+ "ipAddressRangeContainerRemoveValuesInput": {
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
+ }