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

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

Potentially problematic release.


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

Files changed (300) hide show
  1. catocli/Utils/clidriver.py +11 -4
  2. catocli/__init__.py +1 -1
  3. catocli/parsers/custom/export_sites/export_sites.py +20 -3
  4. catocli/parsers/custom/import_sites_to_tf/__init__.py +3 -1
  5. catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +71 -5
  6. catocli/parsers/mutation_accountManagement/__init__.py +13 -0
  7. catocli/parsers/mutation_accountManagement_disableAccount/README.md +16 -0
  8. catocli/parsers/mutation_container/__init__.py +116 -0
  9. catocli/parsers/mutation_container_fqdn/README.md +7 -0
  10. catocli/parsers/mutation_container_fqdn_addValues/README.md +17 -0
  11. catocli/parsers/mutation_container_fqdn_createFromFile/README.md +17 -0
  12. catocli/parsers/mutation_container_fqdn_removeValues/README.md +17 -0
  13. catocli/parsers/mutation_container_fqdn_updateFromFile/README.md +17 -0
  14. catocli/parsers/mutation_container_ipAddressRange/README.md +7 -0
  15. catocli/parsers/mutation_container_ipAddressRange_addValues/README.md +17 -0
  16. catocli/parsers/mutation_container_ipAddressRange_createFromFile/README.md +17 -0
  17. catocli/parsers/mutation_container_ipAddressRange_removeValues/README.md +17 -0
  18. catocli/parsers/mutation_container_ipAddressRange_updateFromFile/README.md +17 -0
  19. catocli/parsers/mutation_groups/README.md +7 -0
  20. catocli/parsers/mutation_groups/__init__.py +48 -0
  21. catocli/parsers/mutation_groups_createGroup/README.md +18 -0
  22. catocli/parsers/mutation_groups_deleteGroup/README.md +18 -0
  23. catocli/parsers/mutation_groups_updateGroup/README.md +18 -0
  24. catocli/parsers/mutation_policy_internetFirewall_addRule/README.md +1 -1
  25. catocli/parsers/mutation_policy_internetFirewall_updateRule/README.md +1 -1
  26. catocli/parsers/mutation_policy_wanFirewall_addRule/README.md +1 -1
  27. catocli/parsers/mutation_policy_wanFirewall_updateRule/README.md +1 -1
  28. catocli/parsers/mutation_site/__init__.py +104 -0
  29. catocli/parsers/mutation_site_assignSiteBwLicense/README.md +17 -0
  30. catocli/parsers/mutation_site_removeSecondaryAwsVSocket/README.md +17 -0
  31. catocli/parsers/mutation_site_removeSecondaryAzureVSocket/README.md +17 -0
  32. catocli/parsers/mutation_site_removeSiteBwLicense/README.md +17 -0
  33. catocli/parsers/mutation_site_replaceSiteBwLicense/README.md +17 -0
  34. catocli/parsers/mutation_site_updateSecondaryAwsVSocket/README.md +17 -0
  35. catocli/parsers/mutation_site_updateSecondaryAzureVSocket/README.md +17 -0
  36. catocli/parsers/mutation_site_updateSiteBwLicense/README.md +17 -0
  37. catocli/parsers/mutation_site_updateSiteGeneralDetails/README.md +1 -1
  38. catocli/parsers/mutation_sites/__init__.py +104 -0
  39. catocli/parsers/mutation_sites_assignSiteBwLicense/README.md +17 -0
  40. catocli/parsers/mutation_sites_removeSecondaryAwsVSocket/README.md +17 -0
  41. catocli/parsers/mutation_sites_removeSecondaryAzureVSocket/README.md +17 -0
  42. catocli/parsers/mutation_sites_removeSiteBwLicense/README.md +17 -0
  43. catocli/parsers/mutation_sites_replaceSiteBwLicense/README.md +17 -0
  44. catocli/parsers/mutation_sites_updateSecondaryAwsVSocket/README.md +17 -0
  45. catocli/parsers/mutation_sites_updateSecondaryAzureVSocket/README.md +17 -0
  46. catocli/parsers/mutation_sites_updateSiteBwLicense/README.md +17 -0
  47. catocli/parsers/mutation_sites_updateSiteGeneralDetails/README.md +1 -1
  48. catocli/parsers/parserApiClient.py +42 -19
  49. catocli/parsers/query_eventsFeed/README.md +1 -1
  50. catocli/parsers/query_groups/README.md +7 -0
  51. catocli/parsers/query_groups/__init__.py +54 -0
  52. catocli/parsers/query_groups_group/README.md +7 -0
  53. catocli/parsers/query_groups_groupList/README.md +18 -0
  54. catocli/parsers/query_groups_group_members/README.md +18 -0
  55. catocli/parsers/query_groups_whereUsed/README.md +17 -0
  56. catocli/parsers/query_policy/README.md +0 -17
  57. catocli/parsers/query_policy/__init__.py +153 -8
  58. catocli/parsers/query_policy_appTenantRestriction/README.md +7 -0
  59. catocli/parsers/query_policy_appTenantRestriction_policy/README.md +17 -0
  60. catocli/parsers/query_policy_dynamicIpAllocation/README.md +7 -0
  61. catocli/parsers/query_policy_dynamicIpAllocation_policy/README.md +17 -0
  62. catocli/parsers/query_policy_internetFirewall/README.md +7 -0
  63. catocli/parsers/query_policy_internetFirewall_policy/README.md +17 -0
  64. catocli/parsers/query_policy_remotePortFwd/README.md +7 -0
  65. catocli/parsers/query_policy_remotePortFwd_policy/README.md +17 -0
  66. catocli/parsers/query_policy_socketLan/README.md +7 -0
  67. catocli/parsers/query_policy_socketLan_policy/README.md +17 -0
  68. catocli/parsers/query_policy_terminalServer/README.md +7 -0
  69. catocli/parsers/query_policy_terminalServer_policy/README.md +17 -0
  70. catocli/parsers/query_policy_wanFirewall/README.md +7 -0
  71. catocli/parsers/query_policy_wanFirewall_policy/README.md +17 -0
  72. catocli/parsers/query_policy_wanNetwork/README.md +7 -0
  73. catocli/parsers/query_policy_wanNetwork_policy/README.md +17 -0
  74. catocli/parsers/query_popLocations/README.md +17 -0
  75. catocli/parsers/query_popLocations/__init__.py +16 -0
  76. catocli/parsers/query_site/README.md +0 -16
  77. catocli/parsers/query_site/__init__.py +118 -8
  78. catocli/parsers/query_site_availableVersionList/README.md +17 -0
  79. catocli/parsers/query_site_bgpPeer/README.md +17 -0
  80. catocli/parsers/query_site_bgpPeerList/README.md +17 -0
  81. catocli/parsers/query_site_cloudInterconnectConnectionConnectivity/README.md +17 -0
  82. catocli/parsers/query_site_cloudInterconnectPhysicalConnection/README.md +17 -0
  83. catocli/parsers/query_site_cloudInterconnectPhysicalConnectionId/README.md +17 -0
  84. catocli/parsers/query_site_secondaryAwsVSocket/README.md +17 -0
  85. catocli/parsers/query_site_secondaryAzureVSocket/README.md +17 -0
  86. catocli/parsers/query_site_siteBgpStatus/README.md +17 -0
  87. catocli/parsers/query_socketPortMetrics/README.md +23 -0
  88. catocli/parsers/query_socketPortMetrics/__init__.py +16 -0
  89. catocli/parsers/query_socketPortMetricsTimeSeries/README.md +24 -0
  90. catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +16 -0
  91. catocli/parsers/raw/README.md +0 -14
  92. catocli/parsers/raw/__init__.py +0 -2
  93. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/METADATA +3 -2
  94. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/RECORD +300 -178
  95. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/WHEEL +1 -1
  96. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/top_level.txt +0 -1
  97. graphql_client/api/call_api.py +4 -3
  98. models/mutation.accountManagement.addAccount.json +97 -0
  99. models/mutation.accountManagement.disableAccount.json +545 -0
  100. models/mutation.accountManagement.removeAccount.json +102 -3
  101. models/mutation.accountManagement.updateAccount.json +97 -0
  102. models/mutation.admin.addAdmin.json +6 -9
  103. models/mutation.container.delete.json +2 -2
  104. models/mutation.container.fqdn.addValues.json +866 -0
  105. models/mutation.container.fqdn.createFromFile.json +819 -0
  106. models/mutation.container.fqdn.removeValues.json +866 -0
  107. models/mutation.container.fqdn.updateFromFile.json +1045 -0
  108. models/mutation.container.ipAddressRange.addValues.json +1020 -0
  109. models/mutation.container.ipAddressRange.createFromFile.json +819 -0
  110. models/mutation.container.ipAddressRange.removeValues.json +1020 -0
  111. models/mutation.container.ipAddressRange.updateFromFile.json +1045 -0
  112. models/mutation.groups.createGroup.json +3178 -0
  113. models/mutation.groups.deleteGroup.json +2758 -0
  114. models/mutation.groups.updateGroup.json +4429 -0
  115. models/mutation.hardware.updateHardwareShipping.json +30 -10
  116. models/mutation.policy.appTenantRestriction.addRule.json +25 -25
  117. models/mutation.policy.appTenantRestriction.addSection.json +3 -3
  118. models/mutation.policy.appTenantRestriction.createPolicyRevision.json +31 -31
  119. models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +31 -31
  120. models/mutation.policy.appTenantRestriction.moveRule.json +25 -25
  121. models/mutation.policy.appTenantRestriction.moveSection.json +3 -3
  122. models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +31 -31
  123. models/mutation.policy.appTenantRestriction.removeRule.json +25 -25
  124. models/mutation.policy.appTenantRestriction.removeSection.json +3 -3
  125. models/mutation.policy.appTenantRestriction.updatePolicy.json +31 -31
  126. models/mutation.policy.appTenantRestriction.updateRule.json +25 -25
  127. models/mutation.policy.appTenantRestriction.updateSection.json +3 -3
  128. models/mutation.policy.dynamicIpAllocation.addRule.json +11 -11
  129. models/mutation.policy.dynamicIpAllocation.addSection.json +3 -3
  130. models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +17 -17
  131. models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +17 -17
  132. models/mutation.policy.dynamicIpAllocation.moveRule.json +11 -11
  133. models/mutation.policy.dynamicIpAllocation.moveSection.json +3 -3
  134. models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +17 -17
  135. models/mutation.policy.dynamicIpAllocation.removeRule.json +11 -11
  136. models/mutation.policy.dynamicIpAllocation.removeSection.json +3 -3
  137. models/mutation.policy.dynamicIpAllocation.updatePolicy.json +17 -17
  138. models/mutation.policy.dynamicIpAllocation.updateRule.json +11 -11
  139. models/mutation.policy.dynamicIpAllocation.updateSection.json +3 -3
  140. models/mutation.policy.internetFirewall.addRule.json +532 -85
  141. models/mutation.policy.internetFirewall.addSection.json +3 -3
  142. models/mutation.policy.internetFirewall.createPolicyRevision.json +208 -91
  143. models/mutation.policy.internetFirewall.discardPolicyRevision.json +208 -91
  144. models/mutation.policy.internetFirewall.moveRule.json +202 -85
  145. models/mutation.policy.internetFirewall.moveSection.json +3 -3
  146. models/mutation.policy.internetFirewall.publishPolicyRevision.json +208 -91
  147. models/mutation.policy.internetFirewall.removeRule.json +202 -85
  148. models/mutation.policy.internetFirewall.removeSection.json +3 -3
  149. models/mutation.policy.internetFirewall.updatePolicy.json +208 -91
  150. models/mutation.policy.internetFirewall.updateRule.json +523 -85
  151. models/mutation.policy.internetFirewall.updateSection.json +3 -3
  152. models/mutation.policy.remotePortFwd.addRule.json +16 -16
  153. models/mutation.policy.remotePortFwd.addSection.json +3 -3
  154. models/mutation.policy.remotePortFwd.createPolicyRevision.json +22 -22
  155. models/mutation.policy.remotePortFwd.discardPolicyRevision.json +22 -22
  156. models/mutation.policy.remotePortFwd.moveRule.json +16 -16
  157. models/mutation.policy.remotePortFwd.moveSection.json +3 -3
  158. models/mutation.policy.remotePortFwd.publishPolicyRevision.json +22 -22
  159. models/mutation.policy.remotePortFwd.removeRule.json +16 -16
  160. models/mutation.policy.remotePortFwd.removeSection.json +3 -3
  161. models/mutation.policy.remotePortFwd.updatePolicy.json +22 -22
  162. models/mutation.policy.remotePortFwd.updateRule.json +16 -16
  163. models/mutation.policy.remotePortFwd.updateSection.json +3 -3
  164. models/mutation.policy.socketLan.addRule.json +81 -81
  165. models/mutation.policy.socketLan.addSection.json +3 -3
  166. models/mutation.policy.socketLan.createPolicyRevision.json +87 -87
  167. models/mutation.policy.socketLan.discardPolicyRevision.json +87 -87
  168. models/mutation.policy.socketLan.moveRule.json +81 -81
  169. models/mutation.policy.socketLan.moveSection.json +3 -3
  170. models/mutation.policy.socketLan.publishPolicyRevision.json +87 -87
  171. models/mutation.policy.socketLan.removeRule.json +81 -81
  172. models/mutation.policy.socketLan.removeSection.json +3 -3
  173. models/mutation.policy.socketLan.updatePolicy.json +87 -87
  174. models/mutation.policy.socketLan.updateRule.json +81 -81
  175. models/mutation.policy.socketLan.updateSection.json +3 -3
  176. models/mutation.policy.terminalServer.addRule.json +6 -6
  177. models/mutation.policy.terminalServer.addSection.json +3 -3
  178. models/mutation.policy.terminalServer.createPolicyRevision.json +12 -12
  179. models/mutation.policy.terminalServer.discardPolicyRevision.json +12 -12
  180. models/mutation.policy.terminalServer.moveRule.json +6 -6
  181. models/mutation.policy.terminalServer.moveSection.json +3 -3
  182. models/mutation.policy.terminalServer.publishPolicyRevision.json +12 -12
  183. models/mutation.policy.terminalServer.removeRule.json +6 -6
  184. models/mutation.policy.terminalServer.removeSection.json +3 -3
  185. models/mutation.policy.terminalServer.updatePolicy.json +12 -12
  186. models/mutation.policy.terminalServer.updateRule.json +6 -6
  187. models/mutation.policy.terminalServer.updateSection.json +3 -3
  188. models/mutation.policy.wanFirewall.addRule.json +550 -103
  189. models/mutation.policy.wanFirewall.addSection.json +3 -3
  190. models/mutation.policy.wanFirewall.createPolicyRevision.json +226 -109
  191. models/mutation.policy.wanFirewall.discardPolicyRevision.json +226 -109
  192. models/mutation.policy.wanFirewall.moveRule.json +220 -103
  193. models/mutation.policy.wanFirewall.moveSection.json +3 -3
  194. models/mutation.policy.wanFirewall.publishPolicyRevision.json +226 -109
  195. models/mutation.policy.wanFirewall.removeRule.json +220 -103
  196. models/mutation.policy.wanFirewall.removeSection.json +3 -3
  197. models/mutation.policy.wanFirewall.updatePolicy.json +226 -109
  198. models/mutation.policy.wanFirewall.updateRule.json +541 -103
  199. models/mutation.policy.wanFirewall.updateSection.json +3 -3
  200. models/mutation.policy.wanNetwork.addRule.json +90 -90
  201. models/mutation.policy.wanNetwork.addSection.json +3 -3
  202. models/mutation.policy.wanNetwork.createPolicyRevision.json +96 -96
  203. models/mutation.policy.wanNetwork.discardPolicyRevision.json +96 -96
  204. models/mutation.policy.wanNetwork.moveRule.json +90 -90
  205. models/mutation.policy.wanNetwork.moveSection.json +3 -3
  206. models/mutation.policy.wanNetwork.publishPolicyRevision.json +96 -96
  207. models/mutation.policy.wanNetwork.removeRule.json +90 -90
  208. models/mutation.policy.wanNetwork.removeSection.json +3 -3
  209. models/mutation.policy.wanNetwork.updatePolicy.json +96 -96
  210. models/mutation.policy.wanNetwork.updateRule.json +90 -90
  211. models/mutation.policy.wanNetwork.updateSection.json +3 -3
  212. models/mutation.site.addBgpPeer.json +10 -10
  213. models/mutation.site.addIpsecIkeV2SiteTunnels.json +2 -2
  214. models/mutation.site.addSocketAddOnCard.json +2 -2
  215. models/mutation.site.assignSiteBwLicense.json +12879 -0
  216. models/mutation.site.removeBgpPeer.json +10 -10
  217. models/mutation.site.removeIpsecIkeV2SiteTunnels.json +2 -2
  218. models/mutation.site.removeSecondaryAwsVSocket.json +375 -0
  219. models/mutation.site.removeSecondaryAzureVSocket.json +354 -0
  220. models/mutation.site.removeSiteBwLicense.json +12822 -0
  221. models/mutation.site.removeSocketAddOnCard.json +2 -2
  222. models/mutation.site.replaceSiteBwLicense.json +12939 -0
  223. models/mutation.site.startSiteUpgrade.json +36 -15
  224. models/mutation.site.updateBgpPeer.json +10 -10
  225. models/mutation.site.updateIpsecIkeV2SiteTunnels.json +2 -2
  226. models/mutation.site.updateSecondaryAwsVSocket.json +643 -0
  227. models/mutation.site.updateSecondaryAzureVSocket.json +565 -0
  228. models/mutation.site.updateSiteBwLicense.json +12882 -0
  229. models/mutation.site.updateSiteGeneralDetails.json +724 -1
  230. models/mutation.sites.addBgpPeer.json +10 -10
  231. models/mutation.sites.addIpsecIkeV2SiteTunnels.json +2 -2
  232. models/mutation.sites.addSocketAddOnCard.json +2 -2
  233. models/mutation.sites.assignSiteBwLicense.json +12879 -0
  234. models/mutation.sites.removeBgpPeer.json +10 -10
  235. models/mutation.sites.removeIpsecIkeV2SiteTunnels.json +2 -2
  236. models/mutation.sites.removeSecondaryAwsVSocket.json +375 -0
  237. models/mutation.sites.removeSecondaryAzureVSocket.json +354 -0
  238. models/mutation.sites.removeSiteBwLicense.json +12822 -0
  239. models/mutation.sites.removeSocketAddOnCard.json +2 -2
  240. models/mutation.sites.replaceSiteBwLicense.json +12939 -0
  241. models/mutation.sites.startSiteUpgrade.json +36 -15
  242. models/mutation.sites.updateBgpPeer.json +10 -10
  243. models/mutation.sites.updateIpsecIkeV2SiteTunnels.json +2 -2
  244. models/mutation.sites.updateSecondaryAwsVSocket.json +643 -0
  245. models/mutation.sites.updateSecondaryAzureVSocket.json +565 -0
  246. models/mutation.sites.updateSiteBwLicense.json +12882 -0
  247. models/mutation.sites.updateSiteGeneralDetails.json +724 -1
  248. models/mutation.xdr.addStoryComment.json +1 -1
  249. models/mutation.xdr.analystFeedback.json +84 -84
  250. models/mutation.xdr.deleteStoryComment.json +1 -1
  251. models/query.accountManagement.json +97 -0
  252. models/query.accountMetrics.json +45 -45
  253. models/query.accountSnapshot.json +30 -30
  254. models/query.admin.json +6 -6
  255. models/query.admins.json +13 -13
  256. models/query.appStats.json +915 -867
  257. models/query.appStatsTimeSeries.json +692 -656
  258. models/query.auditFeed.json +6 -6
  259. models/query.catalogs.json +52 -52
  260. models/query.container.json +16 -16
  261. models/query.devices.json +20 -93
  262. models/query.entityLookup.json +2 -2
  263. models/query.events.json +288 -384
  264. models/query.eventsFeed.json +73 -97
  265. models/query.eventsTimeSeries.json +219 -291
  266. models/query.groups.group.members.json +3058 -0
  267. models/query.groups.groupList.json +6474 -0
  268. models/query.groups.whereUsed.json +697 -0
  269. models/query.hardware.json +27 -7
  270. models/query.hardwareManagement.json +8 -8
  271. models/query.licensing.json +3487 -1324
  272. models/query.policy.appTenantRestriction.policy.json +3086 -0
  273. models/query.policy.dynamicIpAllocation.policy.json +1934 -0
  274. models/query.policy.internetFirewall.policy.json +7833 -0
  275. models/query.policy.json +233 -0
  276. models/query.policy.remotePortFwd.policy.json +2387 -0
  277. models/query.policy.socketLan.policy.json +7140 -0
  278. models/query.policy.terminalServer.policy.json +1632 -0
  279. models/query.policy.wanFirewall.policy.json +9212 -0
  280. models/query.policy.wanNetwork.policy.json +8010 -0
  281. models/query.popLocations.json +2878 -0
  282. models/query.sandbox.json +5 -5
  283. models/query.site.availableVersionList.json +365 -0
  284. models/query.site.bgpPeer.json +1917 -0
  285. models/query.site.bgpPeerList.json +2076 -0
  286. models/query.site.cloudInterconnectConnectionConnectivity.json +298 -0
  287. models/query.site.cloudInterconnectPhysicalConnection.json +728 -0
  288. models/query.site.cloudInterconnectPhysicalConnectionId.json +660 -0
  289. models/query.site.secondaryAwsVSocket.json +340 -0
  290. models/query.site.secondaryAzureVSocket.json +319 -0
  291. models/query.site.siteBgpStatus.json +869 -0
  292. models/query.socketPortMetrics.json +2410 -0
  293. models/query.socketPortMetricsTimeSeries.json +2361 -0
  294. models/query.xdr.stories.json +104 -104
  295. models/query.xdr.story.json +93 -93
  296. schema/catolib.py +34 -18
  297. schema/remove_policyid.py +89 -0
  298. schema/remove_policyid_mutations.py +89 -0
  299. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/entry_points.txt +0 -0
  300. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,1917 @@
