catocli 2.0.4__py3-none-any.whl → 2.1.0__py3-none-any.whl

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

Potentially problematic release.


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

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