catocli 2.0.5__py3-none-any.whl → 2.1.1__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 (365) hide show
  1. catocli/Utils/clidriver.py +32 -4
  2. catocli/Utils/version_checker.py +1 -1
  3. catocli/__init__.py +1 -1
  4. catocli/parsers/custom/export_sites/export_sites.py +18 -1
  5. catocli/parsers/custom/import_rules_to_tf/import_rules_to_tf.py +13 -2
  6. catocli/parsers/custom/import_sites_to_tf/__init__.py +3 -1
  7. catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +79 -6
  8. catocli/parsers/custom_private/__init__.py +134 -0
  9. catocli/parsers/mutation_accountManagement/__init__.py +13 -0
  10. catocli/parsers/mutation_accountManagement_disableAccount/README.md +16 -0
  11. catocli/parsers/mutation_groups/README.md +7 -0
  12. catocli/parsers/mutation_groups/__init__.py +48 -0
  13. catocli/parsers/mutation_groups_createGroup/README.md +18 -0
  14. catocli/parsers/mutation_groups_deleteGroup/README.md +18 -0
  15. catocli/parsers/mutation_groups_updateGroup/README.md +18 -0
  16. catocli/parsers/mutation_site/__init__.py +104 -0
  17. catocli/parsers/mutation_site_assignSiteBwLicense/README.md +17 -0
  18. catocli/parsers/mutation_site_removeSecondaryAwsVSocket/README.md +17 -0
  19. catocli/parsers/mutation_site_removeSecondaryAzureVSocket/README.md +17 -0
  20. catocli/parsers/mutation_site_removeSiteBwLicense/README.md +17 -0
  21. catocli/parsers/mutation_site_replaceSiteBwLicense/README.md +17 -0
  22. catocli/parsers/mutation_site_updateSecondaryAwsVSocket/README.md +17 -0
  23. catocli/parsers/mutation_site_updateSecondaryAzureVSocket/README.md +17 -0
  24. catocli/parsers/mutation_site_updateSiteBwLicense/README.md +17 -0
  25. catocli/parsers/mutation_site_updateSiteGeneralDetails/README.md +1 -1
  26. catocli/parsers/mutation_sites/__init__.py +104 -0
  27. catocli/parsers/mutation_sites_assignSiteBwLicense/README.md +17 -0
  28. catocli/parsers/mutation_sites_removeSecondaryAwsVSocket/README.md +17 -0
  29. catocli/parsers/mutation_sites_removeSecondaryAzureVSocket/README.md +17 -0
  30. catocli/parsers/mutation_sites_removeSiteBwLicense/README.md +17 -0
  31. catocli/parsers/mutation_sites_replaceSiteBwLicense/README.md +17 -0
  32. catocli/parsers/mutation_sites_updateSecondaryAwsVSocket/README.md +17 -0
  33. catocli/parsers/mutation_sites_updateSecondaryAzureVSocket/README.md +17 -0
  34. catocli/parsers/mutation_sites_updateSiteBwLicense/README.md +17 -0
  35. catocli/parsers/mutation_sites_updateSiteGeneralDetails/README.md +1 -1
  36. catocli/parsers/parserApiClient.py +444 -9
  37. catocli/parsers/query_eventsFeed/README.md +1 -1
  38. catocli/parsers/query_groups/README.md +7 -0
  39. catocli/parsers/query_groups/__init__.py +54 -0
  40. catocli/parsers/query_groups_group/README.md +7 -0
  41. catocli/parsers/query_groups_groupList/README.md +18 -0
  42. catocli/parsers/query_groups_group_members/README.md +18 -0
  43. catocli/parsers/query_groups_whereUsed/README.md +17 -0
  44. catocli/parsers/query_popLocations/README.md +17 -0
  45. catocli/parsers/query_popLocations/__init__.py +16 -0
  46. catocli/parsers/query_site/__init__.py +26 -0
  47. catocli/parsers/query_site_secondaryAwsVSocket/README.md +17 -0
  48. catocli/parsers/query_site_secondaryAzureVSocket/README.md +17 -0
  49. catocli/parsers/query_socketPortMetrics/README.md +23 -0
  50. catocli/parsers/query_socketPortMetrics/__init__.py +16 -0
  51. catocli/parsers/query_socketPortMetricsTimeSeries/README.md +24 -0
  52. catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +16 -0
  53. {catocli-2.0.5.dist-info → catocli-2.1.1.dist-info}/METADATA +3 -2
  54. {catocli-2.0.5.dist-info → catocli-2.1.1.dist-info}/RECORD +253 -300
  55. {catocli-2.0.5.dist-info → catocli-2.1.1.dist-info}/WHEEL +1 -1
  56. {catocli-2.0.5.dist-info → catocli-2.1.1.dist-info}/top_level.txt +0 -2
  57. graphql_client/api/call_api.py +20 -2
  58. models/mutation.accountManagement.addAccount.json +97 -0
  59. models/mutation.accountManagement.disableAccount.json +545 -0
  60. models/mutation.accountManagement.removeAccount.json +102 -3
  61. models/mutation.accountManagement.updateAccount.json +97 -0
  62. models/mutation.admin.addAdmin.json +6 -9
  63. models/mutation.container.delete.json +2 -2
  64. models/mutation.container.fqdn.addValues.json +3 -3
  65. models/mutation.container.fqdn.createFromFile.json +3 -3
  66. models/mutation.container.fqdn.removeValues.json +3 -3
  67. models/mutation.container.fqdn.updateFromFile.json +3 -3
  68. models/mutation.container.ipAddressRange.addValues.json +3 -3
  69. models/mutation.container.ipAddressRange.createFromFile.json +3 -3
  70. models/mutation.container.ipAddressRange.removeValues.json +3 -3
  71. models/mutation.container.ipAddressRange.updateFromFile.json +3 -3
  72. models/mutation.groups.createGroup.json +3178 -0
  73. models/mutation.groups.deleteGroup.json +2758 -0
  74. models/mutation.groups.updateGroup.json +4429 -0
  75. models/mutation.hardware.updateHardwareShipping.json +30 -10
  76. models/mutation.policy.appTenantRestriction.addRule.json +33 -33
  77. models/mutation.policy.appTenantRestriction.addSection.json +4 -4
  78. models/mutation.policy.appTenantRestriction.createPolicyRevision.json +33 -33
  79. models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +33 -33
  80. models/mutation.policy.appTenantRestriction.moveRule.json +27 -27
  81. models/mutation.policy.appTenantRestriction.moveSection.json +4 -4
  82. models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +33 -33
  83. models/mutation.policy.appTenantRestriction.removeRule.json +27 -27
  84. models/mutation.policy.appTenantRestriction.removeSection.json +4 -4
  85. models/mutation.policy.appTenantRestriction.updatePolicy.json +33 -33
  86. models/mutation.policy.appTenantRestriction.updateRule.json +33 -33
  87. models/mutation.policy.appTenantRestriction.updateSection.json +4 -4
  88. models/mutation.policy.dynamicIpAllocation.addRule.json +12 -12
  89. models/mutation.policy.dynamicIpAllocation.addSection.json +4 -4
  90. models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +18 -18
  91. models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +18 -18
  92. models/mutation.policy.dynamicIpAllocation.moveRule.json +12 -12
  93. models/mutation.policy.dynamicIpAllocation.moveSection.json +4 -4
  94. models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +18 -18
  95. models/mutation.policy.dynamicIpAllocation.removeRule.json +12 -12
  96. models/mutation.policy.dynamicIpAllocation.removeSection.json +4 -4
  97. models/mutation.policy.dynamicIpAllocation.updatePolicy.json +18 -18
  98. models/mutation.policy.dynamicIpAllocation.updateRule.json +12 -12
  99. models/mutation.policy.dynamicIpAllocation.updateSection.json +4 -4
  100. models/mutation.policy.internetFirewall.addRule.json +141 -141
  101. models/mutation.policy.internetFirewall.addSection.json +4 -4
  102. models/mutation.policy.internetFirewall.createPolicyRevision.json +102 -102
  103. models/mutation.policy.internetFirewall.discardPolicyRevision.json +102 -102
  104. models/mutation.policy.internetFirewall.moveRule.json +96 -96
  105. models/mutation.policy.internetFirewall.moveSection.json +4 -4
  106. models/mutation.policy.internetFirewall.publishPolicyRevision.json +102 -102
  107. models/mutation.policy.internetFirewall.removeRule.json +96 -96
  108. models/mutation.policy.internetFirewall.removeSection.json +4 -4
  109. models/mutation.policy.internetFirewall.updatePolicy.json +102 -102
  110. models/mutation.policy.internetFirewall.updateRule.json +141 -141
  111. models/mutation.policy.internetFirewall.updateSection.json +4 -4
  112. models/mutation.policy.remotePortFwd.addRule.json +21 -21
  113. models/mutation.policy.remotePortFwd.addSection.json +4 -4
  114. models/mutation.policy.remotePortFwd.createPolicyRevision.json +24 -24
  115. models/mutation.policy.remotePortFwd.discardPolicyRevision.json +24 -24
  116. models/mutation.policy.remotePortFwd.moveRule.json +18 -18
  117. models/mutation.policy.remotePortFwd.moveSection.json +4 -4
  118. models/mutation.policy.remotePortFwd.publishPolicyRevision.json +24 -24
  119. models/mutation.policy.remotePortFwd.removeRule.json +18 -18
  120. models/mutation.policy.remotePortFwd.removeSection.json +4 -4
  121. models/mutation.policy.remotePortFwd.updatePolicy.json +24 -24
  122. models/mutation.policy.remotePortFwd.updateRule.json +21 -21
  123. models/mutation.policy.remotePortFwd.updateSection.json +4 -4
  124. models/mutation.policy.socketLan.addRule.json +97 -97
  125. models/mutation.policy.socketLan.addSection.json +4 -4
  126. models/mutation.policy.socketLan.createPolicyRevision.json +91 -91
  127. models/mutation.policy.socketLan.discardPolicyRevision.json +91 -91
  128. models/mutation.policy.socketLan.moveRule.json +85 -85
  129. models/mutation.policy.socketLan.moveSection.json +4 -4
  130. models/mutation.policy.socketLan.publishPolicyRevision.json +91 -91
  131. models/mutation.policy.socketLan.removeRule.json +85 -85
  132. models/mutation.policy.socketLan.removeSection.json +4 -4
  133. models/mutation.policy.socketLan.updatePolicy.json +91 -91
  134. models/mutation.policy.socketLan.updateRule.json +97 -97
  135. models/mutation.policy.socketLan.updateSection.json +4 -4
  136. models/mutation.policy.terminalServer.addRule.json +7 -7
  137. models/mutation.policy.terminalServer.addSection.json +4 -4
  138. models/mutation.policy.terminalServer.createPolicyRevision.json +13 -13
  139. models/mutation.policy.terminalServer.discardPolicyRevision.json +13 -13
  140. models/mutation.policy.terminalServer.moveRule.json +7 -7
  141. models/mutation.policy.terminalServer.moveSection.json +4 -4
  142. models/mutation.policy.terminalServer.publishPolicyRevision.json +13 -13
  143. models/mutation.policy.terminalServer.removeRule.json +7 -7
  144. models/mutation.policy.terminalServer.removeSection.json +4 -4
  145. models/mutation.policy.terminalServer.updatePolicy.json +13 -13
  146. models/mutation.policy.terminalServer.updateRule.json +7 -7
  147. models/mutation.policy.terminalServer.updateSection.json +4 -4
  148. models/mutation.policy.wanFirewall.addRule.json +157 -157
  149. models/mutation.policy.wanFirewall.addSection.json +4 -4
  150. models/mutation.policy.wanFirewall.createPolicyRevision.json +121 -121
  151. models/mutation.policy.wanFirewall.discardPolicyRevision.json +121 -121
  152. models/mutation.policy.wanFirewall.moveRule.json +115 -115
  153. models/mutation.policy.wanFirewall.moveSection.json +4 -4
  154. models/mutation.policy.wanFirewall.publishPolicyRevision.json +121 -121
  155. models/mutation.policy.wanFirewall.removeRule.json +115 -115
  156. models/mutation.policy.wanFirewall.removeSection.json +4 -4
  157. models/mutation.policy.wanFirewall.updatePolicy.json +121 -121
  158. models/mutation.policy.wanFirewall.updateRule.json +157 -157
  159. models/mutation.policy.wanFirewall.updateSection.json +4 -4
  160. models/mutation.policy.wanNetwork.addRule.json +103 -103
  161. models/mutation.policy.wanNetwork.addSection.json +4 -4
  162. models/mutation.policy.wanNetwork.createPolicyRevision.json +97 -97
  163. models/mutation.policy.wanNetwork.discardPolicyRevision.json +97 -97
  164. models/mutation.policy.wanNetwork.moveRule.json +91 -91
  165. models/mutation.policy.wanNetwork.moveSection.json +4 -4
  166. models/mutation.policy.wanNetwork.publishPolicyRevision.json +97 -97
  167. models/mutation.policy.wanNetwork.removeRule.json +91 -91
  168. models/mutation.policy.wanNetwork.removeSection.json +4 -4
  169. models/mutation.policy.wanNetwork.updatePolicy.json +97 -97
  170. models/mutation.policy.wanNetwork.updateRule.json +103 -103
  171. models/mutation.policy.wanNetwork.updateSection.json +4 -4
  172. models/mutation.site.addBgpPeer.json +10 -10
  173. models/mutation.site.addIpsecIkeV2SiteTunnels.json +2 -2
  174. models/mutation.site.addSocketAddOnCard.json +2 -2
  175. models/mutation.site.assignSiteBwLicense.json +12879 -0
  176. models/mutation.site.removeBgpPeer.json +10 -10
  177. models/mutation.site.removeIpsecIkeV2SiteTunnels.json +2 -2
  178. models/mutation.site.removeSecondaryAwsVSocket.json +375 -0
  179. models/mutation.site.removeSecondaryAzureVSocket.json +354 -0
  180. models/mutation.site.removeSiteBwLicense.json +12822 -0
  181. models/mutation.site.removeSocketAddOnCard.json +2 -2
  182. models/mutation.site.replaceSiteBwLicense.json +12939 -0
  183. models/mutation.site.startSiteUpgrade.json +36 -15
  184. models/mutation.site.updateBgpPeer.json +10 -10
  185. models/mutation.site.updateIpsecIkeV2SiteTunnels.json +2 -2
  186. models/mutation.site.updateSecondaryAwsVSocket.json +643 -0
  187. models/mutation.site.updateSecondaryAzureVSocket.json +565 -0
  188. models/mutation.site.updateSiteBwLicense.json +12882 -0
  189. models/mutation.site.updateSiteGeneralDetails.json +724 -1
  190. models/mutation.sites.addBgpPeer.json +10 -10
  191. models/mutation.sites.addIpsecIkeV2SiteTunnels.json +2 -2
  192. models/mutation.sites.addSocketAddOnCard.json +2 -2
  193. models/mutation.sites.assignSiteBwLicense.json +12879 -0
  194. models/mutation.sites.removeBgpPeer.json +10 -10
  195. models/mutation.sites.removeIpsecIkeV2SiteTunnels.json +2 -2
  196. models/mutation.sites.removeSecondaryAwsVSocket.json +375 -0
  197. models/mutation.sites.removeSecondaryAzureVSocket.json +354 -0
  198. models/mutation.sites.removeSiteBwLicense.json +12822 -0
  199. models/mutation.sites.removeSocketAddOnCard.json +2 -2
  200. models/mutation.sites.replaceSiteBwLicense.json +12939 -0
  201. models/mutation.sites.startSiteUpgrade.json +36 -15
  202. models/mutation.sites.updateBgpPeer.json +10 -10
  203. models/mutation.sites.updateIpsecIkeV2SiteTunnels.json +2 -2
  204. models/mutation.sites.updateSecondaryAwsVSocket.json +643 -0
  205. models/mutation.sites.updateSecondaryAzureVSocket.json +565 -0
  206. models/mutation.sites.updateSiteBwLicense.json +12882 -0
  207. models/mutation.sites.updateSiteGeneralDetails.json +724 -1
  208. models/mutation.xdr.addStoryComment.json +1 -1
  209. models/mutation.xdr.analystFeedback.json +84 -84
  210. models/mutation.xdr.deleteStoryComment.json +1 -1
  211. models/query.accountManagement.json +97 -0
  212. models/query.accountMetrics.json +45 -45
  213. models/query.accountSnapshot.json +30 -30
  214. models/query.admin.json +6 -6
  215. models/query.admins.json +13 -13
  216. models/query.appStats.json +915 -867
  217. models/query.appStatsTimeSeries.json +692 -656
  218. models/query.auditFeed.json +6 -6
  219. models/query.catalogs.json +52 -52
  220. models/query.container.json +16 -16
  221. models/query.devices.json +20 -93
  222. models/query.entityLookup.json +2 -2
  223. models/query.events.json +288 -384
  224. models/query.eventsFeed.json +73 -97
  225. models/query.eventsTimeSeries.json +219 -291
  226. models/query.groups.group.members.json +3058 -0
  227. models/query.groups.groupList.json +6474 -0
  228. models/query.groups.whereUsed.json +697 -0
  229. models/query.hardware.json +27 -7
  230. models/query.hardwareManagement.json +8 -8
  231. models/query.licensing.json +3487 -1324
  232. models/query.policy.appTenantRestriction.policy.json +32 -32
  233. models/query.policy.dynamicIpAllocation.policy.json +18 -18
  234. models/query.policy.internetFirewall.policy.json +93 -93
  235. models/query.policy.remotePortFwd.policy.json +23 -23
  236. models/query.policy.socketLan.policy.json +88 -88
  237. models/query.policy.terminalServer.policy.json +13 -13
  238. models/query.policy.wanFirewall.policy.json +111 -111
  239. models/query.policy.wanNetwork.policy.json +97 -97
  240. models/query.popLocations.json +2878 -0
  241. models/query.sandbox.json +5 -5
  242. models/query.site.bgpPeer.json +4 -4
  243. models/query.site.bgpPeerList.json +10 -10
  244. models/query.site.secondaryAwsVSocket.json +340 -0
  245. models/query.site.secondaryAzureVSocket.json +319 -0
  246. models/query.site.siteBgpStatus.json +2 -2
  247. models/query.socketPortMetrics.json +2410 -0
  248. models/query.socketPortMetricsTimeSeries.json +2361 -0
  249. models/query.xdr.stories.json +104 -104
  250. models/query.xdr.story.json +93 -93
  251. schema/catolib.py +43 -16
  252. build/lib/catocli/Utils/clidriver.py +0 -268
  253. build/lib/catocli/Utils/profile_manager.py +0 -188
  254. build/lib/catocli/Utils/version_checker.py +0 -192
  255. build/lib/catocli/__init__.py +0 -2
  256. build/lib/catocli/__main__.py +0 -12
  257. build/lib/catocli/parsers/configure/__init__.py +0 -115
  258. build/lib/catocli/parsers/configure/configure.py +0 -307
  259. build/lib/catocli/parsers/custom/__init__.py +0 -57
  260. build/lib/catocli/parsers/custom/customLib.py +0 -561
  261. build/lib/catocli/parsers/custom/export_rules/__init__.py +0 -42
  262. build/lib/catocli/parsers/custom/export_rules/export_rules.py +0 -234
  263. build/lib/catocli/parsers/custom/export_sites/__init__.py +0 -21
  264. build/lib/catocli/parsers/custom/export_sites/export_sites.py +0 -372
  265. build/lib/catocli/parsers/custom/import_rules_to_tf/__init__.py +0 -58
  266. build/lib/catocli/parsers/custom/import_rules_to_tf/import_rules_to_tf.py +0 -451
  267. build/lib/catocli/parsers/custom/import_sites_to_tf/__init__.py +0 -45
  268. build/lib/catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +0 -891
  269. build/lib/catocli/parsers/mutation_accountManagement/__init__.py +0 -48
  270. build/lib/catocli/parsers/mutation_admin/__init__.py +0 -48
  271. build/lib/catocli/parsers/mutation_container/__init__.py +0 -138
  272. build/lib/catocli/parsers/mutation_hardware/__init__.py +0 -22
  273. build/lib/catocli/parsers/mutation_policy/__init__.py +0 -1305
  274. build/lib/catocli/parsers/mutation_sandbox/__init__.py +0 -35
  275. build/lib/catocli/parsers/mutation_site/__init__.py +0 -373
  276. build/lib/catocli/parsers/mutation_sites/__init__.py +0 -373
  277. build/lib/catocli/parsers/mutation_xdr/__init__.py +0 -48
  278. build/lib/catocli/parsers/parserApiClient.py +0 -513
  279. build/lib/catocli/parsers/query_accountBySubdomain/__init__.py +0 -16
  280. build/lib/catocli/parsers/query_accountManagement/__init__.py +0 -16
  281. build/lib/catocli/parsers/query_accountMetrics/__init__.py +0 -16
  282. build/lib/catocli/parsers/query_accountRoles/__init__.py +0 -16
  283. build/lib/catocli/parsers/query_accountSnapshot/__init__.py +0 -16
  284. build/lib/catocli/parsers/query_admin/__init__.py +0 -16
  285. build/lib/catocli/parsers/query_admins/__init__.py +0 -16
  286. build/lib/catocli/parsers/query_appStats/__init__.py +0 -16
  287. build/lib/catocli/parsers/query_appStatsTimeSeries/__init__.py +0 -16
  288. build/lib/catocli/parsers/query_auditFeed/__init__.py +0 -16
  289. build/lib/catocli/parsers/query_catalogs/__init__.py +0 -16
  290. build/lib/catocli/parsers/query_container/__init__.py +0 -16
  291. build/lib/catocli/parsers/query_devices/__init__.py +0 -16
  292. build/lib/catocli/parsers/query_entityLookup/__init__.py +0 -16
  293. build/lib/catocli/parsers/query_events/__init__.py +0 -16
  294. build/lib/catocli/parsers/query_eventsFeed/__init__.py +0 -16
  295. build/lib/catocli/parsers/query_eventsTimeSeries/__init__.py +0 -16
  296. build/lib/catocli/parsers/query_hardware/__init__.py +0 -16
  297. build/lib/catocli/parsers/query_hardwareManagement/__init__.py +0 -16
  298. build/lib/catocli/parsers/query_licensing/__init__.py +0 -16
  299. build/lib/catocli/parsers/query_policy/__init__.py +0 -161
  300. build/lib/catocli/parsers/query_sandbox/__init__.py +0 -16
  301. build/lib/catocli/parsers/query_site/__init__.py +0 -100
  302. build/lib/catocli/parsers/query_siteLocation/__init__.py +0 -13
  303. build/lib/catocli/parsers/query_subDomains/__init__.py +0 -16
  304. build/lib/catocli/parsers/query_xdr/__init__.py +0 -35
  305. build/lib/catocli/parsers/raw/__init__.py +0 -12
  306. build/lib/graphql_client/__init__.py +0 -11
  307. build/lib/graphql_client/api/__init__.py +0 -3
  308. build/lib/graphql_client/api/call_api.py +0 -84
  309. build/lib/graphql_client/api_client.py +0 -192
  310. build/lib/graphql_client/api_client_types.py +0 -409
  311. build/lib/graphql_client/configuration.py +0 -232
  312. build/lib/graphql_client/models/__init__.py +0 -13
  313. build/lib/graphql_client/models/no_schema.py +0 -71
  314. build/lib/schema/catolib.py +0 -1141
  315. build/lib/schema/importSchema.py +0 -60
  316. build/lib/schema/remove_policyid.py +0 -89
  317. build/lib/schema/remove_policyid_mutations.py +0 -89
  318. build/lib/scripts/catolib.py +0 -62
  319. build/lib/scripts/export_if_rules_to_json.py +0 -188
  320. build/lib/scripts/export_wf_rules_to_json.py +0 -111
  321. build/lib/scripts/import_wf_rules_to_tfstate.py +0 -331
  322. build/lib/vendor/certifi/__init__.py +0 -4
  323. build/lib/vendor/certifi/__main__.py +0 -12
  324. build/lib/vendor/certifi/core.py +0 -114
  325. build/lib/vendor/certifi/py.typed +0 -0
  326. build/lib/vendor/six.py +0 -998
  327. build/lib/vendor/urllib3/__init__.py +0 -211
  328. build/lib/vendor/urllib3/_base_connection.py +0 -172
  329. build/lib/vendor/urllib3/_collections.py +0 -483
  330. build/lib/vendor/urllib3/_request_methods.py +0 -278
  331. build/lib/vendor/urllib3/_version.py +0 -16
  332. build/lib/vendor/urllib3/connection.py +0 -1033
  333. build/lib/vendor/urllib3/connectionpool.py +0 -1182
  334. build/lib/vendor/urllib3/contrib/__init__.py +0 -0
  335. build/lib/vendor/urllib3/contrib/emscripten/__init__.py +0 -18
  336. build/lib/vendor/urllib3/contrib/emscripten/connection.py +0 -254
  337. build/lib/vendor/urllib3/contrib/emscripten/fetch.py +0 -418
  338. build/lib/vendor/urllib3/contrib/emscripten/request.py +0 -22
  339. build/lib/vendor/urllib3/contrib/emscripten/response.py +0 -285
  340. build/lib/vendor/urllib3/contrib/pyopenssl.py +0 -552
  341. build/lib/vendor/urllib3/contrib/socks.py +0 -228
  342. build/lib/vendor/urllib3/exceptions.py +0 -321
  343. build/lib/vendor/urllib3/fields.py +0 -341
  344. build/lib/vendor/urllib3/filepost.py +0 -89
  345. build/lib/vendor/urllib3/http2/__init__.py +0 -53
  346. build/lib/vendor/urllib3/http2/connection.py +0 -356
  347. build/lib/vendor/urllib3/http2/probe.py +0 -87
  348. build/lib/vendor/urllib3/poolmanager.py +0 -637
  349. build/lib/vendor/urllib3/py.typed +0 -2
  350. build/lib/vendor/urllib3/response.py +0 -1265
  351. build/lib/vendor/urllib3/util/__init__.py +0 -42
  352. build/lib/vendor/urllib3/util/connection.py +0 -137
  353. build/lib/vendor/urllib3/util/proxy.py +0 -43
  354. build/lib/vendor/urllib3/util/request.py +0 -256
  355. build/lib/vendor/urllib3/util/response.py +0 -101
  356. build/lib/vendor/urllib3/util/retry.py +0 -533
  357. build/lib/vendor/urllib3/util/ssl_.py +0 -513
  358. build/lib/vendor/urllib3/util/ssl_match_hostname.py +0 -159
  359. build/lib/vendor/urllib3/util/ssltransport.py +0 -276
  360. build/lib/vendor/urllib3/util/timeout.py +0 -275
  361. build/lib/vendor/urllib3/util/url.py +0 -471
  362. build/lib/vendor/urllib3/util/util.py +0 -42
  363. build/lib/vendor/urllib3/util/wait.py +0 -124
  364. {catocli-2.0.5.dist-info → catocli-2.1.1.dist-info}/entry_points.txt +0 -0
  365. {catocli-2.0.5.dist-info → catocli-2.1.1.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,2758 @@
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
+ "deleteGroup": {
25
+ "args": {
26
+ "deleteGroup___input": {
27
+ "defaultValue": null,
28
+ "description": null,
29
+ "id_str": "deleteGroup___input",
30
+ "name": "input",
31
+ "path": "deleteGroup.input",
32
+ "requestStr": "$groupRefInput:GroupRefInput! ",
33
+ "required": true,
34
+ "responseStr": "input:$groupRefInput ",
35
+ "type": {
36
+ "definition": {
37
+ "description": null,
38
+ "enumValues": null,
39
+ "fields": null,
40
+ "inputFields": {
41
+ "by": {
42
+ "defaultValue": "ID",
43
+ "description": null,
44
+ "id_str": "deleteGroup___input___by",
45
+ "name": "by",
46
+ "path": "deleteGroup.input.by",
47
+ "requestStr": "$by:ObjectRefBy! ",
48
+ "required": true,
49
+ "responseStr": "by:$by ",
50
+ "type": {
51
+ "definition": {
52
+ "description": null,
53
+ "enumValues": [
54
+ {
55
+ "deprecationReason": null,
56
+ "description": null,
57
+ "isDeprecated": false,
58
+ "name": "ID"
59
+ },
60
+ {
61
+ "deprecationReason": null,
62
+ "description": null,
63
+ "isDeprecated": false,
64
+ "name": "NAME"
65
+ }
66
+ ],
67
+ "fields": null,
68
+ "inputFields": null,
69
+ "interfaces": null,
70
+ "kind": "ENUM",
71
+ "name": "ObjectRefBy",
72
+ "possibleTypes": null
73
+ },
74
+ "indexType": "enum",
75
+ "kind": [
76
+ "NON_NULL",
77
+ "ENUM"
78
+ ],
79
+ "name": "ObjectRefBy",
80
+ "non_null": false
81
+ },
82
+ "varName": "by"
83
+ },
84
+ "input": {
85
+ "defaultValue": null,
86
+ "description": null,
87
+ "id_str": "deleteGroup___input___input",
88
+ "name": "input",
89
+ "path": "deleteGroup.input.input",
90
+ "requestStr": "$input:String! ",
91
+ "required": true,
92
+ "responseStr": "input:$input ",
93
+ "type": {
94
+ "kind": [
95
+ "NON_NULL",
96
+ "SCALAR"
97
+ ],
98
+ "name": "String",
99
+ "non_null": false
100
+ },
101
+ "varName": "input"
102
+ }
103
+ },
104
+ "interfaces": null,
105
+ "kind": "INPUT_OBJECT",
106
+ "name": "GroupRefInput",
107
+ "possibleTypes": null
108
+ },
109
+ "indexType": "input_object",
110
+ "kind": [
111
+ "NON_NULL",
112
+ "INPUT_OBJECT"
113
+ ],
114
+ "name": "GroupRefInput",
115
+ "non_null": false
116
+ },
117
+ "varName": "groupRefInput"
118
+ }
119
+ },
120
+ "deprecationReason": null,
121
+ "description": "Delete a group",
122
+ "isDeprecated": false,
123
+ "name": "deleteGroup",
124
+ "type": {
125
+ "kind": "OBJECT",
126
+ "name": "DeleteGroupPayload",
127
+ "ofType": null
128
+ }
129
+ }
130
+ },
131
+ "deprecationReason": null,
132
+ "description": "Mutations for creating, updating, or deleting groups",
133
+ "fieldTypes": {
134
+ "ActorRef": true,
135
+ "AdvancedStringFilterInput": true,
136
+ "AuditingMetadata": true,
137
+ "DeleteGroupPayload": true,
138
+ "Group": true,
139
+ "GroupMemberRefType": true,
140
+ "GroupMemberRefTypeFilterInput": true,
141
+ "GroupMemberRefTyped": true,
142
+ "GroupMemberTypeCount": true,
143
+ "GroupMembersListFilterInput": true,
144
+ "GroupMembersListPayload": true,
145
+ "GroupMembersListSortInput": true,
146
+ "ObjectRefBy": true,
147
+ "PageInfo": true,
148
+ "PagingInput": true,
149
+ "SortOrder": true,
150
+ "SortOrderInput": true
151
+ },
152
+ "isDeprecated": false,
153
+ "name": "groups",
154
+ "operationArgs": {
155
+ "accountId": {
156
+ "defaultValue": null,
157
+ "description": null,
158
+ "id_str": "accountId",
159
+ "name": "accountId",
160
+ "path": "accountId",
161
+ "requestStr": "$accountId:ID! ",
162
+ "required": true,
163
+ "responseStr": "accountId:$accountId ",
164
+ "type": {
165
+ "kind": [
166
+ "NON_NULL",
167
+ "SCALAR"
168
+ ],
169
+ "name": "ID",
170
+ "non_null": false
171
+ },
172
+ "varName": "accountId"
173
+ },
174
+ "groupMembersListInput": {
175
+ "defaultValue": "{paging: {limit: 100, from: 0}, sort: {name: {direction: ASC, priority: 2}, type: {direction: ASC, priority: 1}}}",
176
+ "description": null,
177
+ "id_str": "members___input",
178
+ "name": "input",
179
+ "path": "members.input",
180
+ "requestStr": "$groupMembersListInput:GroupMembersListInput! ",
181
+ "required": true,
182
+ "responseStr": "input:$groupMembersListInput ",
183
+ "type": {
184
+ "definition": {
185
+ "description": "Filter, sort, and pagination applied when fetching the the list of group members.",
186
+ "enumValues": null,
187
+ "fields": null,
188
+ "inputFields": {
189
+ "filter": {
190
+ "defaultValue": null,
191
+ "description": null,
192
+ "id_str": "members___input___filter",
193
+ "name": "filter",
194
+ "path": "members.input.filter",
195
+ "requestStr": "$groupMembersListFilterInput:[GroupMembersListFilterInput] ",
196
+ "required": false,
197
+ "responseStr": "filter:$groupMembersListFilterInput ",
198
+ "type": {
199
+ "definition": {
200
+ "description": "Filters to narrow down group members that are fetched.",
201
+ "enumValues": null,
202
+ "fields": null,
203
+ "inputFields": {
204
+ "name": {
205
+ "defaultValue": null,
206
+ "description": "Filter group members by name",
207
+ "id_str": "members___input___filter___name",
208
+ "name": "name",
209
+ "path": "members.input.filter.name",
210
+ "requestStr": "$advancedStringFilterInput:[AdvancedStringFilterInput] ",
211
+ "required": false,
212
+ "responseStr": "name:$advancedStringFilterInput ",
213
+ "type": {
214
+ "definition": {
215
+ "description": null,
216
+ "enumValues": null,
217
+ "fields": null,
218
+ "inputFields": {
219
+ "eq": {
220
+ "defaultValue": null,
221
+ "description": null,
222
+ "id_str": "members___input___filter___name___eq",
223
+ "name": "eq",
224
+ "path": "members.input.filter.name.eq",
225
+ "requestStr": "$eq:String ",
226
+ "required": false,
227
+ "responseStr": "eq:$eq ",
228
+ "type": {
229
+ "kind": [
230
+ "SCALAR"
231
+ ],
232
+ "name": "String",
233
+ "non_null": false
234
+ },
235
+ "varName": "eq"
236
+ },
237
+ "in": {
238
+ "defaultValue": null,
239
+ "description": null,
240
+ "id_str": "members___input___filter___name___in",
241
+ "name": "in",
242
+ "path": "members.input.filter.name.in",
243
+ "requestStr": "$in:[String] ",
244
+ "required": false,
245
+ "responseStr": "in:$in ",
246
+ "type": {
247
+ "kind": [
248
+ "LIST",
249
+ "NON_NULL",
250
+ "SCALAR"
251
+ ],
252
+ "name": "String",
253
+ "non_null": false
254
+ },
255
+ "varName": "in"
256
+ },
257
+ "neq": {
258
+ "defaultValue": null,
259
+ "description": null,
260
+ "id_str": "members___input___filter___name___neq",
261
+ "name": "neq",
262
+ "path": "members.input.filter.name.neq",
263
+ "requestStr": "$neq:String ",
264
+ "required": false,
265
+ "responseStr": "neq:$neq ",
266
+ "type": {
267
+ "kind": [
268
+ "SCALAR"
269
+ ],
270
+ "name": "String",
271
+ "non_null": false
272
+ },
273
+ "varName": "neq"
274
+ },
275
+ "nin": {
276
+ "defaultValue": null,
277
+ "description": null,
278
+ "id_str": "members___input___filter___name___nin",
279
+ "name": "nin",
280
+ "path": "members.input.filter.name.nin",
281
+ "requestStr": "$nin:[String] ",
282
+ "required": false,
283
+ "responseStr": "nin:$nin ",
284
+ "type": {
285
+ "kind": [
286
+ "LIST",
287
+ "NON_NULL",
288
+ "SCALAR"
289
+ ],
290
+ "name": "String",
291
+ "non_null": false
292
+ },
293
+ "varName": "nin"
294
+ },
295
+ "regex": {
296
+ "defaultValue": null,
297
+ "description": null,
298
+ "id_str": "members___input___filter___name___regex",
299
+ "name": "regex",
300
+ "path": "members.input.filter.name.regex",
301
+ "requestStr": "$regex:String ",
302
+ "required": false,
303
+ "responseStr": "regex:$regex ",
304
+ "type": {
305
+ "kind": [
306
+ "SCALAR"
307
+ ],
308
+ "name": "String",
309
+ "non_null": false
310
+ },
311
+ "varName": "regex"
312
+ }
313
+ },
314
+ "interfaces": null,
315
+ "kind": "INPUT_OBJECT",
316
+ "name": "AdvancedStringFilterInput",
317
+ "possibleTypes": null
318
+ },
319
+ "indexType": "input_object",
320
+ "kind": [
321
+ "LIST",
322
+ "NON_NULL",
323
+ "INPUT_OBJECT"
324
+ ],
325
+ "name": "AdvancedStringFilterInput",
326
+ "non_null": false
327
+ },
328
+ "varName": "advancedStringFilterInput"
329
+ },
330
+ "type": {
331
+ "defaultValue": null,
332
+ "description": "Filter group members by type",
333
+ "id_str": "members___input___filter___type",
334
+ "name": "type",
335
+ "path": "members.input.filter.type",
336
+ "requestStr": "$groupMemberRefTypeFilterInput:[GroupMemberRefTypeFilterInput] ",
337
+ "required": false,
338
+ "responseStr": "type:$groupMemberRefTypeFilterInput ",
339
+ "type": {
340
+ "definition": {
341
+ "description": "Filter member types using the supported operators",
342
+ "enumValues": null,
343
+ "fields": null,
344
+ "inputFields": {
345
+ "eq": {
346
+ "defaultValue": null,
347
+ "description": "Match if member type equals this value",
348
+ "id_str": "members___input___filter___type___eq",
349
+ "name": "eq",
350
+ "path": "members.input.filter.type.eq",
351
+ "requestStr": "$eq:GroupMemberRefType ",
352
+ "required": false,
353
+ "responseStr": "eq:$eq ",
354
+ "type": {
355
+ "definition": {
356
+ "description": "Member types that can be referenced in a group.",
357
+ "enumValues": [
358
+ {
359
+ "deprecationReason": null,
360
+ "description": null,
361
+ "isDeprecated": false,
362
+ "name": "SITE"
363
+ },
364
+ {
365
+ "deprecationReason": null,
366
+ "description": null,
367
+ "isDeprecated": false,
368
+ "name": "NETWORK_INTERFACE"
369
+ },
370
+ {
371
+ "deprecationReason": null,
372
+ "description": null,
373
+ "isDeprecated": false,
374
+ "name": "SITE_NETWORK_SUBNET"
375
+ },
376
+ {
377
+ "deprecationReason": null,
378
+ "description": null,
379
+ "isDeprecated": false,
380
+ "name": "FLOATING_SUBNET"
381
+ },
382
+ {
383
+ "deprecationReason": null,
384
+ "description": null,
385
+ "isDeprecated": false,
386
+ "name": "HOST"
387
+ },
388
+ {
389
+ "deprecationReason": null,
390
+ "description": null,
391
+ "isDeprecated": false,
392
+ "name": "GLOBAL_IP_RANGE"
393
+ }
394
+ ],
395
+ "fields": null,
396
+ "inputFields": null,
397
+ "interfaces": null,
398
+ "kind": "ENUM",
399
+ "name": "GroupMemberRefType",
400
+ "possibleTypes": null
401
+ },
402
+ "indexType": "enum",
403
+ "kind": [
404
+ "ENUM"
405
+ ],
406
+ "name": "GroupMemberRefType",
407
+ "non_null": false
408
+ },
409
+ "varName": "eq"
410
+ },
411
+ "in": {
412
+ "defaultValue": null,
413
+ "description": "Match if member type is in this list",
414
+ "id_str": "members___input___filter___type___in",
415
+ "name": "in",
416
+ "path": "members.input.filter.type.in",
417
+ "requestStr": "$in:[GroupMemberRefType] ",
418
+ "required": false,
419
+ "responseStr": "in:$in ",
420
+ "type": {
421
+ "definition": {
422
+ "description": "Member types that can be referenced in a group.",
423
+ "enumValues": [
424
+ {
425
+ "deprecationReason": null,
426
+ "description": null,
427
+ "isDeprecated": false,
428
+ "name": "SITE"
429
+ },
430
+ {
431
+ "deprecationReason": null,
432
+ "description": null,
433
+ "isDeprecated": false,
434
+ "name": "NETWORK_INTERFACE"
435
+ },
436
+ {
437
+ "deprecationReason": null,
438
+ "description": null,
439
+ "isDeprecated": false,
440
+ "name": "SITE_NETWORK_SUBNET"
441
+ },
442
+ {
443
+ "deprecationReason": null,
444
+ "description": null,
445
+ "isDeprecated": false,
446
+ "name": "FLOATING_SUBNET"
447
+ },
448
+ {
449
+ "deprecationReason": null,
450
+ "description": null,
451
+ "isDeprecated": false,
452
+ "name": "HOST"
453
+ },
454
+ {
455
+ "deprecationReason": null,
456
+ "description": null,
457
+ "isDeprecated": false,
458
+ "name": "GLOBAL_IP_RANGE"
459
+ }
460
+ ],
461
+ "fields": null,
462
+ "inputFields": null,
463
+ "interfaces": null,
464
+ "kind": "ENUM",
465
+ "name": "GroupMemberRefType",
466
+ "possibleTypes": null
467
+ },
468
+ "indexType": "enum",
469
+ "kind": [
470
+ "LIST",
471
+ "NON_NULL",
472
+ "ENUM"
473
+ ],
474
+ "name": "GroupMemberRefType",
475
+ "non_null": false
476
+ },
477
+ "varName": "in"
478
+ },
479
+ "neq": {
480
+ "defaultValue": null,
481
+ "description": "Match if member type does not equal this value",
482
+ "id_str": "members___input___filter___type___neq",
483
+ "name": "neq",
484
+ "path": "members.input.filter.type.neq",
485
+ "requestStr": "$neq:GroupMemberRefType ",
486
+ "required": false,
487
+ "responseStr": "neq:$neq ",
488
+ "type": {
489
+ "definition": {
490
+ "description": "Member types that can be referenced in a group.",
491
+ "enumValues": [
492
+ {
493
+ "deprecationReason": null,
494
+ "description": null,
495
+ "isDeprecated": false,
496
+ "name": "SITE"
497
+ },
498
+ {
499
+ "deprecationReason": null,
500
+ "description": null,
501
+ "isDeprecated": false,
502
+ "name": "NETWORK_INTERFACE"
503
+ },
504
+ {
505
+ "deprecationReason": null,
506
+ "description": null,
507
+ "isDeprecated": false,
508
+ "name": "SITE_NETWORK_SUBNET"
509
+ },
510
+ {
511
+ "deprecationReason": null,
512
+ "description": null,
513
+ "isDeprecated": false,
514
+ "name": "FLOATING_SUBNET"
515
+ },
516
+ {
517
+ "deprecationReason": null,
518
+ "description": null,
519
+ "isDeprecated": false,
520
+ "name": "HOST"
521
+ },
522
+ {
523
+ "deprecationReason": null,
524
+ "description": null,
525
+ "isDeprecated": false,
526
+ "name": "GLOBAL_IP_RANGE"
527
+ }
528
+ ],
529
+ "fields": null,
530
+ "inputFields": null,
531
+ "interfaces": null,
532
+ "kind": "ENUM",
533
+ "name": "GroupMemberRefType",
534
+ "possibleTypes": null
535
+ },
536
+ "indexType": "enum",
537
+ "kind": [
538
+ "ENUM"
539
+ ],
540
+ "name": "GroupMemberRefType",
541
+ "non_null": false
542
+ },
543
+ "varName": "neq"
544
+ },
545
+ "nin": {
546
+ "defaultValue": null,
547
+ "description": "Match if member type is not in this list",
548
+ "id_str": "members___input___filter___type___nin",
549
+ "name": "nin",
550
+ "path": "members.input.filter.type.nin",
551
+ "requestStr": "$nin:[GroupMemberRefType] ",
552
+ "required": false,
553
+ "responseStr": "nin:$nin ",
554
+ "type": {
555
+ "definition": {
556
+ "description": "Member types that can be referenced in a group.",
557
+ "enumValues": [
558
+ {
559
+ "deprecationReason": null,
560
+ "description": null,
561
+ "isDeprecated": false,
562
+ "name": "SITE"
563
+ },
564
+ {
565
+ "deprecationReason": null,
566
+ "description": null,
567
+ "isDeprecated": false,
568
+ "name": "NETWORK_INTERFACE"
569
+ },
570
+ {
571
+ "deprecationReason": null,
572
+ "description": null,
573
+ "isDeprecated": false,
574
+ "name": "SITE_NETWORK_SUBNET"
575
+ },
576
+ {
577
+ "deprecationReason": null,
578
+ "description": null,
579
+ "isDeprecated": false,
580
+ "name": "FLOATING_SUBNET"
581
+ },
582
+ {
583
+ "deprecationReason": null,
584
+ "description": null,
585
+ "isDeprecated": false,
586
+ "name": "HOST"
587
+ },
588
+ {
589
+ "deprecationReason": null,
590
+ "description": null,
591
+ "isDeprecated": false,
592
+ "name": "GLOBAL_IP_RANGE"
593
+ }
594
+ ],
595
+ "fields": null,
596
+ "inputFields": null,
597
+ "interfaces": null,
598
+ "kind": "ENUM",
599
+ "name": "GroupMemberRefType",
600
+ "possibleTypes": null
601
+ },
602
+ "indexType": "enum",
603
+ "kind": [
604
+ "LIST",
605
+ "NON_NULL",
606
+ "ENUM"
607
+ ],
608
+ "name": "GroupMemberRefType",
609
+ "non_null": false
610
+ },
611
+ "varName": "nin"
612
+ }
613
+ },
614
+ "interfaces": null,
615
+ "kind": "INPUT_OBJECT",
616
+ "name": "GroupMemberRefTypeFilterInput",
617
+ "possibleTypes": null
618
+ },
619
+ "indexType": "input_object",
620
+ "kind": [
621
+ "LIST",
622
+ "NON_NULL",
623
+ "INPUT_OBJECT"
624
+ ],
625
+ "name": "GroupMemberRefTypeFilterInput",
626
+ "non_null": false
627
+ },
628
+ "varName": "groupMemberRefTypeFilterInput"
629
+ }
630
+ },
631
+ "interfaces": null,
632
+ "kind": "INPUT_OBJECT",
633
+ "name": "GroupMembersListFilterInput",
634
+ "possibleTypes": null
635
+ },
636
+ "indexType": "input_object",
637
+ "kind": [
638
+ "LIST",
639
+ "NON_NULL",
640
+ "INPUT_OBJECT"
641
+ ],
642
+ "name": "GroupMembersListFilterInput",
643
+ "non_null": false
644
+ },
645
+ "varName": "groupMembersListFilterInput"
646
+ },
647
+ "paging": {
648
+ "defaultValue": "{limit: 100, from: 0}",
649
+ "description": null,
650
+ "id_str": "members___input___paging",
651
+ "name": "paging",
652
+ "path": "members.input.paging",
653
+ "requestStr": "$pagingInput:PagingInput! ",
654
+ "required": true,
655
+ "responseStr": "paging:$pagingInput ",
656
+ "type": {
657
+ "definition": {
658
+ "description": null,
659
+ "enumValues": null,
660
+ "fields": null,
661
+ "inputFields": {
662
+ "from": {
663
+ "defaultValue": "0",
664
+ "description": null,
665
+ "id_str": "members___input___paging___from",
666
+ "name": "from",
667
+ "path": "members.input.paging.from",
668
+ "requestStr": "$from:Int! ",
669
+ "required": true,
670
+ "responseStr": "from:$from ",
671
+ "type": {
672
+ "kind": [
673
+ "NON_NULL",
674
+ "SCALAR"
675
+ ],
676
+ "name": "Int",
677
+ "non_null": false
678
+ },
679
+ "varName": "from"
680
+ },
681
+ "limit": {
682
+ "defaultValue": "100",
683
+ "description": null,
684
+ "id_str": "members___input___paging___limit",
685
+ "name": "limit",
686
+ "path": "members.input.paging.limit",
687
+ "requestStr": "$limit:Int! ",
688
+ "required": true,
689
+ "responseStr": "limit:$limit ",
690
+ "type": {
691
+ "kind": [
692
+ "NON_NULL",
693
+ "SCALAR"
694
+ ],
695
+ "name": "Int",
696
+ "non_null": false
697
+ },
698
+ "varName": "limit"
699
+ }
700
+ },
701
+ "interfaces": null,
702
+ "kind": "INPUT_OBJECT",
703
+ "name": "PagingInput",
704
+ "possibleTypes": null
705
+ },
706
+ "indexType": "input_object",
707
+ "kind": [
708
+ "NON_NULL",
709
+ "INPUT_OBJECT"
710
+ ],
711
+ "name": "PagingInput",
712
+ "non_null": false
713
+ },
714
+ "varName": "pagingInput"
715
+ },
716
+ "sort": {
717
+ "defaultValue": "{name: {direction: ASC, priority: 2}, type: {direction: ASC, priority: 1}}",
718
+ "description": null,
719
+ "id_str": "members___input___sort",
720
+ "name": "sort",
721
+ "path": "members.input.sort",
722
+ "requestStr": "$groupMembersListSortInput:GroupMembersListSortInput! ",
723
+ "required": true,
724
+ "responseStr": "sort:$groupMembersListSortInput ",
725
+ "type": {
726
+ "definition": {
727
+ "description": "Sort group members by one or more fields.\nIf multiple fields are specified, the system uses their priority to determine order. For example, type with priority 1 will be used first, then name with priority 2.",
728
+ "enumValues": null,
729
+ "fields": null,
730
+ "inputFields": {
731
+ "name": {
732
+ "defaultValue": null,
733
+ "description": "Sort by member name",
734
+ "id_str": "members___input___sort___name",
735
+ "name": "name",
736
+ "path": "members.input.sort.name",
737
+ "requestStr": "$sortOrderInput:SortOrderInput ",
738
+ "required": false,
739
+ "responseStr": "name:$sortOrderInput ",
740
+ "type": {
741
+ "definition": {
742
+ "description": null,
743
+ "enumValues": null,
744
+ "fields": null,
745
+ "inputFields": {
746
+ "direction": {
747
+ "defaultValue": "ASC",
748
+ "description": null,
749
+ "id_str": "members___input___sort___name___direction",
750
+ "name": "direction",
751
+ "path": "members.input.sort.name.direction",
752
+ "requestStr": "$direction:SortOrder! ",
753
+ "required": true,
754
+ "responseStr": "direction:$direction ",
755
+ "type": {
756
+ "definition": {
757
+ "description": null,
758
+ "enumValues": [
759
+ {
760
+ "deprecationReason": null,
761
+ "description": null,
762
+ "isDeprecated": false,
763
+ "name": "ASC"
764
+ },
765
+ {
766
+ "deprecationReason": null,
767
+ "description": null,
768
+ "isDeprecated": false,
769
+ "name": "DESC"
770
+ }
771
+ ],
772
+ "fields": null,
773
+ "inputFields": null,
774
+ "interfaces": null,
775
+ "kind": "ENUM",
776
+ "name": "SortOrder",
777
+ "possibleTypes": null
778
+ },
779
+ "indexType": "enum",
780
+ "kind": [
781
+ "NON_NULL",
782
+ "ENUM"
783
+ ],
784
+ "name": "SortOrder",
785
+ "non_null": false
786
+ },
787
+ "varName": "direction"
788
+ },
789
+ "priority": {
790
+ "defaultValue": "1",
791
+ "description": null,
792
+ "id_str": "members___input___sort___name___priority",
793
+ "name": "priority",
794
+ "path": "members.input.sort.name.priority",
795
+ "requestStr": "$priority:Int! ",
796
+ "required": true,
797
+ "responseStr": "priority:$priority ",
798
+ "type": {
799
+ "kind": [
800
+ "NON_NULL",
801
+ "SCALAR"
802
+ ],
803
+ "name": "Int",
804
+ "non_null": false
805
+ },
806
+ "varName": "priority"
807
+ }
808
+ },
809
+ "interfaces": null,
810
+ "kind": "INPUT_OBJECT",
811
+ "name": "SortOrderInput",
812
+ "possibleTypes": null
813
+ },
814
+ "indexType": "input_object",
815
+ "kind": [
816
+ "INPUT_OBJECT"
817
+ ],
818
+ "name": "SortOrderInput",
819
+ "non_null": false
820
+ },
821
+ "varName": "sortOrderInput"
822
+ },
823
+ "type": {
824
+ "defaultValue": null,
825
+ "description": "Sort by member type",
826
+ "id_str": "members___input___sort___type",
827
+ "name": "type",
828
+ "path": "members.input.sort.type",
829
+ "requestStr": "$sortOrderInput:SortOrderInput ",
830
+ "required": false,
831
+ "responseStr": "type:$sortOrderInput ",
832
+ "type": {
833
+ "definition": {
834
+ "description": null,
835
+ "enumValues": null,
836
+ "fields": null,
837
+ "inputFields": {
838
+ "direction": {
839
+ "defaultValue": "ASC",
840
+ "description": null,
841
+ "id_str": "members___input___sort___type___direction",
842
+ "name": "direction",
843
+ "path": "members.input.sort.type.direction",
844
+ "requestStr": "$direction:SortOrder! ",
845
+ "required": true,
846
+ "responseStr": "direction:$direction ",
847
+ "type": {
848
+ "definition": {
849
+ "description": null,
850
+ "enumValues": [
851
+ {
852
+ "deprecationReason": null,
853
+ "description": null,
854
+ "isDeprecated": false,
855
+ "name": "ASC"
856
+ },
857
+ {
858
+ "deprecationReason": null,
859
+ "description": null,
860
+ "isDeprecated": false,
861
+ "name": "DESC"
862
+ }
863
+ ],
864
+ "fields": null,
865
+ "inputFields": null,
866
+ "interfaces": null,
867
+ "kind": "ENUM",
868
+ "name": "SortOrder",
869
+ "possibleTypes": null
870
+ },
871
+ "indexType": "enum",
872
+ "kind": [
873
+ "NON_NULL",
874
+ "ENUM"
875
+ ],
876
+ "name": "SortOrder",
877
+ "non_null": false
878
+ },
879
+ "varName": "direction"
880
+ },
881
+ "priority": {
882
+ "defaultValue": "1",
883
+ "description": null,
884
+ "id_str": "members___input___sort___type___priority",
885
+ "name": "priority",
886
+ "path": "members.input.sort.type.priority",
887
+ "requestStr": "$priority:Int! ",
888
+ "required": true,
889
+ "responseStr": "priority:$priority ",
890
+ "type": {
891
+ "kind": [
892
+ "NON_NULL",
893
+ "SCALAR"
894
+ ],
895
+ "name": "Int",
896
+ "non_null": false
897
+ },
898
+ "varName": "priority"
899
+ }
900
+ },
901
+ "interfaces": null,
902
+ "kind": "INPUT_OBJECT",
903
+ "name": "SortOrderInput",
904
+ "possibleTypes": null
905
+ },
906
+ "indexType": "input_object",
907
+ "kind": [
908
+ "INPUT_OBJECT"
909
+ ],
910
+ "name": "SortOrderInput",
911
+ "non_null": false
912
+ },
913
+ "varName": "sortOrderInput"
914
+ }
915
+ },
916
+ "interfaces": null,
917
+ "kind": "INPUT_OBJECT",
918
+ "name": "GroupMembersListSortInput",
919
+ "possibleTypes": null
920
+ },
921
+ "indexType": "input_object",
922
+ "kind": [
923
+ "NON_NULL",
924
+ "INPUT_OBJECT"
925
+ ],
926
+ "name": "GroupMembersListSortInput",
927
+ "non_null": false
928
+ },
929
+ "varName": "groupMembersListSortInput"
930
+ }
931
+ },
932
+ "interfaces": null,
933
+ "kind": "INPUT_OBJECT",
934
+ "name": "GroupMembersListInput",
935
+ "possibleTypes": null
936
+ },
937
+ "indexType": "input_object",
938
+ "kind": [
939
+ "NON_NULL",
940
+ "INPUT_OBJECT"
941
+ ],
942
+ "name": "GroupMembersListInput",
943
+ "non_null": false
944
+ },
945
+ "varName": "groupMembersListInput"
946
+ },
947
+ "groupRefInput": {
948
+ "defaultValue": null,
949
+ "description": null,
950
+ "id_str": "deleteGroup___input",
951
+ "name": "input",
952
+ "path": "deleteGroup.input",
953
+ "requestStr": "$groupRefInput:GroupRefInput! ",
954
+ "required": true,
955
+ "responseStr": "input:$groupRefInput ",
956
+ "type": {
957
+ "definition": {
958
+ "description": null,
959
+ "enumValues": null,
960
+ "fields": null,
961
+ "inputFields": {
962
+ "by": {
963
+ "defaultValue": "ID",
964
+ "description": null,
965
+ "id_str": "deleteGroup___input___by",
966
+ "name": "by",
967
+ "path": "deleteGroup.input.by",
968
+ "requestStr": "$by:ObjectRefBy! ",
969
+ "required": true,
970
+ "responseStr": "by:$by ",
971
+ "type": {
972
+ "definition": {
973
+ "description": null,
974
+ "enumValues": [
975
+ {
976
+ "deprecationReason": null,
977
+ "description": null,
978
+ "isDeprecated": false,
979
+ "name": "ID"
980
+ },
981
+ {
982
+ "deprecationReason": null,
983
+ "description": null,
984
+ "isDeprecated": false,
985
+ "name": "NAME"
986
+ }
987
+ ],
988
+ "fields": null,
989
+ "inputFields": null,
990
+ "interfaces": null,
991
+ "kind": "ENUM",
992
+ "name": "ObjectRefBy",
993
+ "possibleTypes": null
994
+ },
995
+ "indexType": "enum",
996
+ "kind": [
997
+ "NON_NULL",
998
+ "ENUM"
999
+ ],
1000
+ "name": "ObjectRefBy",
1001
+ "non_null": false
1002
+ },
1003
+ "varName": "by"
1004
+ },
1005
+ "input": {
1006
+ "defaultValue": null,
1007
+ "description": null,
1008
+ "id_str": "deleteGroup___input___input",
1009
+ "name": "input",
1010
+ "path": "deleteGroup.input.input",
1011
+ "requestStr": "$input:String! ",
1012
+ "required": true,
1013
+ "responseStr": "input:$input ",
1014
+ "type": {
1015
+ "kind": [
1016
+ "NON_NULL",
1017
+ "SCALAR"
1018
+ ],
1019
+ "name": "String",
1020
+ "non_null": false
1021
+ },
1022
+ "varName": "input"
1023
+ }
1024
+ },
1025
+ "interfaces": null,
1026
+ "kind": "INPUT_OBJECT",
1027
+ "name": "GroupRefInput",
1028
+ "possibleTypes": null
1029
+ },
1030
+ "indexType": "input_object",
1031
+ "kind": [
1032
+ "NON_NULL",
1033
+ "INPUT_OBJECT"
1034
+ ],
1035
+ "name": "GroupRefInput",
1036
+ "non_null": false
1037
+ },
1038
+ "varName": "groupRefInput"
1039
+ }
1040
+ },
1041
+ "path": "mutation.groups.deleteGroup",
1042
+ "type": {
1043
+ "definition": {
1044
+ "description": "Operations for managing groups",
1045
+ "enumValues": null,
1046
+ "fields": {
1047
+ "deleteGroup": {
1048
+ "args": {
1049
+ "deleteGroup___input": {
1050
+ "defaultValue": null,
1051
+ "description": null,
1052
+ "id_str": "deleteGroup___input",
1053
+ "name": "input",
1054
+ "path": "deleteGroup.input",
1055
+ "requestStr": "$groupRefInput:GroupRefInput! ",
1056
+ "required": true,
1057
+ "responseStr": "input:$groupRefInput ",
1058
+ "type": {
1059
+ "definition": {
1060
+ "description": null,
1061
+ "enumValues": null,
1062
+ "fields": null,
1063
+ "inputFields": {
1064
+ "by": {
1065
+ "defaultValue": "ID",
1066
+ "description": null,
1067
+ "id_str": "deleteGroup___input___by",
1068
+ "name": "by",
1069
+ "path": "deleteGroup.input.by",
1070
+ "requestStr": "$by:ObjectRefBy! ",
1071
+ "required": true,
1072
+ "responseStr": "by:$by ",
1073
+ "type": {
1074
+ "definition": {
1075
+ "description": null,
1076
+ "enumValues": [
1077
+ {
1078
+ "deprecationReason": null,
1079
+ "description": null,
1080
+ "isDeprecated": false,
1081
+ "name": "ID"
1082
+ },
1083
+ {
1084
+ "deprecationReason": null,
1085
+ "description": null,
1086
+ "isDeprecated": false,
1087
+ "name": "NAME"
1088
+ }
1089
+ ],
1090
+ "fields": null,
1091
+ "inputFields": null,
1092
+ "interfaces": null,
1093
+ "kind": "ENUM",
1094
+ "name": "ObjectRefBy",
1095
+ "possibleTypes": null
1096
+ },
1097
+ "indexType": "enum",
1098
+ "kind": [
1099
+ "NON_NULL",
1100
+ "ENUM"
1101
+ ],
1102
+ "name": "ObjectRefBy",
1103
+ "non_null": false
1104
+ },
1105
+ "varName": "by"
1106
+ },
1107
+ "input": {
1108
+ "defaultValue": null,
1109
+ "description": null,
1110
+ "id_str": "deleteGroup___input___input",
1111
+ "name": "input",
1112
+ "path": "deleteGroup.input.input",
1113
+ "requestStr": "$input:String! ",
1114
+ "required": true,
1115
+ "responseStr": "input:$input ",
1116
+ "type": {
1117
+ "kind": [
1118
+ "NON_NULL",
1119
+ "SCALAR"
1120
+ ],
1121
+ "name": "String",
1122
+ "non_null": false
1123
+ },
1124
+ "varName": "input"
1125
+ }
1126
+ },
1127
+ "interfaces": null,
1128
+ "kind": "INPUT_OBJECT",
1129
+ "name": "GroupRefInput",
1130
+ "possibleTypes": null
1131
+ },
1132
+ "indexType": "input_object",
1133
+ "kind": [
1134
+ "NON_NULL",
1135
+ "INPUT_OBJECT"
1136
+ ],
1137
+ "name": "GroupRefInput",
1138
+ "non_null": false
1139
+ },
1140
+ "varName": "groupRefInput"
1141
+ }
1142
+ },
1143
+ "deprecationReason": null,
1144
+ "description": "Delete a group",
1145
+ "id_str": "deleteGroup",
1146
+ "isDeprecated": false,
1147
+ "name": "deleteGroup",
1148
+ "path": "deleteGroup",
1149
+ "requestStr": "$deleteGroupPayload:DeleteGroupPayload ",
1150
+ "required": false,
1151
+ "responseStr": "deleteGroup:$deleteGroupPayload ",
1152
+ "type": {
1153
+ "definition": {
1154
+ "description": "The deleted group object",
1155
+ "enumValues": null,
1156
+ "fields": {
1157
+ "group": {
1158
+ "args": {},
1159
+ "deprecationReason": null,
1160
+ "description": "The group that was deleted",
1161
+ "id_str": "deleteGroup___group",
1162
+ "isDeprecated": false,
1163
+ "name": "group",
1164
+ "path": "deleteGroup.group",
1165
+ "requestStr": "$group:Group! ",
1166
+ "required": true,
1167
+ "responseStr": "group:$group ",
1168
+ "type": {
1169
+ "definition": {
1170
+ "description": "A group is a collection of typed members (e.g., sites, hosts).\nGroups can include members of different types.\n\nWhen you update a group or use it in a policy, the system verifies that all members are allowed in the policy's scope.\nIf a group is used in a policy that doesn\u2019t support certain member types, you can't add those types to the group.\nIf a group already includes unsupported types, you can only assign it to a policy that supports those types.\nA member type is valid if it's supported in the group and allowed in the policy scope.",
1171
+ "enumValues": null,
1172
+ "fields": {
1173
+ "audit": {
1174
+ "alias": "auditGroup: audit",
1175
+ "args": {},
1176
+ "deprecationReason": null,
1177
+ "description": "Contains creation and modification metadata for the group",
1178
+ "id_str": "deleteGroup___group___audit",
1179
+ "isDeprecated": false,
1180
+ "name": "audit",
1181
+ "path": "deleteGroup.group.audit",
1182
+ "requestStr": "$auditingMetadata:AuditingMetadata! ",
1183
+ "required": true,
1184
+ "responseStr": "audit:$auditingMetadata ",
1185
+ "type": {
1186
+ "definition": {
1187
+ "description": null,
1188
+ "enumValues": null,
1189
+ "fields": {
1190
+ "updatedBy": {
1191
+ "alias": "updatedByAuditingMetadata: updatedBy",
1192
+ "args": {},
1193
+ "deprecationReason": null,
1194
+ "description": null,
1195
+ "id_str": "deleteGroup___group___audit___updatedBy",
1196
+ "isDeprecated": false,
1197
+ "name": "updatedBy",
1198
+ "path": "deleteGroup.group.audit.updatedBy",
1199
+ "requestStr": "$actorRef:ActorRef! ",
1200
+ "required": true,
1201
+ "responseStr": "updatedBy:$actorRef ",
1202
+ "type": {
1203
+ "definition": {
1204
+ "description": null,
1205
+ "enumValues": null,
1206
+ "fields": {
1207
+ "id": {
1208
+ "args": {},
1209
+ "deprecationReason": null,
1210
+ "description": null,
1211
+ "id_str": "deleteGroup___group___audit___updatedBy___id",
1212
+ "isDeprecated": false,
1213
+ "name": "id",
1214
+ "path": "deleteGroup.group.audit.updatedBy.id",
1215
+ "requestStr": "$id:ID! ",
1216
+ "required": true,
1217
+ "responseStr": "id:$id ",
1218
+ "type": {
1219
+ "kind": [
1220
+ "NON_NULL",
1221
+ "SCALAR"
1222
+ ],
1223
+ "name": "ID",
1224
+ "non_null": false
1225
+ },
1226
+ "varName": "id"
1227
+ },
1228
+ "name": {
1229
+ "args": {},
1230
+ "deprecationReason": null,
1231
+ "description": null,
1232
+ "id_str": "deleteGroup___group___audit___updatedBy___name",
1233
+ "isDeprecated": false,
1234
+ "name": "name",
1235
+ "path": "deleteGroup.group.audit.updatedBy.name",
1236
+ "requestStr": "$name:String! ",
1237
+ "required": true,
1238
+ "responseStr": "name:$name ",
1239
+ "type": {
1240
+ "kind": [
1241
+ "NON_NULL",
1242
+ "SCALAR"
1243
+ ],
1244
+ "name": "String",
1245
+ "non_null": false
1246
+ },
1247
+ "varName": "name"
1248
+ }
1249
+ },
1250
+ "inputFields": null,
1251
+ "interfaces": {},
1252
+ "kind": "INTERFACE",
1253
+ "name": "ActorRef",
1254
+ "possibleTypes": {
1255
+ "AdminRef": {
1256
+ "description": "A reference identifying the Admin object. ID: Unique Admin Identifier, Name: The Admin Name",
1257
+ "enumValues": null,
1258
+ "fields": {
1259
+ "id": {
1260
+ "alias": "adminRefId: id",
1261
+ "args": {},
1262
+ "deprecationReason": null,
1263
+ "description": null,
1264
+ "id_str": "deleteGroup___group___audit___updatedBy___AdminRef___id",
1265
+ "isDeprecated": false,
1266
+ "name": "id",
1267
+ "path": "deleteGroup.group.audit.updatedBy.AdminRef.id",
1268
+ "requestStr": "$id:ID! ",
1269
+ "required": true,
1270
+ "responseStr": "id:$id ",
1271
+ "type": {
1272
+ "kind": [
1273
+ "NON_NULL",
1274
+ "SCALAR"
1275
+ ],
1276
+ "name": "ID",
1277
+ "non_null": false
1278
+ },
1279
+ "varName": "id"
1280
+ },
1281
+ "name": {
1282
+ "alias": "adminRefName: name",
1283
+ "args": {},
1284
+ "deprecationReason": null,
1285
+ "description": null,
1286
+ "id_str": "deleteGroup___group___audit___updatedBy___AdminRef___name",
1287
+ "isDeprecated": false,
1288
+ "name": "name",
1289
+ "path": "deleteGroup.group.audit.updatedBy.AdminRef.name",
1290
+ "requestStr": "$name:String! ",
1291
+ "required": true,
1292
+ "responseStr": "name:$name ",
1293
+ "type": {
1294
+ "kind": [
1295
+ "NON_NULL",
1296
+ "SCALAR"
1297
+ ],
1298
+ "name": "String",
1299
+ "non_null": false
1300
+ },
1301
+ "varName": "name"
1302
+ }
1303
+ },
1304
+ "inputFields": null,
1305
+ "interfaces": {},
1306
+ "kind": "OBJECT",
1307
+ "name": "AdminRef",
1308
+ "possibleTypes": null
1309
+ },
1310
+ "ApiKeyRef": {
1311
+ "description": "A reference identifying the ApiKey object. ID: Unique ApiKey Identifier, Name: The ApiKey Name",
1312
+ "enumValues": null,
1313
+ "fields": {
1314
+ "id": {
1315
+ "alias": "apiKeyRefId: id",
1316
+ "args": {},
1317
+ "deprecationReason": null,
1318
+ "description": null,
1319
+ "id_str": "deleteGroup___group___audit___updatedBy___ApiKeyRef___id",
1320
+ "isDeprecated": false,
1321
+ "name": "id",
1322
+ "path": "deleteGroup.group.audit.updatedBy.ApiKeyRef.id",
1323
+ "requestStr": "$id:ID! ",
1324
+ "required": true,
1325
+ "responseStr": "id:$id ",
1326
+ "type": {
1327
+ "kind": [
1328
+ "NON_NULL",
1329
+ "SCALAR"
1330
+ ],
1331
+ "name": "ID",
1332
+ "non_null": false
1333
+ },
1334
+ "varName": "id"
1335
+ },
1336
+ "name": {
1337
+ "alias": "apiKeyRefName: name",
1338
+ "args": {},
1339
+ "deprecationReason": null,
1340
+ "description": null,
1341
+ "id_str": "deleteGroup___group___audit___updatedBy___ApiKeyRef___name",
1342
+ "isDeprecated": false,
1343
+ "name": "name",
1344
+ "path": "deleteGroup.group.audit.updatedBy.ApiKeyRef.name",
1345
+ "requestStr": "$name:String! ",
1346
+ "required": true,
1347
+ "responseStr": "name:$name ",
1348
+ "type": {
1349
+ "kind": [
1350
+ "NON_NULL",
1351
+ "SCALAR"
1352
+ ],
1353
+ "name": "String",
1354
+ "non_null": false
1355
+ },
1356
+ "varName": "name"
1357
+ }
1358
+ },
1359
+ "inputFields": null,
1360
+ "interfaces": {},
1361
+ "kind": "OBJECT",
1362
+ "name": "ApiKeyRef",
1363
+ "possibleTypes": null
1364
+ }
1365
+ }
1366
+ },
1367
+ "indexType": "interface",
1368
+ "kind": [
1369
+ "NON_NULL",
1370
+ "INTERFACE"
1371
+ ],
1372
+ "name": "ActorRef",
1373
+ "non_null": false
1374
+ },
1375
+ "varName": "actorRef"
1376
+ },
1377
+ "updatedTime": {
1378
+ "args": {},
1379
+ "deprecationReason": null,
1380
+ "description": null,
1381
+ "id_str": "deleteGroup___group___audit___updatedTime",
1382
+ "isDeprecated": false,
1383
+ "name": "updatedTime",
1384
+ "path": "deleteGroup.group.audit.updatedTime",
1385
+ "requestStr": "$updatedTime:DateTime! ",
1386
+ "required": true,
1387
+ "responseStr": "updatedTime:$updatedTime ",
1388
+ "type": {
1389
+ "kind": [
1390
+ "NON_NULL",
1391
+ "SCALAR"
1392
+ ],
1393
+ "name": "DateTime",
1394
+ "non_null": false
1395
+ },
1396
+ "varName": "updatedTime"
1397
+ }
1398
+ },
1399
+ "inputFields": null,
1400
+ "interfaces": {},
1401
+ "kind": "OBJECT",
1402
+ "name": "AuditingMetadata",
1403
+ "possibleTypes": null
1404
+ },
1405
+ "indexType": "object",
1406
+ "kind": [
1407
+ "NON_NULL",
1408
+ "OBJECT"
1409
+ ],
1410
+ "name": "AuditingMetadata",
1411
+ "non_null": false
1412
+ },
1413
+ "varName": "auditingMetadata"
1414
+ },
1415
+ "description": {
1416
+ "args": {},
1417
+ "deprecationReason": null,
1418
+ "description": "Optional free-text description for documentation or context",
1419
+ "id_str": "deleteGroup___group___description",
1420
+ "isDeprecated": false,
1421
+ "name": "description",
1422
+ "path": "deleteGroup.group.description",
1423
+ "requestStr": "$description:String ",
1424
+ "required": false,
1425
+ "responseStr": "description:$description ",
1426
+ "type": {
1427
+ "kind": [
1428
+ "SCALAR"
1429
+ ],
1430
+ "name": "String",
1431
+ "non_null": false
1432
+ },
1433
+ "varName": "description"
1434
+ },
1435
+ "id": {
1436
+ "args": {},
1437
+ "deprecationReason": null,
1438
+ "description": "Unique ID for the group.",
1439
+ "id_str": "deleteGroup___group___id",
1440
+ "isDeprecated": false,
1441
+ "name": "id",
1442
+ "path": "deleteGroup.group.id",
1443
+ "requestStr": "$id:ID! ",
1444
+ "required": true,
1445
+ "responseStr": "id:$id ",
1446
+ "type": {
1447
+ "kind": [
1448
+ "NON_NULL",
1449
+ "SCALAR"
1450
+ ],
1451
+ "name": "ID",
1452
+ "non_null": false
1453
+ },
1454
+ "varName": "id"
1455
+ },
1456
+ "members": {
1457
+ "alias": "membersGroup: members",
1458
+ "args": {
1459
+ "members___input": {
1460
+ "defaultValue": "{paging: {limit: 100, from: 0}, sort: {name: {direction: ASC, priority: 2}, type: {direction: ASC, priority: 1}}}",
1461
+ "description": null,
1462
+ "id_str": "members___input",
1463
+ "name": "input",
1464
+ "path": "members.input",
1465
+ "requestStr": "$groupMembersListInput:GroupMembersListInput! ",
1466
+ "required": true,
1467
+ "responseStr": "input:$groupMembersListInput ",
1468
+ "type": {
1469
+ "definition": {
1470
+ "description": "Filter, sort, and pagination applied when fetching the the list of group members.",
1471
+ "enumValues": null,
1472
+ "fields": null,
1473
+ "inputFields": {
1474
+ "filter": {
1475
+ "defaultValue": null,
1476
+ "description": null,
1477
+ "id_str": "members___input___filter",
1478
+ "name": "filter",
1479
+ "path": "members.input.filter",
1480
+ "requestStr": "$groupMembersListFilterInput:[GroupMembersListFilterInput] ",
1481
+ "required": false,
1482
+ "responseStr": "filter:$groupMembersListFilterInput ",
1483
+ "type": {
1484
+ "definition": {
1485
+ "description": "Filters to narrow down group members that are fetched.",
1486
+ "enumValues": null,
1487
+ "fields": null,
1488
+ "inputFields": {
1489
+ "name": {
1490
+ "defaultValue": null,
1491
+ "description": "Filter group members by name",
1492
+ "id_str": "members___input___filter___name",
1493
+ "name": "name",
1494
+ "path": "members.input.filter.name",
1495
+ "requestStr": "$advancedStringFilterInput:[AdvancedStringFilterInput] ",
1496
+ "required": false,
1497
+ "responseStr": "name:$advancedStringFilterInput ",
1498
+ "type": {
1499
+ "definition": {
1500
+ "description": null,
1501
+ "enumValues": null,
1502
+ "fields": null,
1503
+ "inputFields": {
1504
+ "eq": {
1505
+ "defaultValue": null,
1506
+ "description": null,
1507
+ "id_str": "members___input___filter___name___eq",
1508
+ "name": "eq",
1509
+ "path": "members.input.filter.name.eq",
1510
+ "requestStr": "$eq:String ",
1511
+ "required": false,
1512
+ "responseStr": "eq:$eq ",
1513
+ "type": {
1514
+ "kind": [
1515
+ "SCALAR"
1516
+ ],
1517
+ "name": "String",
1518
+ "non_null": false
1519
+ },
1520
+ "varName": "eq"
1521
+ },
1522
+ "in": {
1523
+ "defaultValue": null,
1524
+ "description": null,
1525
+ "id_str": "members___input___filter___name___in",
1526
+ "name": "in",
1527
+ "path": "members.input.filter.name.in",
1528
+ "requestStr": "$in:[String] ",
1529
+ "required": false,
1530
+ "responseStr": "in:$in ",
1531
+ "type": {
1532
+ "kind": [
1533
+ "LIST",
1534
+ "NON_NULL",
1535
+ "SCALAR"
1536
+ ],
1537
+ "name": "String",
1538
+ "non_null": false
1539
+ },
1540
+ "varName": "in"
1541
+ },
1542
+ "neq": {
1543
+ "defaultValue": null,
1544
+ "description": null,
1545
+ "id_str": "members___input___filter___name___neq",
1546
+ "name": "neq",
1547
+ "path": "members.input.filter.name.neq",
1548
+ "requestStr": "$neq:String ",
1549
+ "required": false,
1550
+ "responseStr": "neq:$neq ",
1551
+ "type": {
1552
+ "kind": [
1553
+ "SCALAR"
1554
+ ],
1555
+ "name": "String",
1556
+ "non_null": false
1557
+ },
1558
+ "varName": "neq"
1559
+ },
1560
+ "nin": {
1561
+ "defaultValue": null,
1562
+ "description": null,
1563
+ "id_str": "members___input___filter___name___nin",
1564
+ "name": "nin",
1565
+ "path": "members.input.filter.name.nin",
1566
+ "requestStr": "$nin:[String] ",
1567
+ "required": false,
1568
+ "responseStr": "nin:$nin ",
1569
+ "type": {
1570
+ "kind": [
1571
+ "LIST",
1572
+ "NON_NULL",
1573
+ "SCALAR"
1574
+ ],
1575
+ "name": "String",
1576
+ "non_null": false
1577
+ },
1578
+ "varName": "nin"
1579
+ },
1580
+ "regex": {
1581
+ "defaultValue": null,
1582
+ "description": null,
1583
+ "id_str": "members___input___filter___name___regex",
1584
+ "name": "regex",
1585
+ "path": "members.input.filter.name.regex",
1586
+ "requestStr": "$regex:String ",
1587
+ "required": false,
1588
+ "responseStr": "regex:$regex ",
1589
+ "type": {
1590
+ "kind": [
1591
+ "SCALAR"
1592
+ ],
1593
+ "name": "String",
1594
+ "non_null": false
1595
+ },
1596
+ "varName": "regex"
1597
+ }
1598
+ },
1599
+ "interfaces": null,
1600
+ "kind": "INPUT_OBJECT",
1601
+ "name": "AdvancedStringFilterInput",
1602
+ "possibleTypes": null
1603
+ },
1604
+ "indexType": "input_object",
1605
+ "kind": [
1606
+ "LIST",
1607
+ "NON_NULL",
1608
+ "INPUT_OBJECT"
1609
+ ],
1610
+ "name": "AdvancedStringFilterInput",
1611
+ "non_null": false
1612
+ },
1613
+ "varName": "advancedStringFilterInput"
1614
+ },
1615
+ "type": {
1616
+ "defaultValue": null,
1617
+ "description": "Filter group members by type",
1618
+ "id_str": "members___input___filter___type",
1619
+ "name": "type",
1620
+ "path": "members.input.filter.type",
1621
+ "requestStr": "$groupMemberRefTypeFilterInput:[GroupMemberRefTypeFilterInput] ",
1622
+ "required": false,
1623
+ "responseStr": "type:$groupMemberRefTypeFilterInput ",
1624
+ "type": {
1625
+ "definition": {
1626
+ "description": "Filter member types using the supported operators",
1627
+ "enumValues": null,
1628
+ "fields": null,
1629
+ "inputFields": {
1630
+ "eq": {
1631
+ "defaultValue": null,
1632
+ "description": "Match if member type equals this value",
1633
+ "id_str": "members___input___filter___type___eq",
1634
+ "name": "eq",
1635
+ "path": "members.input.filter.type.eq",
1636
+ "requestStr": "$eq:GroupMemberRefType ",
1637
+ "required": false,
1638
+ "responseStr": "eq:$eq ",
1639
+ "type": {
1640
+ "definition": {
1641
+ "description": "Member types that can be referenced in a group.",
1642
+ "enumValues": [
1643
+ {
1644
+ "deprecationReason": null,
1645
+ "description": null,
1646
+ "isDeprecated": false,
1647
+ "name": "SITE"
1648
+ },
1649
+ {
1650
+ "deprecationReason": null,
1651
+ "description": null,
1652
+ "isDeprecated": false,
1653
+ "name": "NETWORK_INTERFACE"
1654
+ },
1655
+ {
1656
+ "deprecationReason": null,
1657
+ "description": null,
1658
+ "isDeprecated": false,
1659
+ "name": "SITE_NETWORK_SUBNET"
1660
+ },
1661
+ {
1662
+ "deprecationReason": null,
1663
+ "description": null,
1664
+ "isDeprecated": false,
1665
+ "name": "FLOATING_SUBNET"
1666
+ },
1667
+ {
1668
+ "deprecationReason": null,
1669
+ "description": null,
1670
+ "isDeprecated": false,
1671
+ "name": "HOST"
1672
+ },
1673
+ {
1674
+ "deprecationReason": null,
1675
+ "description": null,
1676
+ "isDeprecated": false,
1677
+ "name": "GLOBAL_IP_RANGE"
1678
+ }
1679
+ ],
1680
+ "fields": null,
1681
+ "inputFields": null,
1682
+ "interfaces": null,
1683
+ "kind": "ENUM",
1684
+ "name": "GroupMemberRefType",
1685
+ "possibleTypes": null
1686
+ },
1687
+ "indexType": "enum",
1688
+ "kind": [
1689
+ "ENUM"
1690
+ ],
1691
+ "name": "GroupMemberRefType",
1692
+ "non_null": false
1693
+ },
1694
+ "varName": "eq"
1695
+ },
1696
+ "in": {
1697
+ "defaultValue": null,
1698
+ "description": "Match if member type is in this list",
1699
+ "id_str": "members___input___filter___type___in",
1700
+ "name": "in",
1701
+ "path": "members.input.filter.type.in",
1702
+ "requestStr": "$in:[GroupMemberRefType] ",
1703
+ "required": false,
1704
+ "responseStr": "in:$in ",
1705
+ "type": {
1706
+ "definition": {
1707
+ "description": "Member types that can be referenced in a group.",
1708
+ "enumValues": [
1709
+ {
1710
+ "deprecationReason": null,
1711
+ "description": null,
1712
+ "isDeprecated": false,
1713
+ "name": "SITE"
1714
+ },
1715
+ {
1716
+ "deprecationReason": null,
1717
+ "description": null,
1718
+ "isDeprecated": false,
1719
+ "name": "NETWORK_INTERFACE"
1720
+ },
1721
+ {
1722
+ "deprecationReason": null,
1723
+ "description": null,
1724
+ "isDeprecated": false,
1725
+ "name": "SITE_NETWORK_SUBNET"
1726
+ },
1727
+ {
1728
+ "deprecationReason": null,
1729
+ "description": null,
1730
+ "isDeprecated": false,
1731
+ "name": "FLOATING_SUBNET"
1732
+ },
1733
+ {
1734
+ "deprecationReason": null,
1735
+ "description": null,
1736
+ "isDeprecated": false,
1737
+ "name": "HOST"
1738
+ },
1739
+ {
1740
+ "deprecationReason": null,
1741
+ "description": null,
1742
+ "isDeprecated": false,
1743
+ "name": "GLOBAL_IP_RANGE"
1744
+ }
1745
+ ],
1746
+ "fields": null,
1747
+ "inputFields": null,
1748
+ "interfaces": null,
1749
+ "kind": "ENUM",
1750
+ "name": "GroupMemberRefType",
1751
+ "possibleTypes": null
1752
+ },
1753
+ "indexType": "enum",
1754
+ "kind": [
1755
+ "LIST",
1756
+ "NON_NULL",
1757
+ "ENUM"
1758
+ ],
1759
+ "name": "GroupMemberRefType",
1760
+ "non_null": false
1761
+ },
1762
+ "varName": "in"
1763
+ },
1764
+ "neq": {
1765
+ "defaultValue": null,
1766
+ "description": "Match if member type does not equal this value",
1767
+ "id_str": "members___input___filter___type___neq",
1768
+ "name": "neq",
1769
+ "path": "members.input.filter.type.neq",
1770
+ "requestStr": "$neq:GroupMemberRefType ",
1771
+ "required": false,
1772
+ "responseStr": "neq:$neq ",
1773
+ "type": {
1774
+ "definition": {
1775
+ "description": "Member types that can be referenced in a group.",
1776
+ "enumValues": [
1777
+ {
1778
+ "deprecationReason": null,
1779
+ "description": null,
1780
+ "isDeprecated": false,
1781
+ "name": "SITE"
1782
+ },
1783
+ {
1784
+ "deprecationReason": null,
1785
+ "description": null,
1786
+ "isDeprecated": false,
1787
+ "name": "NETWORK_INTERFACE"
1788
+ },
1789
+ {
1790
+ "deprecationReason": null,
1791
+ "description": null,
1792
+ "isDeprecated": false,
1793
+ "name": "SITE_NETWORK_SUBNET"
1794
+ },
1795
+ {
1796
+ "deprecationReason": null,
1797
+ "description": null,
1798
+ "isDeprecated": false,
1799
+ "name": "FLOATING_SUBNET"
1800
+ },
1801
+ {
1802
+ "deprecationReason": null,
1803
+ "description": null,
1804
+ "isDeprecated": false,
1805
+ "name": "HOST"
1806
+ },
1807
+ {
1808
+ "deprecationReason": null,
1809
+ "description": null,
1810
+ "isDeprecated": false,
1811
+ "name": "GLOBAL_IP_RANGE"
1812
+ }
1813
+ ],
1814
+ "fields": null,
1815
+ "inputFields": null,
1816
+ "interfaces": null,
1817
+ "kind": "ENUM",
1818
+ "name": "GroupMemberRefType",
1819
+ "possibleTypes": null
1820
+ },
1821
+ "indexType": "enum",
1822
+ "kind": [
1823
+ "ENUM"
1824
+ ],
1825
+ "name": "GroupMemberRefType",
1826
+ "non_null": false
1827
+ },
1828
+ "varName": "neq"
1829
+ },
1830
+ "nin": {
1831
+ "defaultValue": null,
1832
+ "description": "Match if member type is not in this list",
1833
+ "id_str": "members___input___filter___type___nin",
1834
+ "name": "nin",
1835
+ "path": "members.input.filter.type.nin",
1836
+ "requestStr": "$nin:[GroupMemberRefType] ",
1837
+ "required": false,
1838
+ "responseStr": "nin:$nin ",
1839
+ "type": {
1840
+ "definition": {
1841
+ "description": "Member types that can be referenced in a group.",
1842
+ "enumValues": [
1843
+ {
1844
+ "deprecationReason": null,
1845
+ "description": null,
1846
+ "isDeprecated": false,
1847
+ "name": "SITE"
1848
+ },
1849
+ {
1850
+ "deprecationReason": null,
1851
+ "description": null,
1852
+ "isDeprecated": false,
1853
+ "name": "NETWORK_INTERFACE"
1854
+ },
1855
+ {
1856
+ "deprecationReason": null,
1857
+ "description": null,
1858
+ "isDeprecated": false,
1859
+ "name": "SITE_NETWORK_SUBNET"
1860
+ },
1861
+ {
1862
+ "deprecationReason": null,
1863
+ "description": null,
1864
+ "isDeprecated": false,
1865
+ "name": "FLOATING_SUBNET"
1866
+ },
1867
+ {
1868
+ "deprecationReason": null,
1869
+ "description": null,
1870
+ "isDeprecated": false,
1871
+ "name": "HOST"
1872
+ },
1873
+ {
1874
+ "deprecationReason": null,
1875
+ "description": null,
1876
+ "isDeprecated": false,
1877
+ "name": "GLOBAL_IP_RANGE"
1878
+ }
1879
+ ],
1880
+ "fields": null,
1881
+ "inputFields": null,
1882
+ "interfaces": null,
1883
+ "kind": "ENUM",
1884
+ "name": "GroupMemberRefType",
1885
+ "possibleTypes": null
1886
+ },
1887
+ "indexType": "enum",
1888
+ "kind": [
1889
+ "LIST",
1890
+ "NON_NULL",
1891
+ "ENUM"
1892
+ ],
1893
+ "name": "GroupMemberRefType",
1894
+ "non_null": false
1895
+ },
1896
+ "varName": "nin"
1897
+ }
1898
+ },
1899
+ "interfaces": null,
1900
+ "kind": "INPUT_OBJECT",
1901
+ "name": "GroupMemberRefTypeFilterInput",
1902
+ "possibleTypes": null
1903
+ },
1904
+ "indexType": "input_object",
1905
+ "kind": [
1906
+ "LIST",
1907
+ "NON_NULL",
1908
+ "INPUT_OBJECT"
1909
+ ],
1910
+ "name": "GroupMemberRefTypeFilterInput",
1911
+ "non_null": false
1912
+ },
1913
+ "varName": "groupMemberRefTypeFilterInput"
1914
+ }
1915
+ },
1916
+ "interfaces": null,
1917
+ "kind": "INPUT_OBJECT",
1918
+ "name": "GroupMembersListFilterInput",
1919
+ "possibleTypes": null
1920
+ },
1921
+ "indexType": "input_object",
1922
+ "kind": [
1923
+ "LIST",
1924
+ "NON_NULL",
1925
+ "INPUT_OBJECT"
1926
+ ],
1927
+ "name": "GroupMembersListFilterInput",
1928
+ "non_null": false
1929
+ },
1930
+ "varName": "groupMembersListFilterInput"
1931
+ },
1932
+ "paging": {
1933
+ "defaultValue": "{limit: 100, from: 0}",
1934
+ "description": null,
1935
+ "id_str": "members___input___paging",
1936
+ "name": "paging",
1937
+ "path": "members.input.paging",
1938
+ "requestStr": "$pagingInput:PagingInput! ",
1939
+ "required": true,
1940
+ "responseStr": "paging:$pagingInput ",
1941
+ "type": {
1942
+ "definition": {
1943
+ "description": null,
1944
+ "enumValues": null,
1945
+ "fields": null,
1946
+ "inputFields": {
1947
+ "from": {
1948
+ "defaultValue": "0",
1949
+ "description": null,
1950
+ "id_str": "members___input___paging___from",
1951
+ "name": "from",
1952
+ "path": "members.input.paging.from",
1953
+ "requestStr": "$from:Int! ",
1954
+ "required": true,
1955
+ "responseStr": "from:$from ",
1956
+ "type": {
1957
+ "kind": [
1958
+ "NON_NULL",
1959
+ "SCALAR"
1960
+ ],
1961
+ "name": "Int",
1962
+ "non_null": false
1963
+ },
1964
+ "varName": "from"
1965
+ },
1966
+ "limit": {
1967
+ "defaultValue": "100",
1968
+ "description": null,
1969
+ "id_str": "members___input___paging___limit",
1970
+ "name": "limit",
1971
+ "path": "members.input.paging.limit",
1972
+ "requestStr": "$limit:Int! ",
1973
+ "required": true,
1974
+ "responseStr": "limit:$limit ",
1975
+ "type": {
1976
+ "kind": [
1977
+ "NON_NULL",
1978
+ "SCALAR"
1979
+ ],
1980
+ "name": "Int",
1981
+ "non_null": false
1982
+ },
1983
+ "varName": "limit"
1984
+ }
1985
+ },
1986
+ "interfaces": null,
1987
+ "kind": "INPUT_OBJECT",
1988
+ "name": "PagingInput",
1989
+ "possibleTypes": null
1990
+ },
1991
+ "indexType": "input_object",
1992
+ "kind": [
1993
+ "NON_NULL",
1994
+ "INPUT_OBJECT"
1995
+ ],
1996
+ "name": "PagingInput",
1997
+ "non_null": false
1998
+ },
1999
+ "varName": "pagingInput"
2000
+ },
2001
+ "sort": {
2002
+ "defaultValue": "{name: {direction: ASC, priority: 2}, type: {direction: ASC, priority: 1}}",
2003
+ "description": null,
2004
+ "id_str": "members___input___sort",
2005
+ "name": "sort",
2006
+ "path": "members.input.sort",
2007
+ "requestStr": "$groupMembersListSortInput:GroupMembersListSortInput! ",
2008
+ "required": true,
2009
+ "responseStr": "sort:$groupMembersListSortInput ",
2010
+ "type": {
2011
+ "definition": {
2012
+ "description": "Sort group members by one or more fields.\nIf multiple fields are specified, the system uses their priority to determine order. For example, type with priority 1 will be used first, then name with priority 2.",
2013
+ "enumValues": null,
2014
+ "fields": null,
2015
+ "inputFields": {
2016
+ "name": {
2017
+ "defaultValue": null,
2018
+ "description": "Sort by member name",
2019
+ "id_str": "members___input___sort___name",
2020
+ "name": "name",
2021
+ "path": "members.input.sort.name",
2022
+ "requestStr": "$sortOrderInput:SortOrderInput ",
2023
+ "required": false,
2024
+ "responseStr": "name:$sortOrderInput ",
2025
+ "type": {
2026
+ "definition": {
2027
+ "description": null,
2028
+ "enumValues": null,
2029
+ "fields": null,
2030
+ "inputFields": {
2031
+ "direction": {
2032
+ "defaultValue": "ASC",
2033
+ "description": null,
2034
+ "id_str": "members___input___sort___name___direction",
2035
+ "name": "direction",
2036
+ "path": "members.input.sort.name.direction",
2037
+ "requestStr": "$direction:SortOrder! ",
2038
+ "required": true,
2039
+ "responseStr": "direction:$direction ",
2040
+ "type": {
2041
+ "definition": {
2042
+ "description": null,
2043
+ "enumValues": [
2044
+ {
2045
+ "deprecationReason": null,
2046
+ "description": null,
2047
+ "isDeprecated": false,
2048
+ "name": "ASC"
2049
+ },
2050
+ {
2051
+ "deprecationReason": null,
2052
+ "description": null,
2053
+ "isDeprecated": false,
2054
+ "name": "DESC"
2055
+ }
2056
+ ],
2057
+ "fields": null,
2058
+ "inputFields": null,
2059
+ "interfaces": null,
2060
+ "kind": "ENUM",
2061
+ "name": "SortOrder",
2062
+ "possibleTypes": null
2063
+ },
2064
+ "indexType": "enum",
2065
+ "kind": [
2066
+ "NON_NULL",
2067
+ "ENUM"
2068
+ ],
2069
+ "name": "SortOrder",
2070
+ "non_null": false
2071
+ },
2072
+ "varName": "direction"
2073
+ },
2074
+ "priority": {
2075
+ "defaultValue": "1",
2076
+ "description": null,
2077
+ "id_str": "members___input___sort___name___priority",
2078
+ "name": "priority",
2079
+ "path": "members.input.sort.name.priority",
2080
+ "requestStr": "$priority:Int! ",
2081
+ "required": true,
2082
+ "responseStr": "priority:$priority ",
2083
+ "type": {
2084
+ "kind": [
2085
+ "NON_NULL",
2086
+ "SCALAR"
2087
+ ],
2088
+ "name": "Int",
2089
+ "non_null": false
2090
+ },
2091
+ "varName": "priority"
2092
+ }
2093
+ },
2094
+ "interfaces": null,
2095
+ "kind": "INPUT_OBJECT",
2096
+ "name": "SortOrderInput",
2097
+ "possibleTypes": null
2098
+ },
2099
+ "indexType": "input_object",
2100
+ "kind": [
2101
+ "INPUT_OBJECT"
2102
+ ],
2103
+ "name": "SortOrderInput",
2104
+ "non_null": false
2105
+ },
2106
+ "varName": "sortOrderInput"
2107
+ },
2108
+ "type": {
2109
+ "defaultValue": null,
2110
+ "description": "Sort by member type",
2111
+ "id_str": "members___input___sort___type",
2112
+ "name": "type",
2113
+ "path": "members.input.sort.type",
2114
+ "requestStr": "$sortOrderInput:SortOrderInput ",
2115
+ "required": false,
2116
+ "responseStr": "type:$sortOrderInput ",
2117
+ "type": {
2118
+ "definition": {
2119
+ "description": null,
2120
+ "enumValues": null,
2121
+ "fields": null,
2122
+ "inputFields": {
2123
+ "direction": {
2124
+ "defaultValue": "ASC",
2125
+ "description": null,
2126
+ "id_str": "members___input___sort___type___direction",
2127
+ "name": "direction",
2128
+ "path": "members.input.sort.type.direction",
2129
+ "requestStr": "$direction:SortOrder! ",
2130
+ "required": true,
2131
+ "responseStr": "direction:$direction ",
2132
+ "type": {
2133
+ "definition": {
2134
+ "description": null,
2135
+ "enumValues": [
2136
+ {
2137
+ "deprecationReason": null,
2138
+ "description": null,
2139
+ "isDeprecated": false,
2140
+ "name": "ASC"
2141
+ },
2142
+ {
2143
+ "deprecationReason": null,
2144
+ "description": null,
2145
+ "isDeprecated": false,
2146
+ "name": "DESC"
2147
+ }
2148
+ ],
2149
+ "fields": null,
2150
+ "inputFields": null,
2151
+ "interfaces": null,
2152
+ "kind": "ENUM",
2153
+ "name": "SortOrder",
2154
+ "possibleTypes": null
2155
+ },
2156
+ "indexType": "enum",
2157
+ "kind": [
2158
+ "NON_NULL",
2159
+ "ENUM"
2160
+ ],
2161
+ "name": "SortOrder",
2162
+ "non_null": false
2163
+ },
2164
+ "varName": "direction"
2165
+ },
2166
+ "priority": {
2167
+ "defaultValue": "1",
2168
+ "description": null,
2169
+ "id_str": "members___input___sort___type___priority",
2170
+ "name": "priority",
2171
+ "path": "members.input.sort.type.priority",
2172
+ "requestStr": "$priority:Int! ",
2173
+ "required": true,
2174
+ "responseStr": "priority:$priority ",
2175
+ "type": {
2176
+ "kind": [
2177
+ "NON_NULL",
2178
+ "SCALAR"
2179
+ ],
2180
+ "name": "Int",
2181
+ "non_null": false
2182
+ },
2183
+ "varName": "priority"
2184
+ }
2185
+ },
2186
+ "interfaces": null,
2187
+ "kind": "INPUT_OBJECT",
2188
+ "name": "SortOrderInput",
2189
+ "possibleTypes": null
2190
+ },
2191
+ "indexType": "input_object",
2192
+ "kind": [
2193
+ "INPUT_OBJECT"
2194
+ ],
2195
+ "name": "SortOrderInput",
2196
+ "non_null": false
2197
+ },
2198
+ "varName": "sortOrderInput"
2199
+ }
2200
+ },
2201
+ "interfaces": null,
2202
+ "kind": "INPUT_OBJECT",
2203
+ "name": "GroupMembersListSortInput",
2204
+ "possibleTypes": null
2205
+ },
2206
+ "indexType": "input_object",
2207
+ "kind": [
2208
+ "NON_NULL",
2209
+ "INPUT_OBJECT"
2210
+ ],
2211
+ "name": "GroupMembersListSortInput",
2212
+ "non_null": false
2213
+ },
2214
+ "varName": "groupMembersListSortInput"
2215
+ }
2216
+ },
2217
+ "interfaces": null,
2218
+ "kind": "INPUT_OBJECT",
2219
+ "name": "GroupMembersListInput",
2220
+ "possibleTypes": null
2221
+ },
2222
+ "indexType": "input_object",
2223
+ "kind": [
2224
+ "NON_NULL",
2225
+ "INPUT_OBJECT"
2226
+ ],
2227
+ "name": "GroupMembersListInput",
2228
+ "non_null": false
2229
+ },
2230
+ "varName": "groupMembersListInput"
2231
+ }
2232
+ },
2233
+ "deprecationReason": null,
2234
+ "description": "Lists the members in this group. Supports paging, filtering, and sorting by type and name",
2235
+ "id_str": "deleteGroup___group___members",
2236
+ "isDeprecated": false,
2237
+ "name": "members",
2238
+ "path": "deleteGroup.group.members",
2239
+ "requestStr": "$groupMembersListPayload:GroupMembersListPayload! ",
2240
+ "required": true,
2241
+ "responseStr": "members:$groupMembersListPayload ",
2242
+ "type": {
2243
+ "definition": {
2244
+ "description": "A list of group members, pagination details, applied filters, and sorting information.",
2245
+ "enumValues": null,
2246
+ "fields": {
2247
+ "items": {
2248
+ "alias": "itemsGroupMembersListPayload: items",
2249
+ "args": {},
2250
+ "deprecationReason": null,
2251
+ "description": "List of members that matched the query (including filtering, sorting, and paging).",
2252
+ "id_str": "deleteGroup___group___members___items",
2253
+ "isDeprecated": false,
2254
+ "name": "items",
2255
+ "path": "deleteGroup.group.members.items",
2256
+ "requestStr": "$groupMemberRefTyped:[GroupMemberRefTyped]! ",
2257
+ "required": true,
2258
+ "responseStr": "items:$groupMemberRefTyped ",
2259
+ "type": {
2260
+ "definition": {
2261
+ "description": "Reference to a group member, including its ID, name, and type.\nUsed when listing or identifying members within a group.",
2262
+ "enumValues": null,
2263
+ "fields": {
2264
+ "id": {
2265
+ "args": {},
2266
+ "deprecationReason": null,
2267
+ "description": "Object's unique identifier",
2268
+ "id_str": "deleteGroup___group___members___items___id",
2269
+ "isDeprecated": false,
2270
+ "name": "id",
2271
+ "path": "deleteGroup.group.members.items.id",
2272
+ "requestStr": "$id:ID! ",
2273
+ "required": true,
2274
+ "responseStr": "id:$id ",
2275
+ "type": {
2276
+ "kind": [
2277
+ "NON_NULL",
2278
+ "SCALAR"
2279
+ ],
2280
+ "name": "ID",
2281
+ "non_null": false
2282
+ },
2283
+ "varName": "id"
2284
+ },
2285
+ "name": {
2286
+ "args": {},
2287
+ "deprecationReason": null,
2288
+ "description": "Object's unique name",
2289
+ "id_str": "deleteGroup___group___members___items___name",
2290
+ "isDeprecated": false,
2291
+ "name": "name",
2292
+ "path": "deleteGroup.group.members.items.name",
2293
+ "requestStr": "$name:String! ",
2294
+ "required": true,
2295
+ "responseStr": "name:$name ",
2296
+ "type": {
2297
+ "kind": [
2298
+ "NON_NULL",
2299
+ "SCALAR"
2300
+ ],
2301
+ "name": "String",
2302
+ "non_null": false
2303
+ },
2304
+ "varName": "name"
2305
+ },
2306
+ "type": {
2307
+ "alias": "typeGroupMemberRefTyped: type",
2308
+ "args": {},
2309
+ "deprecationReason": null,
2310
+ "description": null,
2311
+ "id_str": "deleteGroup___group___members___items___type",
2312
+ "isDeprecated": false,
2313
+ "name": "type",
2314
+ "path": "deleteGroup.group.members.items.type",
2315
+ "requestStr": "$type:GroupMemberRefType! ",
2316
+ "required": true,
2317
+ "responseStr": "type:$type ",
2318
+ "type": {
2319
+ "definition": {
2320
+ "description": "Member types that can be referenced in a group.",
2321
+ "enumValues": [
2322
+ {
2323
+ "deprecationReason": null,
2324
+ "description": null,
2325
+ "isDeprecated": false,
2326
+ "name": "SITE"
2327
+ },
2328
+ {
2329
+ "deprecationReason": null,
2330
+ "description": null,
2331
+ "isDeprecated": false,
2332
+ "name": "NETWORK_INTERFACE"
2333
+ },
2334
+ {
2335
+ "deprecationReason": null,
2336
+ "description": null,
2337
+ "isDeprecated": false,
2338
+ "name": "SITE_NETWORK_SUBNET"
2339
+ },
2340
+ {
2341
+ "deprecationReason": null,
2342
+ "description": null,
2343
+ "isDeprecated": false,
2344
+ "name": "FLOATING_SUBNET"
2345
+ },
2346
+ {
2347
+ "deprecationReason": null,
2348
+ "description": null,
2349
+ "isDeprecated": false,
2350
+ "name": "HOST"
2351
+ },
2352
+ {
2353
+ "deprecationReason": null,
2354
+ "description": null,
2355
+ "isDeprecated": false,
2356
+ "name": "GLOBAL_IP_RANGE"
2357
+ }
2358
+ ],
2359
+ "fields": null,
2360
+ "inputFields": null,
2361
+ "interfaces": null,
2362
+ "kind": "ENUM",
2363
+ "name": "GroupMemberRefType",
2364
+ "possibleTypes": null
2365
+ },
2366
+ "indexType": "enum",
2367
+ "kind": [
2368
+ "NON_NULL",
2369
+ "ENUM"
2370
+ ],
2371
+ "name": "GroupMemberRefType",
2372
+ "non_null": false
2373
+ },
2374
+ "varName": "type"
2375
+ }
2376
+ },
2377
+ "inputFields": null,
2378
+ "interfaces": {},
2379
+ "kind": "OBJECT",
2380
+ "name": "GroupMemberRefTyped",
2381
+ "possibleTypes": null
2382
+ },
2383
+ "indexType": "object",
2384
+ "kind": [
2385
+ "NON_NULL",
2386
+ "LIST",
2387
+ "NON_NULL",
2388
+ "OBJECT"
2389
+ ],
2390
+ "name": "GroupMemberRefTyped",
2391
+ "non_null": false
2392
+ },
2393
+ "varName": "groupMemberRefTyped"
2394
+ },
2395
+ "paging": {
2396
+ "alias": "pagingGroupMembersListPayload: paging",
2397
+ "args": {},
2398
+ "deprecationReason": null,
2399
+ "description": "Pagination information for the result set (e.g., offset, total count).",
2400
+ "id_str": "deleteGroup___group___members___paging",
2401
+ "isDeprecated": false,
2402
+ "name": "paging",
2403
+ "path": "deleteGroup.group.members.paging",
2404
+ "requestStr": "$pageInfo:PageInfo! ",
2405
+ "required": true,
2406
+ "responseStr": "paging:$pageInfo ",
2407
+ "type": {
2408
+ "definition": {
2409
+ "description": null,
2410
+ "enumValues": null,
2411
+ "fields": {
2412
+ "total": {
2413
+ "args": {},
2414
+ "deprecationReason": null,
2415
+ "description": null,
2416
+ "id_str": "deleteGroup___group___members___paging___total",
2417
+ "isDeprecated": false,
2418
+ "name": "total",
2419
+ "path": "deleteGroup.group.members.paging.total",
2420
+ "requestStr": "$total:Int! ",
2421
+ "required": true,
2422
+ "responseStr": "total:$total ",
2423
+ "type": {
2424
+ "kind": [
2425
+ "NON_NULL",
2426
+ "SCALAR"
2427
+ ],
2428
+ "name": "Int",
2429
+ "non_null": false
2430
+ },
2431
+ "varName": "total"
2432
+ }
2433
+ },
2434
+ "inputFields": null,
2435
+ "interfaces": {},
2436
+ "kind": "OBJECT",
2437
+ "name": "PageInfo",
2438
+ "possibleTypes": null
2439
+ },
2440
+ "indexType": "object",
2441
+ "kind": [
2442
+ "NON_NULL",
2443
+ "OBJECT"
2444
+ ],
2445
+ "name": "PageInfo",
2446
+ "non_null": false
2447
+ },
2448
+ "varName": "pageInfo"
2449
+ }
2450
+ },
2451
+ "inputFields": null,
2452
+ "interfaces": {},
2453
+ "kind": "OBJECT",
2454
+ "name": "GroupMembersListPayload",
2455
+ "possibleTypes": null
2456
+ },
2457
+ "indexType": "object",
2458
+ "kind": [
2459
+ "NON_NULL",
2460
+ "OBJECT"
2461
+ ],
2462
+ "name": "GroupMembersListPayload",
2463
+ "non_null": false
2464
+ },
2465
+ "varName": "groupMembersListPayload"
2466
+ },
2467
+ "membersCount": {
2468
+ "args": {},
2469
+ "deprecationReason": null,
2470
+ "description": "Total number of group members. When paging and filtering is used, this number may be higher than the number of members returned by the query",
2471
+ "id_str": "deleteGroup___group___membersCount",
2472
+ "isDeprecated": false,
2473
+ "name": "membersCount",
2474
+ "path": "deleteGroup.group.membersCount",
2475
+ "requestStr": "$membersCount:Int! ",
2476
+ "required": true,
2477
+ "responseStr": "membersCount:$membersCount ",
2478
+ "type": {
2479
+ "kind": [
2480
+ "NON_NULL",
2481
+ "SCALAR"
2482
+ ],
2483
+ "name": "Int",
2484
+ "non_null": false
2485
+ },
2486
+ "varName": "membersCount"
2487
+ },
2488
+ "membersCountPerType": {
2489
+ "alias": "membersCountPerTypeGroup: membersCountPerType",
2490
+ "args": {},
2491
+ "deprecationReason": null,
2492
+ "description": "Breakdown of member count by type (e.g., number of sites, hosts, etc.).",
2493
+ "id_str": "deleteGroup___group___membersCountPerType",
2494
+ "isDeprecated": false,
2495
+ "name": "membersCountPerType",
2496
+ "path": "deleteGroup.group.membersCountPerType",
2497
+ "requestStr": "$groupMemberTypeCount:[GroupMemberTypeCount]! ",
2498
+ "required": true,
2499
+ "responseStr": "membersCountPerType:$groupMemberTypeCount ",
2500
+ "type": {
2501
+ "definition": {
2502
+ "description": "Counts how many members of each type the group contains.",
2503
+ "enumValues": null,
2504
+ "fields": {
2505
+ "membersCount": {
2506
+ "args": {},
2507
+ "deprecationReason": null,
2508
+ "description": "Number of members of this type that belong to the group",
2509
+ "id_str": "deleteGroup___group___membersCountPerType___membersCount",
2510
+ "isDeprecated": false,
2511
+ "name": "membersCount",
2512
+ "path": "deleteGroup.group.membersCountPerType.membersCount",
2513
+ "requestStr": "$membersCount:Int! ",
2514
+ "required": true,
2515
+ "responseStr": "membersCount:$membersCount ",
2516
+ "type": {
2517
+ "kind": [
2518
+ "NON_NULL",
2519
+ "SCALAR"
2520
+ ],
2521
+ "name": "Int",
2522
+ "non_null": false
2523
+ },
2524
+ "varName": "membersCount"
2525
+ },
2526
+ "type": {
2527
+ "alias": "typeGroupMemberTypeCount: type",
2528
+ "args": {},
2529
+ "deprecationReason": null,
2530
+ "description": "The member type (e.g., SITE, HOST)",
2531
+ "id_str": "deleteGroup___group___membersCountPerType___type",
2532
+ "isDeprecated": false,
2533
+ "name": "type",
2534
+ "path": "deleteGroup.group.membersCountPerType.type",
2535
+ "requestStr": "$type:GroupMemberRefType! ",
2536
+ "required": true,
2537
+ "responseStr": "type:$type ",
2538
+ "type": {
2539
+ "definition": {
2540
+ "description": "Member types that can be referenced in a group.",
2541
+ "enumValues": [
2542
+ {
2543
+ "deprecationReason": null,
2544
+ "description": null,
2545
+ "isDeprecated": false,
2546
+ "name": "SITE"
2547
+ },
2548
+ {
2549
+ "deprecationReason": null,
2550
+ "description": null,
2551
+ "isDeprecated": false,
2552
+ "name": "NETWORK_INTERFACE"
2553
+ },
2554
+ {
2555
+ "deprecationReason": null,
2556
+ "description": null,
2557
+ "isDeprecated": false,
2558
+ "name": "SITE_NETWORK_SUBNET"
2559
+ },
2560
+ {
2561
+ "deprecationReason": null,
2562
+ "description": null,
2563
+ "isDeprecated": false,
2564
+ "name": "FLOATING_SUBNET"
2565
+ },
2566
+ {
2567
+ "deprecationReason": null,
2568
+ "description": null,
2569
+ "isDeprecated": false,
2570
+ "name": "HOST"
2571
+ },
2572
+ {
2573
+ "deprecationReason": null,
2574
+ "description": null,
2575
+ "isDeprecated": false,
2576
+ "name": "GLOBAL_IP_RANGE"
2577
+ }
2578
+ ],
2579
+ "fields": null,
2580
+ "inputFields": null,
2581
+ "interfaces": null,
2582
+ "kind": "ENUM",
2583
+ "name": "GroupMemberRefType",
2584
+ "possibleTypes": null
2585
+ },
2586
+ "indexType": "enum",
2587
+ "kind": [
2588
+ "NON_NULL",
2589
+ "ENUM"
2590
+ ],
2591
+ "name": "GroupMemberRefType",
2592
+ "non_null": false
2593
+ },
2594
+ "varName": "type"
2595
+ }
2596
+ },
2597
+ "inputFields": null,
2598
+ "interfaces": {},
2599
+ "kind": "OBJECT",
2600
+ "name": "GroupMemberTypeCount",
2601
+ "possibleTypes": null
2602
+ },
2603
+ "indexType": "object",
2604
+ "kind": [
2605
+ "NON_NULL",
2606
+ "LIST",
2607
+ "NON_NULL",
2608
+ "OBJECT"
2609
+ ],
2610
+ "name": "GroupMemberTypeCount",
2611
+ "non_null": false
2612
+ },
2613
+ "varName": "groupMemberTypeCount"
2614
+ },
2615
+ "name": {
2616
+ "args": {},
2617
+ "deprecationReason": null,
2618
+ "description": "Name of the group (not guaranteed to be globally unique).",
2619
+ "id_str": "deleteGroup___group___name",
2620
+ "isDeprecated": false,
2621
+ "name": "name",
2622
+ "path": "deleteGroup.group.name",
2623
+ "requestStr": "$name:String! ",
2624
+ "required": true,
2625
+ "responseStr": "name:$name ",
2626
+ "type": {
2627
+ "kind": [
2628
+ "NON_NULL",
2629
+ "SCALAR"
2630
+ ],
2631
+ "name": "String",
2632
+ "non_null": false
2633
+ },
2634
+ "varName": "name"
2635
+ }
2636
+ },
2637
+ "inputFields": null,
2638
+ "interfaces": {},
2639
+ "kind": "OBJECT",
2640
+ "name": "Group",
2641
+ "possibleTypes": null
2642
+ },
2643
+ "indexType": "object",
2644
+ "kind": [
2645
+ "NON_NULL",
2646
+ "OBJECT"
2647
+ ],
2648
+ "name": "Group",
2649
+ "non_null": false
2650
+ },
2651
+ "varName": "group"
2652
+ }
2653
+ },
2654
+ "inputFields": null,
2655
+ "interfaces": {},
2656
+ "kind": "OBJECT",
2657
+ "name": "DeleteGroupPayload",
2658
+ "possibleTypes": null
2659
+ },
2660
+ "indexType": "object",
2661
+ "kind": [
2662
+ "OBJECT"
2663
+ ],
2664
+ "name": "DeleteGroupPayload",
2665
+ "non_null": false
2666
+ },
2667
+ "varName": "deleteGroupPayload"
2668
+ }
2669
+ },
2670
+ "inputFields": null,
2671
+ "interfaces": [],
2672
+ "kind": "OBJECT",
2673
+ "name": "GroupsMutations",
2674
+ "possibleTypes": null
2675
+ },
2676
+ "indexType": "object",
2677
+ "kind": [
2678
+ "OBJECT"
2679
+ ],
2680
+ "name": "GroupsMutations",
2681
+ "non_null": false
2682
+ },
2683
+ "variablesPayload": {
2684
+ "groupMembersListInput": {
2685
+ "groupMembersListFilterInput": {
2686
+ "name": {
2687
+ "eq": {
2688
+ "eq": "String"
2689
+ },
2690
+ "in": {
2691
+ "in": [
2692
+ "String"
2693
+ ]
2694
+ },
2695
+ "neq": {
2696
+ "neq": "String"
2697
+ },
2698
+ "nin": {
2699
+ "nin": [
2700
+ "String"
2701
+ ]
2702
+ },
2703
+ "regex": {
2704
+ "regex": "String"
2705
+ }
2706
+ },
2707
+ "type": {
2708
+ "eq": {
2709
+ "eq": "enum(GroupMemberRefType)"
2710
+ },
2711
+ "in": {
2712
+ "in": "enum(GroupMemberRefType)"
2713
+ },
2714
+ "neq": {
2715
+ "neq": "enum(GroupMemberRefType)"
2716
+ },
2717
+ "nin": {
2718
+ "nin": "enum(GroupMemberRefType)"
2719
+ }
2720
+ }
2721
+ },
2722
+ "groupMembersListSortInput": {
2723
+ "name": {
2724
+ "direction": {
2725
+ "direction": "enum(SortOrder)"
2726
+ },
2727
+ "priority": {
2728
+ "priority": "Int"
2729
+ }
2730
+ },
2731
+ "type": {
2732
+ "direction": {
2733
+ "direction": "enum(SortOrder)"
2734
+ },
2735
+ "priority": {
2736
+ "priority": "Int"
2737
+ }
2738
+ }
2739
+ },
2740
+ "pagingInput": {
2741
+ "from": {
2742
+ "from": "Int"
2743
+ },
2744
+ "limit": {
2745
+ "limit": "Int"
2746
+ }
2747
+ }
2748
+ },
2749
+ "groupRefInput": {
2750
+ "by": {
2751
+ "by": "enum(ObjectRefBy)"
2752
+ },
2753
+ "input": {
2754
+ "input": "String"
2755
+ }
2756
+ }
2757
+ }
2758
+ }