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

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

Potentially problematic release.


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

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