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