1
+ {
2
+ "args": {
3
+ "accountId": {
4
+ "defaultValue": null,
5
+ "description": null,
6
+ "id_str": "accountId",
7
+ "name": "accountId",
8
+ "path": "accountId",
9
+ "requestStr": "$accountId:ID! ",
10
+ "required": true,
11
+ "responseStr": "accountId:$accountId ",
12
+ "type": {
13
+ "kind": [
14
+ "NON_NULL",
15
+ "SCALAR"
16
+ ],
17
+ "name": "ID",
18
+ "non_null": false
19
+ },
20
+ "varName": "accountId"
21
+ }
22
+ },
23
+ "childOperations": {
24
+ "bgpPeer": {
25
+ "args": {
26
+ "bgpPeer___input": {
27
+ "defaultValue": null,
28
+ "description": null,
29
+ "id_str": "bgpPeer___input",
30
+ "name": "input",
31
+ "path": "bgpPeer.input",
32
+ "requestStr": "$bgpPeerRefInput:BgpPeerRefInput! ",
33
+ "required": true,
34
+ "responseStr": "input:$bgpPeerRefInput ",
35
+ "type": {
36
+ "definition": {
37
+ "description": null,
38
+ "enumValues": null,
39
+ "fields": null,
40
+ "inputFields": {
41
+ "by": {
42
+ "defaultValue": "ID",
43
+ "description": "Specifies the method of identification (default is by ID).",
44
+ "id_str": "bgpPeer___input___by",
45
+ "name": "by",
46
+ "path": "bgpPeer.input.by",
47
+ "requestStr": "$by:ObjectRefBy! ",
48
+ "required": true,
49
+ "responseStr": "by:$by ",
50
+ "type": {
51
+ "definition": {
52
+ "description": null,
53
+ "enumValues": [
54
+ {
55
+ "deprecationReason": null,
56
+ "description": null,
57
+ "isDeprecated": false,
58
+ "name": "ID"
59
+ },
60
+ {
61
+ "deprecationReason": null,
62
+ "description": null,
63
+ "isDeprecated": false,
64
+ "name": "NAME"
65
+ }
66
+ ],
67
+ "fields": null,
68
+ "inputFields": null,
69
+ "interfaces": null,
70
+ "kind": "ENUM",
71
+ "name": "ObjectRefBy",
72
+ "possibleTypes": null
73
+ },
74
+ "indexType": "enum",
75
+ "kind": [
76
+ "NON_NULL",
77
+ "ENUM"
78
+ ],
79
+ "name": "ObjectRefBy",
80
+ "non_null": false
81
+ },
82
+ "varName": "by"
83
+ },
84
+ "input": {
85
+ "defaultValue": null,
86
+ "description": "Value used to identify the BGP peer (e.g., ID or name).",
87
+ "id_str": "bgpPeer___input___input",
88
+ "name": "input",
89
+ "path": "bgpPeer.input.input",
90
+ "requestStr": "$input:String! ",
91
+ "required": true,
92
+ "responseStr": "input:$input ",
93
+ "type": {
94
+ "kind": [
95
+ "NON_NULL",
96
+ "SCALAR"
97
+ ],
98
+ "name": "String",
99
+ "non_null": false
100
+ },
101
+ "varName": "input"
102
+ }
103
+ },
104
+ "interfaces": null,
105
+ "kind": "INPUT_OBJECT",
106
+ "name": "BgpPeerRefInput",
107
+ "possibleTypes": null
108
+ },
109
+ "indexType": "input_object",
110
+ "kind": [
111
+ "NON_NULL",
112
+ "INPUT_OBJECT"
113
+ ],
114
+ "name": "BgpPeerRefInput",
115
+ "non_null": false
116
+ },
117
+ "varName": "bgpPeerRefInput"
118
+ }
119
+ },
120
+ "deprecationReason": null,
121
+ "description": "Retrieves details of a specific BGP peer by reference.",
122
+ "isDeprecated": false,
123
+ "name": "bgpPeer",
124
+ "type": {
125
+ "kind": "OBJECT",
126
+ "name": "BgpPeer",
127
+ "ofType": null
128
+ }
129
+ }
130
+ },
131
+ "deprecationReason": null,
132
+ "description": null,
133
+ "fieldTypes": {
134
+ "BfdSettings": true,
135
+ "BgpCommunity": true,
136
+ "BgpCommunityFilterPredicate": true,
137
+ "BgpCommunityFilterRule": true,
138
+ "BgpDefaultAction": true,
139
+ "BgpFilterRule": true,
140
+ "BgpPeer": true,
141
+ "BgpRouteExactAndInclusiveFilterRule": true,
142
+ "BgpRouteExactFilterRule": true,
143
+ "BgpSummaryRoute": true,
144
+ "BgpTracking": true,
145
+ "GlobalIpRangeRef": true,
146
+ "ObjectRefBy": true,
147
+ "PolicyRuleTrackingFrequencyEnum": true,
148
+ "SiteRef": true
149
+ },
150
+ "isDeprecated": false,
151
+ "name": "site",
152
+ "operationArgs": {
153
+ "accountId": {
154
+ "defaultValue": null,
155
+ "description": null,
156
+ "id_str": "accountId",
157
+ "name": "accountId",
158
+ "path": "accountId",
159
+ "requestStr": "$accountId:ID! ",
160
+ "required": true,
161
+ "responseStr": "accountId:$accountId ",
162
+ "type": {
163
+ "kind": [
164
+ "NON_NULL",
165
+ "SCALAR"
166
+ ],
167
+ "name": "ID",
168
+ "non_null": false
169
+ },
170
+ "varName": "accountId"
171
+ },
172
+ "bgpPeerRefInput": {
173
+ "defaultValue": null,
174
+ "description": null,
175
+ "id_str": "bgpPeer___input",
176
+ "name": "input",
177
+ "path": "bgpPeer.input",
178
+ "requestStr": "$bgpPeerRefInput:BgpPeerRefInput! ",
179
+ "required": true,
180
+ "responseStr": "input:$bgpPeerRefInput ",
181
+ "type": {
182
+ "definition": {
183
+ "description": null,
184
+ "enumValues": null,
185
+ "fields": null,
186
+ "inputFields": {
187
+ "by": {
188
+ "defaultValue": "ID",
189
+ "description": "Specifies the method of identification (default is by ID).",
190
+ "id_str": "bgpPeer___input___by",
191
+ "name": "by",
192
+ "path": "bgpPeer.input.by",
193
+ "requestStr": "$by:ObjectRefBy! ",
194
+ "required": true,
195
+ "responseStr": "by:$by ",
196
+ "type": {
197
+ "definition": {
198
+ "description": null,
199
+ "enumValues": [
200
+ {
201
+ "deprecationReason": null,
202
+ "description": null,
203
+ "isDeprecated": false,
204
+ "name": "ID"
205
+ },
206
+ {
207
+ "deprecationReason": null,
208
+ "description": null,
209
+ "isDeprecated": false,
210
+ "name": "NAME"
211
+ }
212
+ ],
213
+ "fields": null,
214
+ "inputFields": null,
215
+ "interfaces": null,
216
+ "kind": "ENUM",
217
+ "name": "ObjectRefBy",
218
+ "possibleTypes": null
219
+ },
220
+ "indexType": "enum",
221
+ "kind": [
222
+ "NON_NULL",
223
+ "ENUM"
224
+ ],
225
+ "name": "ObjectRefBy",
226
+ "non_null": false
227
+ },
228
+ "varName": "by"
229
+ },
230
+ "input": {
231
+ "defaultValue": null,
232
+ "description": "Value used to identify the BGP peer (e.g., ID or name).",
233
+ "id_str": "bgpPeer___input___input",
234
+ "name": "input",
235
+ "path": "bgpPeer.input.input",
236
+ "requestStr": "$input:String! ",
237
+ "required": true,
238
+ "responseStr": "input:$input ",
239
+ "type": {
240
+ "kind": [
241
+ "NON_NULL",
242
+ "SCALAR"
243
+ ],
244
+ "name": "String",
245
+ "non_null": false
246
+ },
247
+ "varName": "input"
248
+ }
249
+ },
250
+ "interfaces": null,
251
+ "kind": "INPUT_OBJECT",
252
+ "name": "BgpPeerRefInput",
253
+ "possibleTypes": null
254
+ },
255
+ "indexType": "input_object",
256
+ "kind": [
257
+ "NON_NULL",
258
+ "INPUT_OBJECT"
259
+ ],
260
+ "name": "BgpPeerRefInput",
261
+ "non_null": false
262
+ },
263
+ "varName": "bgpPeerRefInput"
264
+ }
265
+ },
266
+ "path": "query.site.bgpPeer",
267
+ "type": {
268
+ "definition": {
269
+ "description": null,
270
+ "enumValues": null,
271
+ "fields": {
272
+ "bgpPeer": {
273
+ "args": {
274
+ "bgpPeer___input": {
275
+ "defaultValue": null,
276
+ "description": null,
277
+ "id_str": "bgpPeer___input",
278
+ "name": "input",
279
+ "path": "bgpPeer.input",
280
+ "requestStr": "$bgpPeerRefInput:BgpPeerRefInput! ",
281
+ "required": true,
282
+ "responseStr": "input:$bgpPeerRefInput ",
283
+ "type": {
284
+ "definition": {
285
+ "description": null,
286
+ "enumValues": null,
287
+ "fields": null,
288
+ "inputFields": {
289
+ "by": {
290
+ "defaultValue": "ID",
291
+ "description": "Specifies the method of identification (default is by ID).",
292
+ "id_str": "bgpPeer___input___by",
293
+ "name": "by",
294
+ "path": "bgpPeer.input.by",
295
+ "requestStr": "$by:ObjectRefBy! ",
296
+ "required": true,
297
+ "responseStr": "by:$by ",
298
+ "type": {
299
+ "definition": {
300
+ "description": null,
301
+ "enumValues": [
302
+ {
303
+ "deprecationReason": null,
304
+ "description": null,
305
+ "isDeprecated": false,
306
+ "name": "ID"
307
+ },
308
+ {
309
+ "deprecationReason": null,
310
+ "description": null,
311
+ "isDeprecated": false,
312
+ "name": "NAME"
313
+ }
314
+ ],
315
+ "fields": null,
316
+ "inputFields": null,
317
+ "interfaces": null,
318
+ "kind": "ENUM",
319
+ "name": "ObjectRefBy",
320
+ "possibleTypes": null
321
+ },
322
+ "indexType": "enum",
323
+ "kind": [
324
+ "NON_NULL",
325
+ "ENUM"
326
+ ],
327
+ "name": "ObjectRefBy",
328
+ "non_null": false
329
+ },
330
+ "varName": "by"
331
+ },
332
+ "input": {
333
+ "defaultValue": null,
334
+ "description": "Value used to identify the BGP peer (e.g., ID or name).",
335
+ "id_str": "bgpPeer___input___input",
336
+ "name": "input",
337
+ "path": "bgpPeer.input.input",
338
+ "requestStr": "$input:String! ",
339
+ "required": true,
340
+ "responseStr": "input:$input ",
341
+ "type": {
342
+ "kind": [
343
+ "NON_NULL",
344
+ "SCALAR"
345
+ ],
346
+ "name": "String",
347
+ "non_null": false
348
+ },
349
+ "varName": "input"
350
+ }
351
+ },
352
+ "interfaces": null,
353
+ "kind": "INPUT_OBJECT",
354
+ "name": "BgpPeerRefInput",
355
+ "possibleTypes": null
356
+ },
357
+ "indexType": "input_object",
358
+ "kind": [
359
+ "NON_NULL",
360
+ "INPUT_OBJECT"
361
+ ],
362
+ "name": "BgpPeerRefInput",
363
+ "non_null": false
364
+ },
365
+ "varName": "bgpPeerRefInput"
366
+ }
367
+ },
368
+ "deprecationReason": null,
369
+ "description": "Retrieves details of a specific BGP peer by reference.",
370
+ "id_str": "bgpPeer",
371
+ "isDeprecated": false,
372
+ "name": "bgpPeer",
373
+ "path": "bgpPeer",
374
+ "requestStr": "$bgpPeer:BgpPeer ",
375
+ "required": false,
376
+ "responseStr": "bgpPeer:$bgpPeer ",
377
+ "type": {
378
+ "definition": {
379
+ "description": null,
380
+ "enumValues": null,
381
+ "fields": {
382
+ "advertiseAllRoutes": {
383
+ "args": {},
384
+ "deprecationReason": null,
385
+ "description": "Indicates if all routes are advertised.",
386
+ "id_str": "bgpPeer___advertiseAllRoutes",
387
+ "isDeprecated": false,
388
+ "name": "advertiseAllRoutes",
389
+ "path": "bgpPeer.advertiseAllRoutes",
390
+ "requestStr": "$advertiseAllRoutes:Boolean! ",
391
+ "required": true,
392
+ "responseStr": "advertiseAllRoutes:$advertiseAllRoutes ",
393
+ "type": {
394
+ "kind": [
395
+ "NON_NULL",
396
+ "SCALAR"
397
+ ],
398
+ "name": "Boolean",
399
+ "non_null": false
400
+ },
401
+ "varName": "advertiseAllRoutes"
402
+ },
403
+ "advertiseDefaultRoute": {
404
+ "args": {},
405
+ "deprecationReason": null,
406
+ "description": "Indicates if the default route is advertised.",
407
+ "id_str": "bgpPeer___advertiseDefaultRoute",
408
+ "isDeprecated": false,
409
+ "name": "advertiseDefaultRoute",
410
+ "path": "bgpPeer.advertiseDefaultRoute",
411
+ "requestStr": "$advertiseDefaultRoute:Boolean! ",
412
+ "required": true,
413
+ "responseStr": "advertiseDefaultRoute:$advertiseDefaultRoute ",
414
+ "type": {
415
+ "kind": [
416
+ "NON_NULL",
417
+ "SCALAR"
418
+ ],
419
+ "name": "Boolean",
420
+ "non_null": false
421
+ },
422
+ "varName": "advertiseDefaultRoute"
423
+ },
424
+ "advertiseSummaryRoutes": {
425
+ "args": {},
426
+ "deprecationReason": null,
427
+ "description": "Indicates if summarized routes are advertised.",
428
+ "id_str": "bgpPeer___advertiseSummaryRoutes",
429
+ "isDeprecated": false,
430
+ "name": "advertiseSummaryRoutes",
431
+ "path": "bgpPeer.advertiseSummaryRoutes",
432
+ "requestStr": "$advertiseSummaryRoutes:Boolean! ",
433
+ "required": true,
434
+ "responseStr": "advertiseSummaryRoutes:$advertiseSummaryRoutes ",
435
+ "type": {
436
+ "kind": [
437
+ "NON_NULL",
438
+ "SCALAR"
439
+ ],
440
+ "name": "Boolean",
441
+ "non_null": false
442
+ },
443
+ "varName": "advertiseSummaryRoutes"
444
+ },
445
+ "bfdEnabled": {
446
+ "args": {},
447
+ "deprecationReason": null,
448
+ "description": "Indicates if BFD is enabled for failure detection.",
449
+ "id_str": "bgpPeer___bfdEnabled",
450
+ "isDeprecated": false,
451
+ "name": "bfdEnabled",
452
+ "path": "bgpPeer.bfdEnabled",
453
+ "requestStr": "$bfdEnabled:Boolean! ",
454
+ "required": true,
455
+ "responseStr": "bfdEnabled:$bfdEnabled ",
456
+ "type": {
457
+ "kind": [
458
+ "NON_NULL",
459
+ "SCALAR"
460
+ ],
461
+ "name": "Boolean",
462
+ "non_null": false
463
+ },
464
+ "varName": "bfdEnabled"
465
+ },
466
+ "bfdSettings": {
467
+ "args": {},
468
+ "deprecationReason": null,
469
+ "description": "BFD configuration.",
470
+ "id_str": "bgpPeer___bfdSettings",
471
+ "isDeprecated": false,
472
+ "name": "bfdSettings",
473
+ "path": "bgpPeer.bfdSettings",
474
+ "requestStr": "$bfdSettings:BfdSettings ",
475
+ "required": false,
476
+ "responseStr": "bfdSettings:$bfdSettings ",
477
+ "type": {
478
+ "definition": {
479
+ "description": null,
480
+ "enumValues": null,
481
+ "fields": {
482
+ "multiplier": {
483
+ "args": {},
484
+ "deprecationReason": null,
485
+ "description": "Number of missed BFD packets before considering the session down.",
486
+ "id_str": "bgpPeer___bfdSettings___multiplier",
487
+ "isDeprecated": false,
488
+ "name": "multiplier",
489
+ "path": "bgpPeer.bfdSettings.multiplier",
490
+ "requestStr": "$multiplier:Int! ",
491
+ "required": true,
492
+ "responseStr": "multiplier:$multiplier ",
493
+ "type": {
494
+ "kind": [
495
+ "NON_NULL",
496
+ "SCALAR"
497
+ ],
498
+ "name": "Int",
499
+ "non_null": false
500
+ },
501
+ "varName": "multiplier"
502
+ },
503
+ "receiveInterval": {
504
+ "args": {},
505
+ "deprecationReason": null,
506
+ "description": "Time interval (in milliseconds) in which this peer expects to receive BFD packets.",
507
+ "id_str": "bgpPeer___bfdSettings___receiveInterval",
508
+ "isDeprecated": false,
509
+ "name": "receiveInterval",
510
+ "path": "bgpPeer.bfdSettings.receiveInterval",
511
+ "requestStr": "$receiveInterval:Int! ",
512
+ "required": true,
513
+ "responseStr": "receiveInterval:$receiveInterval ",
514
+ "type": {
515
+ "kind": [
516
+ "NON_NULL",
517
+ "SCALAR"
518
+ ],
519
+ "name": "Int",
520
+ "non_null": false
521
+ },
522
+ "varName": "receiveInterval"
523
+ },
524
+ "transmitInterval": {
525
+ "args": {},
526
+ "deprecationReason": null,
527
+ "description": "Time interval (in milliseconds) between BFD packets sent by this peer.",
528
+ "id_str": "bgpPeer___bfdSettings___transmitInterval",
529
+ "isDeprecated": false,
530
+ "name": "transmitInterval",
531
+ "path": "bgpPeer.bfdSettings.transmitInterval",
532
+ "requestStr": "$transmitInterval:Int! ",
533
+ "required": true,
534
+ "responseStr": "transmitInterval:$transmitInterval ",
535
+ "type": {
536
+ "kind": [
537
+ "NON_NULL",
538
+ "SCALAR"
539
+ ],
540
+ "name": "Int",
541
+ "non_null": false
542
+ },
543
+ "varName": "transmitInterval"
544
+ }
545
+ },
546
+ "inputFields": null,
547
+ "interfaces": {},
548
+ "kind": "OBJECT",
549
+ "name": "BfdSettings",
550
+ "possibleTypes": null
551
+ },
552
+ "indexType": "object",
553
+ "kind": [
554
+ "OBJECT"
555
+ ],
556
+ "name": "BfdSettings",
557
+ "non_null": false
558
+ },
559
+ "varName": "bfdSettings"
560
+ },
561
+ "catoAsn": {
562
+ "args": {},
563
+ "deprecationReason": null,
564
+ "description": "AS number of Cato's BGP endpoint.",
565
+ "id_str": "bgpPeer___catoAsn",
566
+ "isDeprecated": false,
567
+ "name": "catoAsn",
568
+ "path": "bgpPeer.catoAsn",
569
+ "requestStr": "$catoAsn:Asn16! ",
570
+ "required": true,
571
+ "responseStr": "catoAsn:$catoAsn ",
572
+ "type": {
573
+ "kind": [
574
+ "NON_NULL",
575
+ "SCALAR"
576
+ ],
577
+ "name": "Asn16",
578
+ "non_null": false
579
+ },
580
+ "varName": "catoAsn"
581
+ },
582
+ "catoIp": {
583
+ "args": {},
584
+ "deprecationReason": null,
585
+ "description": "IP address of Cato's BGP endpoint.",
586
+ "id_str": "bgpPeer___catoIp",
587
+ "isDeprecated": false,
588
+ "name": "catoIp",
589
+ "path": "bgpPeer.catoIp",
590
+ "requestStr": "$catoIp:IPAddress! ",
591
+ "required": true,
592
+ "responseStr": "catoIp:$catoIp ",
593
+ "type": {
594
+ "kind": [
595
+ "NON_NULL",
596
+ "SCALAR"
597
+ ],
598
+ "name": "IPAddress",
599
+ "non_null": false
600
+ },
601
+ "varName": "catoIp"
602
+ },
603
+ "defaultAction": {
604
+ "args": {},
605
+ "deprecationReason": null,
606
+ "description": "Default action for routes not matching filters (ACCEPT or DROP).",
607
+ "id_str": "bgpPeer___defaultAction",
608
+ "isDeprecated": false,
609
+ "name": "defaultAction",
610
+ "path": "bgpPeer.defaultAction",
611
+ "requestStr": "$defaultAction:BgpDefaultAction! ",
612
+ "required": true,
613
+ "responseStr": "defaultAction:$defaultAction ",
614
+ "type": {
615
+ "definition": {
616
+ "description": null,
617
+ "enumValues": [
618
+ {
619
+ "deprecationReason": null,
620
+ "description": "Default action to drop all unmatched routes.",
621
+ "isDeprecated": false,
622
+ "name": "DROP"
623
+ },
624
+ {
625
+ "deprecationReason": null,
626
+ "description": "Default action to accept all unmatched routes.",
627
+ "isDeprecated": false,
628
+ "name": "ACCEPT"
629
+ }
630
+ ],
631
+ "fields": null,
632
+ "inputFields": null,
633
+ "interfaces": null,
634
+ "kind": "ENUM",
635
+ "name": "BgpDefaultAction",
636
+ "possibleTypes": null
637
+ },
638
+ "indexType": "enum",
639
+ "kind": [
640
+ "NON_NULL",
641
+ "ENUM"
642
+ ],
643
+ "name": "BgpDefaultAction",
644
+ "non_null": false
645
+ },
646
+ "varName": "defaultAction"
647
+ },
648
+ "defaultActionExclusion": {
649
+ "args": {},
650
+ "deprecationReason": null,
651
+ "description": "Rules excluded from the default action.",
652
+ "id_str": "bgpPeer___defaultActionExclusion",
653
+ "isDeprecated": false,
654
+ "name": "defaultActionExclusion",
655
+ "path": "bgpPeer.defaultActionExclusion",
656
+ "requestStr": "$bgpFilterRule:[BgpFilterRule]! ",
657
+ "required": true,
658
+ "responseStr": "defaultActionExclusion:$bgpFilterRule ",
659
+ "type": {
660
+ "definition": {
661
+ "description": null,
662
+ "enumValues": null,
663
+ "fields": {
664
+ "bgpRouteExactAndInclusiveFilterRule": {
665
+ "alias": "bgpRouteExactAndInclusiveFilterRuleBgpFilterRule: bgpRouteExactAndInclusiveFilterRule",
666
+ "args": {},
667
+ "deprecationReason": null,
668
+ "description": "Exact and inclusive filter rule. Please choose only one filter rule type.",
669
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule",
670
+ "isDeprecated": false,
671
+ "name": "bgpRouteExactAndInclusiveFilterRule",
672
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule",
673
+ "requestStr": "$bgpRouteExactAndInclusiveFilterRule:BgpRouteExactAndInclusiveFilterRule ",
674
+ "required": false,
675
+ "responseStr": "bgpRouteExactAndInclusiveFilterRule:$bgpRouteExactAndInclusiveFilterRule ",
676
+ "type": {
677
+ "definition": {
678
+ "description": null,
679
+ "enumValues": null,
680
+ "fields": {
681
+ "ge": {
682
+ "args": {},
683
+ "deprecationReason": null,
684
+ "description": "Minimum prefix length for the filter rule.",
685
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___ge",
686
+ "isDeprecated": false,
687
+ "name": "ge",
688
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.ge",
689
+ "requestStr": "$ge:Int ",
690
+ "required": false,
691
+ "responseStr": "ge:$ge ",
692
+ "type": {
693
+ "kind": [
694
+ "SCALAR"
695
+ ],
696
+ "name": "Int",
697
+ "non_null": false
698
+ },
699
+ "varName": "ge"
700
+ },
701
+ "globalIpRange": {
702
+ "args": {},
703
+ "deprecationReason": null,
704
+ "description": "Global IP ranges to include.",
705
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___globalIpRange",
706
+ "isDeprecated": false,
707
+ "name": "globalIpRange",
708
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.globalIpRange",
709
+ "requestStr": "$globalIpRangeRef:[GlobalIpRangeRef]! ",
710
+ "required": true,
711
+ "responseStr": "globalIpRange:$globalIpRangeRef ",
712
+ "type": {
713
+ "definition": {
714
+ "description": "A reference identifying the GlobalIpRange object. ID: Unique GlobalIpRange Identifier, Name: The GlobalIpRange Name",
715
+ "enumValues": null,
716
+ "fields": {
717
+ "id": {
718
+ "args": {},
719
+ "deprecationReason": null,
720
+ "description": null,
721
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___globalIpRange___id",
722
+ "isDeprecated": false,
723
+ "name": "id",
724
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.globalIpRange.id",
725
+ "requestStr": "$id:ID! ",
726
+ "required": true,
727
+ "responseStr": "id:$id ",
728
+ "type": {
729
+ "kind": [
730
+ "NON_NULL",
731
+ "SCALAR"
732
+ ],
733
+ "name": "ID",
734
+ "non_null": false
735
+ },
736
+ "varName": "id"
737
+ },
738
+ "name": {
739
+ "args": {},
740
+ "deprecationReason": null,
741
+ "description": null,
742
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___globalIpRange___name",
743
+ "isDeprecated": false,
744
+ "name": "name",
745
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.globalIpRange.name",
746
+ "requestStr": "$name:String! ",
747
+ "required": true,
748
+ "responseStr": "name:$name ",
749
+ "type": {
750
+ "kind": [
751
+ "NON_NULL",
752
+ "SCALAR"
753
+ ],
754
+ "name": "String",
755
+ "non_null": false
756
+ },
757
+ "varName": "name"
758
+ }
759
+ },
760
+ "inputFields": null,
761
+ "interfaces": {},
762
+ "kind": "OBJECT",
763
+ "name": "GlobalIpRangeRef",
764
+ "possibleTypes": null
765
+ },
766
+ "indexType": "object",
767
+ "kind": [
768
+ "NON_NULL",
769
+ "LIST",
770
+ "NON_NULL",
771
+ "OBJECT"
772
+ ],
773
+ "name": "GlobalIpRangeRef",
774
+ "non_null": false
775
+ },
776
+ "varName": "globalIpRangeRef"
777
+ },
778
+ "globalIpRangeException": {
779
+ "args": {},
780
+ "deprecationReason": null,
781
+ "description": "Global IP ranges to exclude.",
782
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___globalIpRangeException",
783
+ "isDeprecated": false,
784
+ "name": "globalIpRangeException",
785
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.globalIpRangeException",
786
+ "requestStr": "$globalIpRangeRef:[GlobalIpRangeRef]! ",
787
+ "required": true,
788
+ "responseStr": "globalIpRangeException:$globalIpRangeRef ",
789
+ "type": {
790
+ "definition": {
791
+ "description": "A reference identifying the GlobalIpRange object. ID: Unique GlobalIpRange Identifier, Name: The GlobalIpRange Name",
792
+ "enumValues": null,
793
+ "fields": {
794
+ "id": {
795
+ "args": {},
796
+ "deprecationReason": null,
797
+ "description": null,
798
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___globalIpRangeException___id",
799
+ "isDeprecated": false,
800
+ "name": "id",
801
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.globalIpRangeException.id",
802
+ "requestStr": "$id:ID! ",
803
+ "required": true,
804
+ "responseStr": "id:$id ",
805
+ "type": {
806
+ "kind": [
807
+ "NON_NULL",
808
+ "SCALAR"
809
+ ],
810
+ "name": "ID",
811
+ "non_null": false
812
+ },
813
+ "varName": "id"
814
+ },
815
+ "name": {
816
+ "args": {},
817
+ "deprecationReason": null,
818
+ "description": null,
819
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___globalIpRangeException___name",
820
+ "isDeprecated": false,
821
+ "name": "name",
822
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.globalIpRangeException.name",
823
+ "requestStr": "$name:String! ",
824
+ "required": true,
825
+ "responseStr": "name:$name ",
826
+ "type": {
827
+ "kind": [
828
+ "NON_NULL",
829
+ "SCALAR"
830
+ ],
831
+ "name": "String",
832
+ "non_null": false
833
+ },
834
+ "varName": "name"
835
+ }
836
+ },
837
+ "inputFields": null,
838
+ "interfaces": {},
839
+ "kind": "OBJECT",
840
+ "name": "GlobalIpRangeRef",
841
+ "possibleTypes": null
842
+ },
843
+ "indexType": "object",
844
+ "kind": [
845
+ "NON_NULL",
846
+ "LIST",
847
+ "NON_NULL",
848
+ "OBJECT"
849
+ ],
850
+ "name": "GlobalIpRangeRef",
851
+ "non_null": false
852
+ },
853
+ "varName": "globalIpRangeRef"
854
+ },
855
+ "id": {
856
+ "args": {},
857
+ "deprecationReason": null,
858
+ "description": "Unique identifier of the filter rule.",
859
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___id",
860
+ "isDeprecated": false,
861
+ "name": "id",
862
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.id",
863
+ "requestStr": "$id:ID! ",
864
+ "required": true,
865
+ "responseStr": "id:$id ",
866
+ "type": {
867
+ "kind": [
868
+ "NON_NULL",
869
+ "SCALAR"
870
+ ],
871
+ "name": "ID",
872
+ "non_null": false
873
+ },
874
+ "varName": "id"
875
+ },
876
+ "le": {
877
+ "args": {},
878
+ "deprecationReason": null,
879
+ "description": "Maximum prefix length for the filter rule.",
880
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___le",
881
+ "isDeprecated": false,
882
+ "name": "le",
883
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.le",
884
+ "requestStr": "$le:Int ",
885
+ "required": false,
886
+ "responseStr": "le:$le ",
887
+ "type": {
888
+ "kind": [
889
+ "SCALAR"
890
+ ],
891
+ "name": "Int",
892
+ "non_null": false
893
+ },
894
+ "varName": "le"
895
+ },
896
+ "networkSubnet": {
897
+ "args": {},
898
+ "deprecationReason": null,
899
+ "description": "Network subnets to include.",
900
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___networkSubnet",
901
+ "isDeprecated": false,
902
+ "name": "networkSubnet",
903
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.networkSubnet",
904
+ "requestStr": "$networkSubnet:[NetworkSubnet]! ",
905
+ "required": true,
906
+ "responseStr": "networkSubnet:$networkSubnet ",
907
+ "type": {
908
+ "kind": [
909
+ "NON_NULL",
910
+ "LIST",
911
+ "NON_NULL",
912
+ "SCALAR"
913
+ ],
914
+ "name": "NetworkSubnet",
915
+ "non_null": false
916
+ },
917
+ "varName": "networkSubnet"
918
+ },
919
+ "networkSubnetException": {
920
+ "args": {},
921
+ "deprecationReason": null,
922
+ "description": "Network subnets to exclude.",
923
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___networkSubnetException",
924
+ "isDeprecated": false,
925
+ "name": "networkSubnetException",
926
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.networkSubnetException",
927
+ "requestStr": "$networkSubnetException:[NetworkSubnet]! ",
928
+ "required": true,
929
+ "responseStr": "networkSubnetException:$networkSubnetException ",
930
+ "type": {
931
+ "kind": [
932
+ "NON_NULL",
933
+ "LIST",
934
+ "NON_NULL",
935
+ "SCALAR"
936
+ ],
937
+ "name": "NetworkSubnet",
938
+ "non_null": false
939
+ },
940
+ "varName": "networkSubnetException"
941
+ }
942
+ },
943
+ "inputFields": null,
944
+ "interfaces": {},
945
+ "kind": "OBJECT",
946
+ "name": "BgpRouteExactAndInclusiveFilterRule",
947
+ "possibleTypes": null
948
+ },
949
+ "indexType": "object",
950
+ "kind": [
951
+ "OBJECT"
952
+ ],
953
+ "name": "BgpRouteExactAndInclusiveFilterRule",
954
+ "non_null": false
955
+ },
956
+ "varName": "bgpRouteExactAndInclusiveFilterRule"
957
+ },
958
+ "bgpRouteExactFilterRule": {
959
+ "alias": "bgpRouteExactFilterRuleBgpFilterRule: bgpRouteExactFilterRule",
960
+ "args": {},
961
+ "deprecationReason": null,
962
+ "description": "Exact route filter rule. Please choose only one filter rule type.",
963
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactFilterRule",
964
+ "isDeprecated": false,
965
+ "name": "bgpRouteExactFilterRule",
966
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactFilterRule",
967
+ "requestStr": "$bgpRouteExactFilterRule:BgpRouteExactFilterRule ",
968
+ "required": false,
969
+ "responseStr": "bgpRouteExactFilterRule:$bgpRouteExactFilterRule ",
970
+ "type": {
971
+ "definition": {
972
+ "description": null,
973
+ "enumValues": null,
974
+ "fields": {
975
+ "globalIpRange": {
976
+ "args": {},
977
+ "deprecationReason": null,
978
+ "description": "Global IP ranges to include.",
979
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactFilterRule___globalIpRange",
980
+ "isDeprecated": false,
981
+ "name": "globalIpRange",
982
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactFilterRule.globalIpRange",
983
+ "requestStr": "$globalIpRangeRef:[GlobalIpRangeRef]! ",
984
+ "required": true,
985
+ "responseStr": "globalIpRange:$globalIpRangeRef ",
986
+ "type": {
987
+ "definition": {
988
+ "description": "A reference identifying the GlobalIpRange object. ID: Unique GlobalIpRange Identifier, Name: The GlobalIpRange Name",
989
+ "enumValues": null,
990
+ "fields": {
991
+ "id": {
992
+ "args": {},
993
+ "deprecationReason": null,
994
+ "description": null,
995
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactFilterRule___globalIpRange___id",
996
+ "isDeprecated": false,
997
+ "name": "id",
998
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactFilterRule.globalIpRange.id",
999
+ "requestStr": "$id:ID! ",
1000
+ "required": true,
1001
+ "responseStr": "id:$id ",
1002
+ "type": {
1003
+ "kind": [
1004
+ "NON_NULL",
1005
+ "SCALAR"
1006
+ ],
1007
+ "name": "ID",
1008
+ "non_null": false
1009
+ },
1010
+ "varName": "id"
1011
+ },
1012
+ "name": {
1013
+ "args": {},
1014
+ "deprecationReason": null,
1015
+ "description": null,
1016
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactFilterRule___globalIpRange___name",
1017
+ "isDeprecated": false,
1018
+ "name": "name",
1019
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactFilterRule.globalIpRange.name",
1020
+ "requestStr": "$name:String! ",
1021
+ "required": true,
1022
+ "responseStr": "name:$name ",
1023
+ "type": {
1024
+ "kind": [
1025
+ "NON_NULL",
1026
+ "SCALAR"
1027
+ ],
1028
+ "name": "String",
1029
+ "non_null": false
1030
+ },
1031
+ "varName": "name"
1032
+ }
1033
+ },
1034
+ "inputFields": null,
1035
+ "interfaces": {},
1036
+ "kind": "OBJECT",
1037
+ "name": "GlobalIpRangeRef",
1038
+ "possibleTypes": null
1039
+ },
1040
+ "indexType": "object",
1041
+ "kind": [
1042
+ "NON_NULL",
1043
+ "LIST",
1044
+ "NON_NULL",
1045
+ "OBJECT"
1046
+ ],
1047
+ "name": "GlobalIpRangeRef",
1048
+ "non_null": false
1049
+ },
1050
+ "varName": "globalIpRangeRef"
1051
+ },
1052
+ "id": {
1053
+ "args": {},
1054
+ "deprecationReason": null,
1055
+ "description": "Unique identifier of the exact filter rule.",
1056
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactFilterRule___id",
1057
+ "isDeprecated": false,
1058
+ "name": "id",
1059
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactFilterRule.id",
1060
+ "requestStr": "$id:ID! ",
1061
+ "required": true,
1062
+ "responseStr": "id:$id ",
1063
+ "type": {
1064
+ "kind": [
1065
+ "NON_NULL",
1066
+ "SCALAR"
1067
+ ],
1068
+ "name": "ID",
1069
+ "non_null": false
1070
+ },
1071
+ "varName": "id"
1072
+ },
1073
+ "networkSubnet": {
1074
+ "args": {},
1075
+ "deprecationReason": null,
1076
+ "description": "Network subnets to include.",
1077
+ "id_str": "bgpPeer___defaultActionExclusion___bgpRouteExactFilterRule___networkSubnet",
1078
+ "isDeprecated": false,
1079
+ "name": "networkSubnet",
1080
+ "path": "bgpPeer.defaultActionExclusion.bgpRouteExactFilterRule.networkSubnet",
1081
+ "requestStr": "$networkSubnet:[NetworkSubnet]! ",
1082
+ "required": true,
1083
+ "responseStr": "networkSubnet:$networkSubnet ",
1084
+ "type": {
1085
+ "kind": [
1086
+ "NON_NULL",
1087
+ "LIST",
1088
+ "NON_NULL",
1089
+ "SCALAR"
1090
+ ],
1091
+ "name": "NetworkSubnet",
1092
+ "non_null": false
1093
+ },
1094
+ "varName": "networkSubnet"
1095
+ }
1096
+ },
1097
+ "inputFields": null,
1098
+ "interfaces": {},
1099
+ "kind": "OBJECT",
1100
+ "name": "BgpRouteExactFilterRule",
1101
+ "possibleTypes": null
1102
+ },
1103
+ "indexType": "object",
1104
+ "kind": [
1105
+ "OBJECT"
1106
+ ],
1107
+ "name": "BgpRouteExactFilterRule",
1108
+ "non_null": false
1109
+ },
1110
+ "varName": "bgpRouteExactFilterRule"
1111
+ },
1112
+ "communityFilterRule": {
1113
+ "alias": "communityFilterRuleBgpFilterRule: communityFilterRule",
1114
+ "args": {},
1115
+ "deprecationReason": null,
1116
+ "description": "Community filter rule. Please choose only one filter rule type.",
1117
+ "id_str": "bgpPeer___defaultActionExclusion___communityFilterRule",
1118
+ "isDeprecated": false,
1119
+ "name": "communityFilterRule",
1120
+ "path": "bgpPeer.defaultActionExclusion.communityFilterRule",
1121
+ "requestStr": "$bgpCommunityFilterRule:BgpCommunityFilterRule ",
1122
+ "required": false,
1123
+ "responseStr": "communityFilterRule:$bgpCommunityFilterRule ",
1124
+ "type": {
1125
+ "definition": {
1126
+ "description": null,
1127
+ "enumValues": null,
1128
+ "fields": {
1129
+ "community": {
1130
+ "args": {},
1131
+ "deprecationReason": null,
1132
+ "description": "Community values to match.",
1133
+ "id_str": "bgpPeer___defaultActionExclusion___communityFilterRule___community",
1134
+ "isDeprecated": false,
1135
+ "name": "community",
1136
+ "path": "bgpPeer.defaultActionExclusion.communityFilterRule.community",
1137
+ "requestStr": "$bgpCommunity:[BgpCommunity]! ",
1138
+ "required": true,
1139
+ "responseStr": "community:$bgpCommunity ",
1140
+ "type": {
1141
+ "definition": {
1142
+ "description": null,
1143
+ "enumValues": null,
1144
+ "fields": {
1145
+ "from": {
1146
+ "args": {},
1147
+ "deprecationReason": null,
1148
+ "description": "Start of the community range.",
1149
+ "id_str": "bgpPeer___defaultActionExclusion___communityFilterRule___community___from",
1150
+ "isDeprecated": false,
1151
+ "name": "from",
1152
+ "path": "bgpPeer.defaultActionExclusion.communityFilterRule.community.from",
1153
+ "requestStr": "$from:Asn16! ",
1154
+ "required": true,
1155
+ "responseStr": "from:$from ",
1156
+ "type": {
1157
+ "kind": [
1158
+ "NON_NULL",
1159
+ "SCALAR"
1160
+ ],
1161
+ "name": "Asn16",
1162
+ "non_null": false
1163
+ },
1164
+ "varName": "from"
1165
+ },
1166
+ "to": {
1167
+ "args": {},
1168
+ "deprecationReason": null,
1169
+ "description": "End of the community range.",
1170
+ "id_str": "bgpPeer___defaultActionExclusion___communityFilterRule___community___to",
1171
+ "isDeprecated": false,
1172
+ "name": "to",
1173
+ "path": "bgpPeer.defaultActionExclusion.communityFilterRule.community.to",
1174
+ "requestStr": "$to:Asn16! ",
1175
+ "required": true,
1176
+ "responseStr": "to:$to ",
1177
+ "type": {
1178
+ "kind": [
1179
+ "NON_NULL",
1180
+ "SCALAR"
1181
+ ],
1182
+ "name": "Asn16",
1183
+ "non_null": false
1184
+ },
1185
+ "varName": "to"
1186
+ }
1187
+ },
1188
+ "inputFields": null,
1189
+ "interfaces": {},
1190
+ "kind": "OBJECT",
1191
+ "name": "BgpCommunity",
1192
+ "possibleTypes": null
1193
+ },
1194
+ "indexType": "object",
1195
+ "kind": [
1196
+ "NON_NULL",
1197
+ "LIST",
1198
+ "NON_NULL",
1199
+ "OBJECT"
1200
+ ],
1201
+ "name": "BgpCommunity",
1202
+ "non_null": false
1203
+ },
1204
+ "varName": "bgpCommunity"
1205
+ },
1206
+ "id": {
1207
+ "args": {},
1208
+ "deprecationReason": null,
1209
+ "description": "Unique identifier of the community filter rule.",
1210
+ "id_str": "bgpPeer___defaultActionExclusion___communityFilterRule___id",
1211
+ "isDeprecated": false,
1212
+ "name": "id",
1213
+ "path": "bgpPeer.defaultActionExclusion.communityFilterRule.id",
1214
+ "requestStr": "$id:ID! ",
1215
+ "required": true,
1216
+ "responseStr": "id:$id ",
1217
+ "type": {
1218
+ "kind": [
1219
+ "NON_NULL",
1220
+ "SCALAR"
1221
+ ],
1222
+ "name": "ID",
1223
+ "non_null": false
1224
+ },
1225
+ "varName": "id"
1226
+ },
1227
+ "predicate": {
1228
+ "args": {},
1229
+ "deprecationReason": null,
1230
+ "description": "Predicate to apply to the community filter (e.g., EQUAL, NOT_EQUAL).",
1231
+ "id_str": "bgpPeer___defaultActionExclusion___communityFilterRule___predicate",
1232
+ "isDeprecated": false,
1233
+ "name": "predicate",
1234
+ "path": "bgpPeer.defaultActionExclusion.communityFilterRule.predicate",
1235
+ "requestStr": "$predicate:BgpCommunityFilterPredicate! ",
1236
+ "required": true,
1237
+ "responseStr": "predicate:$predicate ",
1238
+ "type": {
1239
+ "definition": {
1240
+ "description": null,
1241
+ "enumValues": [
1242
+ {
1243
+ "deprecationReason": null,
1244
+ "description": "Matches exactly the specified community value.",
1245
+ "isDeprecated": false,
1246
+ "name": "EQUAL"
1247
+ },
1248
+ {
1249
+ "deprecationReason": null,
1250
+ "description": "Matches any community value except the specified one.",
1251
+ "isDeprecated": false,
1252
+ "name": "NOT_EQUAL"
1253
+ }
1254
+ ],
1255
+ "fields": null,
1256
+ "inputFields": null,
1257
+ "interfaces": null,
1258
+ "kind": "ENUM",
1259
+ "name": "BgpCommunityFilterPredicate",
1260
+ "possibleTypes": null
1261
+ },
1262
+ "indexType": "enum",
1263
+ "kind": [
1264
+ "NON_NULL",
1265
+ "ENUM"
1266
+ ],
1267
+ "name": "BgpCommunityFilterPredicate",
1268
+ "non_null": false
1269
+ },
1270
+ "varName": "predicate"
1271
+ }
1272
+ },
1273
+ "inputFields": null,
1274
+ "interfaces": {},
1275
+ "kind": "OBJECT",
1276
+ "name": "BgpCommunityFilterRule",
1277
+ "possibleTypes": null
1278
+ },
1279
+ "indexType": "object",
1280
+ "kind": [
1281
+ "OBJECT"
1282
+ ],
1283
+ "name": "BgpCommunityFilterRule",
1284
+ "non_null": false
1285
+ },
1286
+ "varName": "bgpCommunityFilterRule"
1287
+ }
1288
+ },
1289
+ "inputFields": null,
1290
+ "interfaces": {},
1291
+ "kind": "OBJECT",
1292
+ "name": "BgpFilterRule",
1293
+ "possibleTypes": null
1294
+ },
1295
+ "indexType": "object",
1296
+ "kind": [
1297
+ "NON_NULL",
1298
+ "LIST",
1299
+ "NON_NULL",
1300
+ "OBJECT"
1301
+ ],
1302
+ "name": "BgpFilterRule",
1303
+ "non_null": false
1304
+ },
1305
+ "varName": "bgpFilterRule"
1306
+ },
1307
+ "holdTime": {
1308
+ "args": {},
1309
+ "deprecationReason": null,
1310
+ "description": "Time before declaring the peer unreachable.",
1311
+ "id_str": "bgpPeer___holdTime",
1312
+ "isDeprecated": false,
1313
+ "name": "holdTime",
1314
+ "path": "bgpPeer.holdTime",
1315
+ "requestStr": "$holdTime:Int! ",
1316
+ "required": true,
1317
+ "responseStr": "holdTime:$holdTime ",
1318
+ "type": {
1319
+ "kind": [
1320
+ "NON_NULL",
1321
+ "SCALAR"
1322
+ ],
1323
+ "name": "Int",
1324
+ "non_null": false
1325
+ },
1326
+ "varName": "holdTime"
1327
+ },
1328
+ "id": {
1329
+ "args": {},
1330
+ "deprecationReason": null,
1331
+ "description": "Unique identifier for the BGP peer.",
1332
+ "id_str": "bgpPeer___id",
1333
+ "isDeprecated": false,
1334
+ "name": "id",
1335
+ "path": "bgpPeer.id",
1336
+ "requestStr": "$id:ID! ",
1337
+ "required": true,
1338
+ "responseStr": "id:$id ",
1339
+ "type": {
1340
+ "kind": [
1341
+ "NON_NULL",
1342
+ "SCALAR"
1343
+ ],
1344
+ "name": "ID",
1345
+ "non_null": false
1346
+ },
1347
+ "varName": "id"
1348
+ },
1349
+ "keepaliveInterval": {
1350
+ "args": {},
1351
+ "deprecationReason": null,
1352
+ "description": "Interval between keepalive messages.",
1353
+ "id_str": "bgpPeer___keepaliveInterval",
1354
+ "isDeprecated": false,
1355
+ "name": "keepaliveInterval",
1356
+ "path": "bgpPeer.keepaliveInterval",
1357
+ "requestStr": "$keepaliveInterval:Int! ",
1358
+ "required": true,
1359
+ "responseStr": "keepaliveInterval:$keepaliveInterval ",
1360
+ "type": {
1361
+ "kind": [
1362
+ "NON_NULL",
1363
+ "SCALAR"
1364
+ ],
1365
+ "name": "Int",
1366
+ "non_null": false
1367
+ },
1368
+ "varName": "keepaliveInterval"
1369
+ },
1370
+ "md5AuthKey": {
1371
+ "args": {},
1372
+ "deprecationReason": null,
1373
+ "description": "MD5 authentication key for secure sessions.",
1374
+ "id_str": "bgpPeer___md5AuthKey",
1375
+ "isDeprecated": false,
1376
+ "name": "md5AuthKey",
1377
+ "path": "bgpPeer.md5AuthKey",
1378
+ "requestStr": "$md5AuthKey:String ",
1379
+ "required": false,
1380
+ "responseStr": "md5AuthKey:$md5AuthKey ",
1381
+ "type": {
1382
+ "kind": [
1383
+ "SCALAR"
1384
+ ],
1385
+ "name": "String",
1386
+ "non_null": false
1387
+ },
1388
+ "varName": "md5AuthKey"
1389
+ },
1390
+ "metric": {
1391
+ "args": {},
1392
+ "deprecationReason": null,
1393
+ "description": "Metric for route preferences.",
1394
+ "id_str": "bgpPeer___metric",
1395
+ "isDeprecated": false,
1396
+ "name": "metric",
1397
+ "path": "bgpPeer.metric",
1398
+ "requestStr": "$metric:Int! ",
1399
+ "required": true,
1400
+ "responseStr": "metric:$metric ",
1401
+ "type": {
1402
+ "kind": [
1403
+ "NON_NULL",
1404
+ "SCALAR"
1405
+ ],
1406
+ "name": "Int",
1407
+ "non_null": false
1408
+ },
1409
+ "varName": "metric"
1410
+ },
1411
+ "name": {
1412
+ "args": {},
1413
+ "deprecationReason": null,
1414
+ "description": "Name of the BGP configuration entity.",
1415
+ "id_str": "bgpPeer___name",
1416
+ "isDeprecated": false,
1417
+ "name": "name",
1418
+ "path": "bgpPeer.name",
1419
+ "requestStr": "$name:String! ",
1420
+ "required": true,
1421
+ "responseStr": "name:$name ",
1422
+ "type": {
1423
+ "kind": [
1424
+ "NON_NULL",
1425
+ "SCALAR"
1426
+ ],
1427
+ "name": "String",
1428
+ "non_null": false
1429
+ },
1430
+ "varName": "name"
1431
+ },
1432
+ "peerAsn": {
1433
+ "args": {},
1434
+ "deprecationReason": null,
1435
+ "description": "AS number of the peer BGP endpoint.",
1436
+ "id_str": "bgpPeer___peerAsn",
1437
+ "isDeprecated": false,
1438
+ "name": "peerAsn",
1439
+ "path": "bgpPeer.peerAsn",
1440
+ "requestStr": "$peerAsn:Asn32! ",
1441
+ "required": true,
1442
+ "responseStr": "peerAsn:$peerAsn ",
1443
+ "type": {
1444
+ "kind": [
1445
+ "NON_NULL",
1446
+ "SCALAR"
1447
+ ],
1448
+ "name": "Asn32",
1449
+ "non_null": false
1450
+ },
1451
+ "varName": "peerAsn"
1452
+ },
1453
+ "peerIp": {
1454
+ "args": {},
1455
+ "deprecationReason": null,
1456
+ "description": "IP address of the peer BGP endpoint.",
1457
+ "id_str": "bgpPeer___peerIp",
1458
+ "isDeprecated": false,
1459
+ "name": "peerIp",
1460
+ "path": "bgpPeer.peerIp",
1461
+ "requestStr": "$peerIp:IPAddress! ",
1462
+ "required": true,
1463
+ "responseStr": "peerIp:$peerIp ",
1464
+ "type": {
1465
+ "kind": [
1466
+ "NON_NULL",
1467
+ "SCALAR"
1468
+ ],
1469
+ "name": "IPAddress",
1470
+ "non_null": false
1471
+ },
1472
+ "varName": "peerIp"
1473
+ },
1474
+ "performNat": {
1475
+ "args": {},
1476
+ "deprecationReason": null,
1477
+ "description": "Indicates if NAT is performed on routes.",
1478
+ "id_str": "bgpPeer___performNat",
1479
+ "isDeprecated": false,
1480
+ "name": "performNat",
1481
+ "path": "bgpPeer.performNat",
1482
+ "requestStr": "$performNat:Boolean! ",
1483
+ "required": true,
1484
+ "responseStr": "performNat:$performNat ",
1485
+ "type": {
1486
+ "kind": [
1487
+ "NON_NULL",
1488
+ "SCALAR"
1489
+ ],
1490
+ "name": "Boolean",
1491
+ "non_null": false
1492
+ },
1493
+ "varName": "performNat"
1494
+ },
1495
+ "site": {
1496
+ "args": {},
1497
+ "deprecationReason": null,
1498
+ "description": "Site associated with this BGP peer.",
1499
+ "id_str": "bgpPeer___site",
1500
+ "isDeprecated": false,
1501
+ "name": "site",
1502
+ "path": "bgpPeer.site",
1503
+ "requestStr": "$siteRef:SiteRef! ",
1504
+ "required": true,
1505
+ "responseStr": "site:$siteRef ",
1506
+ "type": {
1507
+ "definition": {
1508
+ "description": "A reference identifying the Site object. ID: Unique Site Identifier, Name: The Site Name",
1509
+ "enumValues": null,
1510
+ "fields": {
1511
+ "id": {
1512
+ "args": {},
1513
+ "deprecationReason": null,
1514
+ "description": null,
1515
+ "id_str": "bgpPeer___site___id",
1516
+ "isDeprecated": false,
1517
+ "name": "id",
1518
+ "path": "bgpPeer.site.id",
1519
+ "requestStr": "$id:ID! ",
1520
+ "required": true,
1521
+ "responseStr": "id:$id ",
1522
+ "type": {
1523
+ "kind": [
1524
+ "NON_NULL",
1525
+ "SCALAR"
1526
+ ],
1527
+ "name": "ID",
1528
+ "non_null": false
1529
+ },
1530
+ "varName": "id"
1531
+ },
1532
+ "name": {
1533
+ "args": {},
1534
+ "deprecationReason": null,
1535
+ "description": null,
1536
+ "id_str": "bgpPeer___site___name",
1537
+ "isDeprecated": false,
1538
+ "name": "name",
1539
+ "path": "bgpPeer.site.name",
1540
+ "requestStr": "$name:String! ",
1541
+ "required": true,
1542
+ "responseStr": "name:$name ",
1543
+ "type": {
1544
+ "kind": [
1545
+ "NON_NULL",
1546
+ "SCALAR"
1547
+ ],
1548
+ "name": "String",
1549
+ "non_null": false
1550
+ },
1551
+ "varName": "name"
1552
+ }
1553
+ },
1554
+ "inputFields": null,
1555
+ "interfaces": {},
1556
+ "kind": "OBJECT",
1557
+ "name": "SiteRef",
1558
+ "possibleTypes": null
1559
+ },
1560
+ "indexType": "object",
1561
+ "kind": [
1562
+ "NON_NULL",
1563
+ "OBJECT"
1564
+ ],
1565
+ "name": "SiteRef",
1566
+ "non_null": false
1567
+ },
1568
+ "varName": "siteRef"
1569
+ },
1570
+ "summaryRoute": {
1571
+ "args": {},
1572
+ "deprecationReason": null,
1573
+ "description": "Summarized routes advertised to the peer.",
1574
+ "id_str": "bgpPeer___summaryRoute",
1575
+ "isDeprecated": false,
1576
+ "name": "summaryRoute",
1577
+ "path": "bgpPeer.summaryRoute",
1578
+ "requestStr": "$bgpSummaryRoute:[BgpSummaryRoute]! ",
1579
+ "required": true,
1580
+ "responseStr": "summaryRoute:$bgpSummaryRoute ",
1581
+ "type": {
1582
+ "definition": {
1583
+ "description": null,
1584
+ "enumValues": null,
1585
+ "fields": {
1586
+ "community": {
1587
+ "alias": "communityBgpSummaryRoute: community",
1588
+ "args": {},
1589
+ "deprecationReason": null,
1590
+ "description": "Community values associated with the route.",
1591
+ "id_str": "bgpPeer___summaryRoute___community",
1592
+ "isDeprecated": false,
1593
+ "name": "community",
1594
+ "path": "bgpPeer.summaryRoute.community",
1595
+ "requestStr": "$bgpCommunity:[BgpCommunity]! ",
1596
+ "required": true,
1597
+ "responseStr": "community:$bgpCommunity ",
1598
+ "type": {
1599
+ "definition": {
1600
+ "description": null,
1601
+ "enumValues": null,
1602
+ "fields": {
1603
+ "from": {
1604
+ "args": {},
1605
+ "deprecationReason": null,
1606
+ "description": "Start of the community range.",
1607
+ "id_str": "bgpPeer___summaryRoute___community___from",
1608
+ "isDeprecated": false,
1609
+ "name": "from",
1610
+ "path": "bgpPeer.summaryRoute.community.from",
1611
+ "requestStr": "$from:Asn16! ",
1612
+ "required": true,
1613
+ "responseStr": "from:$from ",
1614
+ "type": {
1615
+ "kind": [
1616
+ "NON_NULL",
1617
+ "SCALAR"
1618
+ ],
1619
+ "name": "Asn16",
1620
+ "non_null": false
1621
+ },
1622
+ "varName": "from"
1623
+ },
1624
+ "to": {
1625
+ "args": {},
1626
+ "deprecationReason": null,
1627
+ "description": "End of the community range.",
1628
+ "id_str": "bgpPeer___summaryRoute___community___to",
1629
+ "isDeprecated": false,
1630
+ "name": "to",
1631
+ "path": "bgpPeer.summaryRoute.community.to",
1632
+ "requestStr": "$to:Asn16! ",
1633
+ "required": true,
1634
+ "responseStr": "to:$to ",
1635
+ "type": {
1636
+ "kind": [
1637
+ "NON_NULL",
1638
+ "SCALAR"
1639
+ ],
1640
+ "name": "Asn16",
1641
+ "non_null": false
1642
+ },
1643
+ "varName": "to"
1644
+ }
1645
+ },
1646
+ "inputFields": null,
1647
+ "interfaces": {},
1648
+ "kind": "OBJECT",
1649
+ "name": "BgpCommunity",
1650
+ "possibleTypes": null
1651
+ },
1652
+ "indexType": "object",
1653
+ "kind": [
1654
+ "NON_NULL",
1655
+ "LIST",
1656
+ "NON_NULL",
1657
+ "OBJECT"
1658
+ ],
1659
+ "name": "BgpCommunity",
1660
+ "non_null": false
1661
+ },
1662
+ "varName": "bgpCommunity"
1663
+ },
1664
+ "id": {
1665
+ "args": {},
1666
+ "deprecationReason": null,
1667
+ "description": "Unique identifier of the summarized route.",
1668
+ "id_str": "bgpPeer___summaryRoute___id",
1669
+ "isDeprecated": false,
1670
+ "name": "id",
1671
+ "path": "bgpPeer.summaryRoute.id",
1672
+ "requestStr": "$id:ID! ",
1673
+ "required": true,
1674
+ "responseStr": "id:$id ",
1675
+ "type": {
1676
+ "kind": [
1677
+ "NON_NULL",
1678
+ "SCALAR"
1679
+ ],
1680
+ "name": "ID",
1681
+ "non_null": false
1682
+ },
1683
+ "varName": "id"
1684
+ },
1685
+ "route": {
1686
+ "args": {},
1687
+ "deprecationReason": null,
1688
+ "description": "Subnet of the summarized route.",
1689
+ "id_str": "bgpPeer___summaryRoute___route",
1690
+ "isDeprecated": false,
1691
+ "name": "route",
1692
+ "path": "bgpPeer.summaryRoute.route",
1693
+ "requestStr": "$route:NetworkSubnet! ",
1694
+ "required": true,
1695
+ "responseStr": "route:$route ",
1696
+ "type": {
1697
+ "kind": [
1698
+ "NON_NULL",
1699
+ "SCALAR"
1700
+ ],
1701
+ "name": "NetworkSubnet",
1702
+ "non_null": false
1703
+ },
1704
+ "varName": "route"
1705
+ }
1706
+ },
1707
+ "inputFields": null,
1708
+ "interfaces": {},
1709
+ "kind": "OBJECT",
1710
+ "name": "BgpSummaryRoute",
1711
+ "possibleTypes": null
1712
+ },
1713
+ "indexType": "object",
1714
+ "kind": [
1715
+ "NON_NULL",
1716
+ "LIST",
1717
+ "NON_NULL",
1718
+ "OBJECT"
1719
+ ],
1720
+ "name": "BgpSummaryRoute",
1721
+ "non_null": false
1722
+ },
1723
+ "varName": "bgpSummaryRoute"
1724
+ },
1725
+ "tracking": {
1726
+ "args": {},
1727
+ "deprecationReason": null,
1728
+ "description": "Tracking configuration for health and availability.",
1729
+ "id_str": "bgpPeer___tracking",
1730
+ "isDeprecated": false,
1731
+ "name": "tracking",
1732
+ "path": "bgpPeer.tracking",
1733
+ "requestStr": "$bgpTracking:BgpTracking ",
1734
+ "required": false,
1735
+ "responseStr": "tracking:$bgpTracking ",
1736
+ "type": {
1737
+ "definition": {
1738
+ "description": null,
1739
+ "enumValues": null,
1740
+ "fields": {
1741
+ "alertFrequency": {
1742
+ "args": {},
1743
+ "deprecationReason": null,
1744
+ "description": "Frequency of health alerts.",
1745
+ "id_str": "bgpPeer___tracking___alertFrequency",
1746
+ "isDeprecated": false,
1747
+ "name": "alertFrequency",
1748
+ "path": "bgpPeer.tracking.alertFrequency",
1749
+ "requestStr": "$alertFrequency:PolicyRuleTrackingFrequencyEnum! ",
1750
+ "required": true,
1751
+ "responseStr": "alertFrequency:$alertFrequency ",
1752
+ "type": {
1753
+ "definition": {
1754
+ "description": "Enum for the frequency of an alert event for a rule",
1755
+ "enumValues": [
1756
+ {
1757
+ "deprecationReason": null,
1758
+ "description": null,
1759
+ "isDeprecated": false,
1760
+ "name": "HOURLY"
1761
+ },
1762
+ {
1763
+ "deprecationReason": null,
1764
+ "description": null,
1765
+ "isDeprecated": false,
1766
+ "name": "DAILY"
1767
+ },
1768
+ {
1769
+ "deprecationReason": null,
1770
+ "description": null,
1771
+ "isDeprecated": false,
1772
+ "name": "WEEKLY"
1773
+ },
1774
+ {
1775
+ "deprecationReason": null,
1776
+ "description": null,
1777
+ "isDeprecated": false,
1778
+ "name": "IMMEDIATE"
1779
+ }
1780
+ ],
1781
+ "fields": null,
1782
+ "inputFields": null,
1783
+ "interfaces": null,
1784
+ "kind": "ENUM",
1785
+ "name": "PolicyRuleTrackingFrequencyEnum",
1786
+ "possibleTypes": null
1787
+ },
1788
+ "indexType": "enum",
1789
+ "kind": [
1790
+ "NON_NULL",
1791
+ "ENUM"
1792
+ ],
1793
+ "name": "PolicyRuleTrackingFrequencyEnum",
1794
+ "non_null": false
1795
+ },
1796
+ "varName": "alertFrequency"
1797
+ },
1798
+ "enabled": {
1799
+ "args": {},
1800
+ "deprecationReason": null,
1801
+ "description": "Indicates if tracking is enabled.",
1802
+ "id_str": "bgpPeer___tracking___enabled",
1803
+ "isDeprecated": false,
1804
+ "name": "enabled",
1805
+ "path": "bgpPeer.tracking.enabled",
1806
+ "requestStr": "$enabled:Boolean! ",
1807
+ "required": true,
1808
+ "responseStr": "enabled:$enabled ",
1809
+ "type": {
1810
+ "kind": [
1811
+ "NON_NULL",
1812
+ "SCALAR"
1813
+ ],
1814
+ "name": "Boolean",
1815
+ "non_null": false
1816
+ },
1817
+ "varName": "enabled"
1818
+ },
1819
+ "id": {
1820
+ "args": {},
1821
+ "deprecationReason": null,
1822
+ "description": "Unique identifier for the tracking rule.",
1823
+ "id_str": "bgpPeer___tracking___id",
1824
+ "isDeprecated": false,
1825
+ "name": "id",
1826
+ "path": "bgpPeer.tracking.id",
1827
+ "requestStr": "$id:ID! ",
1828
+ "required": true,
1829
+ "responseStr": "id:$id ",
1830
+ "type": {
1831
+ "kind": [
1832
+ "NON_NULL",
1833
+ "SCALAR"
1834
+ ],
1835
+ "name": "ID",
1836
+ "non_null": false
1837
+ },
1838
+ "varName": "id"
1839
+ },
1840
+ "subscriptionId": {
1841
+ "args": {},
1842
+ "deprecationReason": null,
1843
+ "description": "Subscription ID associated with the rule.",
1844
+ "id_str": "bgpPeer___tracking___subscriptionId",
1845
+ "isDeprecated": false,
1846
+ "name": "subscriptionId",
1847
+ "path": "bgpPeer.tracking.subscriptionId",
1848
+ "requestStr": "$subscriptionId:ID ",
1849
+ "required": false,
1850
+ "responseStr": "subscriptionId:$subscriptionId ",
1851
+ "type": {
1852
+ "kind": [
1853
+ "SCALAR"
1854
+ ],
1855
+ "name": "ID",
1856
+ "non_null": false
1857
+ },
1858
+ "varName": "subscriptionId"
1859
+ }
1860
+ },
1861
+ "inputFields": null,
1862
+ "interfaces": {},
1863
+ "kind": "OBJECT",
1864
+ "name": "BgpTracking",
1865
+ "possibleTypes": null
1866
+ },
1867
+ "indexType": "object",
1868
+ "kind": [
1869
+ "OBJECT"
1870
+ ],
1871
+ "name": "BgpTracking",
1872
+ "non_null": false
1873
+ },
1874
+ "varName": "bgpTracking"
1875
+ }
1876
+ },
1877
+ "inputFields": null,
1878
+ "interfaces": {},
1879
+ "kind": "OBJECT",
1880
+ "name": "BgpPeer",
1881
+ "possibleTypes": null
1882
+ },
1883
+ "indexType": "object",
1884
+ "kind": [
1885
+ "OBJECT"
1886
+ ],
1887
+ "name": "BgpPeer",
1888
+ "non_null": false
1889
+ },
1890
+ "varName": "bgpPeer"
1891
+ }
1892
+ },
1893
+ "inputFields": null,
1894
+ "interfaces": [],
1895
+ "kind": "OBJECT",
1896
+ "name": "SiteQueries",
1897
+ "possibleTypes": null
1898
+ },
1899
+ "indexType": "object",
1900
+ "kind": [
1901
+ "NON_NULL",
1902
+ "OBJECT"
1903
+ ],
1904
+ "name": "SiteQueries",
1905
+ "non_null": false
1906
+ },
1907
+ "variablesPayload": {
1908
+ "bgpPeerRefInput": {
1909
+ "by": {
1910
+ "by": "enum(ObjectRefBy)"
1911
+ },
1912
+ "input": {
1913
+ "input": "String"
1914
+ }
1915
+ }
1916
+ }
1917
+ }