catocli 2.0.5__py3-none-any.whl → 2.1.1__py3-none-any.whl

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

Potentially problematic release.


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

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