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,2076 @@
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
+ "bgpPeerList": {
25
+ "args": {
26
+ "bgpPeerList___input": {
27
+ "defaultValue": null,
28
+ "description": null,
29
+ "id_str": "bgpPeerList___input",
30
+ "name": "input",
31
+ "path": "bgpPeerList.input",
32
+ "requestStr": "$bgpPeerListInput:BgpPeerListInput! ",
33
+ "required": true,
34
+ "responseStr": "input:$bgpPeerListInput ",
35
+ "type": {
36
+ "definition": {
37
+ "description": null,
38
+ "enumValues": null,
39
+ "fields": null,
40
+ "inputFields": {
41
+ "site": {
42
+ "defaultValue": null,
43
+ "description": "Identifies the site whose BGP peers are listed.",
44
+ "id_str": "bgpPeerList___input___site",
45
+ "name": "site",
46
+ "path": "bgpPeerList.input.site",
47
+ "requestStr": "$siteRefInput:SiteRefInput! ",
48
+ "required": true,
49
+ "responseStr": "site:$siteRefInput ",
50
+ "type": {
51
+ "definition": {
52
+ "description": null,
53
+ "enumValues": null,
54
+ "fields": null,
55
+ "inputFields": {
56
+ "by": {
57
+ "defaultValue": "ID",
58
+ "description": null,
59
+ "id_str": "bgpPeerList___input___site___by",
60
+ "name": "by",
61
+ "path": "bgpPeerList.input.site.by",
62
+ "requestStr": "$by:ObjectRefBy! ",
63
+ "required": true,
64
+ "responseStr": "by:$by ",
65
+ "type": {
66
+ "definition": {
67
+ "description": null,
68
+ "enumValues": [
69
+ {
70
+ "deprecationReason": null,
71
+ "description": null,
72
+ "isDeprecated": false,
73
+ "name": "ID"
74
+ },
75
+ {
76
+ "deprecationReason": null,
77
+ "description": null,
78
+ "isDeprecated": false,
79
+ "name": "NAME"
80
+ }
81
+ ],
82
+ "fields": null,
83
+ "inputFields": null,
84
+ "interfaces": null,
85
+ "kind": "ENUM",
86
+ "name": "ObjectRefBy",
87
+ "possibleTypes": null
88
+ },
89
+ "indexType": "enum",
90
+ "kind": [
91
+ "NON_NULL",
92
+ "ENUM"
93
+ ],
94
+ "name": "ObjectRefBy",
95
+ "non_null": false
96
+ },
97
+ "varName": "by"
98
+ },
99
+ "input": {
100
+ "defaultValue": null,
101
+ "description": null,
102
+ "id_str": "bgpPeerList___input___site___input",
103
+ "name": "input",
104
+ "path": "bgpPeerList.input.site.input",
105
+ "requestStr": "$input:String! ",
106
+ "required": true,
107
+ "responseStr": "input:$input ",
108
+ "type": {
109
+ "kind": [
110
+ "NON_NULL",
111
+ "SCALAR"
112
+ ],
113
+ "name": "String",
114
+ "non_null": false
115
+ },
116
+ "varName": "input"
117
+ }
118
+ },
119
+ "interfaces": null,
120
+ "kind": "INPUT_OBJECT",
121
+ "name": "SiteRefInput",
122
+ "possibleTypes": null
123
+ },
124
+ "indexType": "input_object",
125
+ "kind": [
126
+ "NON_NULL",
127
+ "INPUT_OBJECT"
128
+ ],
129
+ "name": "SiteRefInput",
130
+ "non_null": false
131
+ },
132
+ "varName": "siteRefInput"
133
+ }
134
+ },
135
+ "interfaces": null,
136
+ "kind": "INPUT_OBJECT",
137
+ "name": "BgpPeerListInput",
138
+ "possibleTypes": null
139
+ },
140
+ "indexType": "input_object",
141
+ "kind": [
142
+ "NON_NULL",
143
+ "INPUT_OBJECT"
144
+ ],
145
+ "name": "BgpPeerListInput",
146
+ "non_null": false
147
+ },
148
+ "varName": "bgpPeerListInput"
149
+ }
150
+ },
151
+ "deprecationReason": null,
152
+ "description": "Retrieves a list of all BGP peers associated with the specified site.",
153
+ "isDeprecated": false,
154
+ "name": "bgpPeerList",
155
+ "type": {
156
+ "kind": "OBJECT",
157
+ "name": "BgpPeerListPayload",
158
+ "ofType": null
159
+ }
160
+ }
161
+ },
162
+ "deprecationReason": null,
163
+ "description": null,
164
+ "fieldTypes": {
165
+ "BfdSettings": true,
166
+ "BgpCommunity": true,
167
+ "BgpCommunityFilterPredicate": true,
168
+ "BgpCommunityFilterRule": true,
169
+ "BgpDefaultAction": true,
170
+ "BgpFilterRule": true,
171
+ "BgpPeer": true,
172
+ "BgpPeerListPayload": true,
173
+ "BgpRouteExactAndInclusiveFilterRule": true,
174
+ "BgpRouteExactFilterRule": true,
175
+ "BgpSummaryRoute": true,
176
+ "BgpTracking": true,
177
+ "GlobalIpRangeRef": true,
178
+ "ObjectRefBy": true,
179
+ "PolicyRuleTrackingFrequencyEnum": true,
180
+ "SiteRef": true,
181
+ "SiteRefInput": true
182
+ },
183
+ "isDeprecated": false,
184
+ "name": "site",
185
+ "operationArgs": {
186
+ "accountId": {
187
+ "defaultValue": null,
188
+ "description": null,
189
+ "id_str": "accountId",
190
+ "name": "accountId",
191
+ "path": "accountId",
192
+ "requestStr": "$accountId:ID! ",
193
+ "required": true,
194
+ "responseStr": "accountId:$accountId ",
195
+ "type": {
196
+ "kind": [
197
+ "NON_NULL",
198
+ "SCALAR"
199
+ ],
200
+ "name": "ID",
201
+ "non_null": false
202
+ },
203
+ "varName": "accountId"
204
+ },
205
+ "bgpPeerListInput": {
206
+ "defaultValue": null,
207
+ "description": null,
208
+ "id_str": "bgpPeerList___input",
209
+ "name": "input",
210
+ "path": "bgpPeerList.input",
211
+ "requestStr": "$bgpPeerListInput:BgpPeerListInput! ",
212
+ "required": true,
213
+ "responseStr": "input:$bgpPeerListInput ",
214
+ "type": {
215
+ "definition": {
216
+ "description": null,
217
+ "enumValues": null,
218
+ "fields": null,
219
+ "inputFields": {
220
+ "site": {
221
+ "defaultValue": null,
222
+ "description": "Identifies the site whose BGP peers are listed.",
223
+ "id_str": "bgpPeerList___input___site",
224
+ "name": "site",
225
+ "path": "bgpPeerList.input.site",
226
+ "requestStr": "$siteRefInput:SiteRefInput! ",
227
+ "required": true,
228
+ "responseStr": "site:$siteRefInput ",
229
+ "type": {
230
+ "definition": {
231
+ "description": null,
232
+ "enumValues": null,
233
+ "fields": null,
234
+ "inputFields": {
235
+ "by": {
236
+ "defaultValue": "ID",
237
+ "description": null,
238
+ "id_str": "bgpPeerList___input___site___by",
239
+ "name": "by",
240
+ "path": "bgpPeerList.input.site.by",
241
+ "requestStr": "$by:ObjectRefBy! ",
242
+ "required": true,
243
+ "responseStr": "by:$by ",
244
+ "type": {
245
+ "definition": {
246
+ "description": null,
247
+ "enumValues": [
248
+ {
249
+ "deprecationReason": null,
250
+ "description": null,
251
+ "isDeprecated": false,
252
+ "name": "ID"
253
+ },
254
+ {
255
+ "deprecationReason": null,
256
+ "description": null,
257
+ "isDeprecated": false,
258
+ "name": "NAME"
259
+ }
260
+ ],
261
+ "fields": null,
262
+ "inputFields": null,
263
+ "interfaces": null,
264
+ "kind": "ENUM",
265
+ "name": "ObjectRefBy",
266
+ "possibleTypes": null
267
+ },
268
+ "indexType": "enum",
269
+ "kind": [
270
+ "NON_NULL",
271
+ "ENUM"
272
+ ],
273
+ "name": "ObjectRefBy",
274
+ "non_null": false
275
+ },
276
+ "varName": "by"
277
+ },
278
+ "input": {
279
+ "defaultValue": null,
280
+ "description": null,
281
+ "id_str": "bgpPeerList___input___site___input",
282
+ "name": "input",
283
+ "path": "bgpPeerList.input.site.input",
284
+ "requestStr": "$input:String! ",
285
+ "required": true,
286
+ "responseStr": "input:$input ",
287
+ "type": {
288
+ "kind": [
289
+ "NON_NULL",
290
+ "SCALAR"
291
+ ],
292
+ "name": "String",
293
+ "non_null": false
294
+ },
295
+ "varName": "input"
296
+ }
297
+ },
298
+ "interfaces": null,
299
+ "kind": "INPUT_OBJECT",
300
+ "name": "SiteRefInput",
301
+ "possibleTypes": null
302
+ },
303
+ "indexType": "input_object",
304
+ "kind": [
305
+ "NON_NULL",
306
+ "INPUT_OBJECT"
307
+ ],
308
+ "name": "SiteRefInput",
309
+ "non_null": false
310
+ },
311
+ "varName": "siteRefInput"
312
+ }
313
+ },
314
+ "interfaces": null,
315
+ "kind": "INPUT_OBJECT",
316
+ "name": "BgpPeerListInput",
317
+ "possibleTypes": null
318
+ },
319
+ "indexType": "input_object",
320
+ "kind": [
321
+ "NON_NULL",
322
+ "INPUT_OBJECT"
323
+ ],
324
+ "name": "BgpPeerListInput",
325
+ "non_null": false
326
+ },
327
+ "varName": "bgpPeerListInput"
328
+ }
329
+ },
330
+ "path": "query.site.bgpPeerList",
331
+ "type": {
332
+ "definition": {
333
+ "description": null,
334
+ "enumValues": null,
335
+ "fields": {
336
+ "bgpPeerList": {
337
+ "args": {
338
+ "bgpPeerList___input": {
339
+ "defaultValue": null,
340
+ "description": null,
341
+ "id_str": "bgpPeerList___input",
342
+ "name": "input",
343
+ "path": "bgpPeerList.input",
344
+ "requestStr": "$bgpPeerListInput:BgpPeerListInput! ",
345
+ "required": true,
346
+ "responseStr": "input:$bgpPeerListInput ",
347
+ "type": {
348
+ "definition": {
349
+ "description": null,
350
+ "enumValues": null,
351
+ "fields": null,
352
+ "inputFields": {
353
+ "site": {
354
+ "defaultValue": null,
355
+ "description": "Identifies the site whose BGP peers are listed.",
356
+ "id_str": "bgpPeerList___input___site",
357
+ "name": "site",
358
+ "path": "bgpPeerList.input.site",
359
+ "requestStr": "$siteRefInput:SiteRefInput! ",
360
+ "required": true,
361
+ "responseStr": "site:$siteRefInput ",
362
+ "type": {
363
+ "definition": {
364
+ "description": null,
365
+ "enumValues": null,
366
+ "fields": null,
367
+ "inputFields": {
368
+ "by": {
369
+ "defaultValue": "ID",
370
+ "description": null,
371
+ "id_str": "bgpPeerList___input___site___by",
372
+ "name": "by",
373
+ "path": "bgpPeerList.input.site.by",
374
+ "requestStr": "$by:ObjectRefBy! ",
375
+ "required": true,
376
+ "responseStr": "by:$by ",
377
+ "type": {
378
+ "definition": {
379
+ "description": null,
380
+ "enumValues": [
381
+ {
382
+ "deprecationReason": null,
383
+ "description": null,
384
+ "isDeprecated": false,
385
+ "name": "ID"
386
+ },
387
+ {
388
+ "deprecationReason": null,
389
+ "description": null,
390
+ "isDeprecated": false,
391
+ "name": "NAME"
392
+ }
393
+ ],
394
+ "fields": null,
395
+ "inputFields": null,
396
+ "interfaces": null,
397
+ "kind": "ENUM",
398
+ "name": "ObjectRefBy",
399
+ "possibleTypes": null
400
+ },
401
+ "indexType": "enum",
402
+ "kind": [
403
+ "NON_NULL",
404
+ "ENUM"
405
+ ],
406
+ "name": "ObjectRefBy",
407
+ "non_null": false
408
+ },
409
+ "varName": "by"
410
+ },
411
+ "input": {
412
+ "defaultValue": null,
413
+ "description": null,
414
+ "id_str": "bgpPeerList___input___site___input",
415
+ "name": "input",
416
+ "path": "bgpPeerList.input.site.input",
417
+ "requestStr": "$input:String! ",
418
+ "required": true,
419
+ "responseStr": "input:$input ",
420
+ "type": {
421
+ "kind": [
422
+ "NON_NULL",
423
+ "SCALAR"
424
+ ],
425
+ "name": "String",
426
+ "non_null": false
427
+ },
428
+ "varName": "input"
429
+ }
430
+ },
431
+ "interfaces": null,
432
+ "kind": "INPUT_OBJECT",
433
+ "name": "SiteRefInput",
434
+ "possibleTypes": null
435
+ },
436
+ "indexType": "input_object",
437
+ "kind": [
438
+ "NON_NULL",
439
+ "INPUT_OBJECT"
440
+ ],
441
+ "name": "SiteRefInput",
442
+ "non_null": false
443
+ },
444
+ "varName": "siteRefInput"
445
+ }
446
+ },
447
+ "interfaces": null,
448
+ "kind": "INPUT_OBJECT",
449
+ "name": "BgpPeerListInput",
450
+ "possibleTypes": null
451
+ },
452
+ "indexType": "input_object",
453
+ "kind": [
454
+ "NON_NULL",
455
+ "INPUT_OBJECT"
456
+ ],
457
+ "name": "BgpPeerListInput",
458
+ "non_null": false
459
+ },
460
+ "varName": "bgpPeerListInput"
461
+ }
462
+ },
463
+ "deprecationReason": null,
464
+ "description": "Retrieves a list of all BGP peers associated with the specified site.",
465
+ "id_str": "bgpPeerList",
466
+ "isDeprecated": false,
467
+ "name": "bgpPeerList",
468
+ "path": "bgpPeerList",
469
+ "requestStr": "$bgpPeerListPayload:BgpPeerListPayload ",
470
+ "required": false,
471
+ "responseStr": "bgpPeerList:$bgpPeerListPayload ",
472
+ "type": {
473
+ "definition": {
474
+ "description": null,
475
+ "enumValues": null,
476
+ "fields": {
477
+ "bgpPeer": {
478
+ "args": {},
479
+ "deprecationReason": null,
480
+ "description": "BGP peers associated with the site.",
481
+ "id_str": "bgpPeerList___bgpPeer",
482
+ "isDeprecated": false,
483
+ "name": "bgpPeer",
484
+ "path": "bgpPeerList.bgpPeer",
485
+ "requestStr": "$bgpPeer:[BgpPeer]! ",
486
+ "required": true,
487
+ "responseStr": "bgpPeer:$bgpPeer ",
488
+ "type": {
489
+ "definition": {
490
+ "description": null,
491
+ "enumValues": null,
492
+ "fields": {
493
+ "advertiseAllRoutes": {
494
+ "args": {},
495
+ "deprecationReason": null,
496
+ "description": "Indicates if all routes are advertised.",
497
+ "id_str": "bgpPeerList___bgpPeer___advertiseAllRoutes",
498
+ "isDeprecated": false,
499
+ "name": "advertiseAllRoutes",
500
+ "path": "bgpPeerList.bgpPeer.advertiseAllRoutes",
501
+ "requestStr": "$advertiseAllRoutes:Boolean! ",
502
+ "required": true,
503
+ "responseStr": "advertiseAllRoutes:$advertiseAllRoutes ",
504
+ "type": {
505
+ "kind": [
506
+ "NON_NULL",
507
+ "SCALAR"
508
+ ],
509
+ "name": "Boolean",
510
+ "non_null": false
511
+ },
512
+ "varName": "advertiseAllRoutes"
513
+ },
514
+ "advertiseDefaultRoute": {
515
+ "args": {},
516
+ "deprecationReason": null,
517
+ "description": "Indicates if the default route is advertised.",
518
+ "id_str": "bgpPeerList___bgpPeer___advertiseDefaultRoute",
519
+ "isDeprecated": false,
520
+ "name": "advertiseDefaultRoute",
521
+ "path": "bgpPeerList.bgpPeer.advertiseDefaultRoute",
522
+ "requestStr": "$advertiseDefaultRoute:Boolean! ",
523
+ "required": true,
524
+ "responseStr": "advertiseDefaultRoute:$advertiseDefaultRoute ",
525
+ "type": {
526
+ "kind": [
527
+ "NON_NULL",
528
+ "SCALAR"
529
+ ],
530
+ "name": "Boolean",
531
+ "non_null": false
532
+ },
533
+ "varName": "advertiseDefaultRoute"
534
+ },
535
+ "advertiseSummaryRoutes": {
536
+ "args": {},
537
+ "deprecationReason": null,
538
+ "description": "Indicates if summarized routes are advertised.",
539
+ "id_str": "bgpPeerList___bgpPeer___advertiseSummaryRoutes",
540
+ "isDeprecated": false,
541
+ "name": "advertiseSummaryRoutes",
542
+ "path": "bgpPeerList.bgpPeer.advertiseSummaryRoutes",
543
+ "requestStr": "$advertiseSummaryRoutes:Boolean! ",
544
+ "required": true,
545
+ "responseStr": "advertiseSummaryRoutes:$advertiseSummaryRoutes ",
546
+ "type": {
547
+ "kind": [
548
+ "NON_NULL",
549
+ "SCALAR"
550
+ ],
551
+ "name": "Boolean",
552
+ "non_null": false
553
+ },
554
+ "varName": "advertiseSummaryRoutes"
555
+ },
556
+ "bfdEnabled": {
557
+ "args": {},
558
+ "deprecationReason": null,
559
+ "description": "Indicates if BFD is enabled for failure detection.",
560
+ "id_str": "bgpPeerList___bgpPeer___bfdEnabled",
561
+ "isDeprecated": false,
562
+ "name": "bfdEnabled",
563
+ "path": "bgpPeerList.bgpPeer.bfdEnabled",
564
+ "requestStr": "$bfdEnabled:Boolean! ",
565
+ "required": true,
566
+ "responseStr": "bfdEnabled:$bfdEnabled ",
567
+ "type": {
568
+ "kind": [
569
+ "NON_NULL",
570
+ "SCALAR"
571
+ ],
572
+ "name": "Boolean",
573
+ "non_null": false
574
+ },
575
+ "varName": "bfdEnabled"
576
+ },
577
+ "bfdSettings": {
578
+ "alias": "bfdSettingsBgpPeer: bfdSettings",
579
+ "args": {},
580
+ "deprecationReason": null,
581
+ "description": "BFD configuration.",
582
+ "id_str": "bgpPeerList___bgpPeer___bfdSettings",
583
+ "isDeprecated": false,
584
+ "name": "bfdSettings",
585
+ "path": "bgpPeerList.bgpPeer.bfdSettings",
586
+ "requestStr": "$bfdSettings:BfdSettings ",
587
+ "required": false,
588
+ "responseStr": "bfdSettings:$bfdSettings ",
589
+ "type": {
590
+ "definition": {
591
+ "description": null,
592
+ "enumValues": null,
593
+ "fields": {
594
+ "multiplier": {
595
+ "args": {},
596
+ "deprecationReason": null,
597
+ "description": "Number of missed BFD packets before considering the session down.",
598
+ "id_str": "bgpPeerList___bgpPeer___bfdSettings___multiplier",
599
+ "isDeprecated": false,
600
+ "name": "multiplier",
601
+ "path": "bgpPeerList.bgpPeer.bfdSettings.multiplier",
602
+ "requestStr": "$multiplier:Int! ",
603
+ "required": true,
604
+ "responseStr": "multiplier:$multiplier ",
605
+ "type": {
606
+ "kind": [
607
+ "NON_NULL",
608
+ "SCALAR"
609
+ ],
610
+ "name": "Int",
611
+ "non_null": false
612
+ },
613
+ "varName": "multiplier"
614
+ },
615
+ "receiveInterval": {
616
+ "args": {},
617
+ "deprecationReason": null,
618
+ "description": "Time interval (in milliseconds) in which this peer expects to receive BFD packets.",
619
+ "id_str": "bgpPeerList___bgpPeer___bfdSettings___receiveInterval",
620
+ "isDeprecated": false,
621
+ "name": "receiveInterval",
622
+ "path": "bgpPeerList.bgpPeer.bfdSettings.receiveInterval",
623
+ "requestStr": "$receiveInterval:Int! ",
624
+ "required": true,
625
+ "responseStr": "receiveInterval:$receiveInterval ",
626
+ "type": {
627
+ "kind": [
628
+ "NON_NULL",
629
+ "SCALAR"
630
+ ],
631
+ "name": "Int",
632
+ "non_null": false
633
+ },
634
+ "varName": "receiveInterval"
635
+ },
636
+ "transmitInterval": {
637
+ "args": {},
638
+ "deprecationReason": null,
639
+ "description": "Time interval (in milliseconds) between BFD packets sent by this peer.",
640
+ "id_str": "bgpPeerList___bgpPeer___bfdSettings___transmitInterval",
641
+ "isDeprecated": false,
642
+ "name": "transmitInterval",
643
+ "path": "bgpPeerList.bgpPeer.bfdSettings.transmitInterval",
644
+ "requestStr": "$transmitInterval:Int! ",
645
+ "required": true,
646
+ "responseStr": "transmitInterval:$transmitInterval ",
647
+ "type": {
648
+ "kind": [
649
+ "NON_NULL",
650
+ "SCALAR"
651
+ ],
652
+ "name": "Int",
653
+ "non_null": false
654
+ },
655
+ "varName": "transmitInterval"
656
+ }
657
+ },
658
+ "inputFields": null,
659
+ "interfaces": {},
660
+ "kind": "OBJECT",
661
+ "name": "BfdSettings",
662
+ "possibleTypes": null
663
+ },
664
+ "indexType": "object",
665
+ "kind": [
666
+ "OBJECT"
667
+ ],
668
+ "name": "BfdSettings",
669
+ "non_null": false
670
+ },
671
+ "varName": "bfdSettings"
672
+ },
673
+ "catoAsn": {
674
+ "args": {},
675
+ "deprecationReason": null,
676
+ "description": "AS number of Cato's BGP endpoint.",
677
+ "id_str": "bgpPeerList___bgpPeer___catoAsn",
678
+ "isDeprecated": false,
679
+ "name": "catoAsn",
680
+ "path": "bgpPeerList.bgpPeer.catoAsn",
681
+ "requestStr": "$catoAsn:Asn16! ",
682
+ "required": true,
683
+ "responseStr": "catoAsn:$catoAsn ",
684
+ "type": {
685
+ "kind": [
686
+ "NON_NULL",
687
+ "SCALAR"
688
+ ],
689
+ "name": "Asn16",
690
+ "non_null": false
691
+ },
692
+ "varName": "catoAsn"
693
+ },
694
+ "catoIp": {
695
+ "args": {},
696
+ "deprecationReason": null,
697
+ "description": "IP address of Cato's BGP endpoint.",
698
+ "id_str": "bgpPeerList___bgpPeer___catoIp",
699
+ "isDeprecated": false,
700
+ "name": "catoIp",
701
+ "path": "bgpPeerList.bgpPeer.catoIp",
702
+ "requestStr": "$catoIp:IPAddress! ",
703
+ "required": true,
704
+ "responseStr": "catoIp:$catoIp ",
705
+ "type": {
706
+ "kind": [
707
+ "NON_NULL",
708
+ "SCALAR"
709
+ ],
710
+ "name": "IPAddress",
711
+ "non_null": false
712
+ },
713
+ "varName": "catoIp"
714
+ },
715
+ "defaultAction": {
716
+ "alias": "defaultActionBgpPeer: defaultAction",
717
+ "args": {},
718
+ "deprecationReason": null,
719
+ "description": "Default action for routes not matching filters (ACCEPT or DROP).",
720
+ "id_str": "bgpPeerList___bgpPeer___defaultAction",
721
+ "isDeprecated": false,
722
+ "name": "defaultAction",
723
+ "path": "bgpPeerList.bgpPeer.defaultAction",
724
+ "requestStr": "$defaultAction:BgpDefaultAction! ",
725
+ "required": true,
726
+ "responseStr": "defaultAction:$defaultAction ",
727
+ "type": {
728
+ "definition": {
729
+ "description": null,
730
+ "enumValues": [
731
+ {
732
+ "deprecationReason": null,
733
+ "description": "Default action to drop all unmatched routes.",
734
+ "isDeprecated": false,
735
+ "name": "DROP"
736
+ },
737
+ {
738
+ "deprecationReason": null,
739
+ "description": "Default action to accept all unmatched routes.",
740
+ "isDeprecated": false,
741
+ "name": "ACCEPT"
742
+ }
743
+ ],
744
+ "fields": null,
745
+ "inputFields": null,
746
+ "interfaces": null,
747
+ "kind": "ENUM",
748
+ "name": "BgpDefaultAction",
749
+ "possibleTypes": null
750
+ },
751
+ "indexType": "enum",
752
+ "kind": [
753
+ "NON_NULL",
754
+ "ENUM"
755
+ ],
756
+ "name": "BgpDefaultAction",
757
+ "non_null": false
758
+ },
759
+ "varName": "defaultAction"
760
+ },
761
+ "defaultActionExclusion": {
762
+ "alias": "defaultActionExclusionBgpPeer: defaultActionExclusion",
763
+ "args": {},
764
+ "deprecationReason": null,
765
+ "description": "Rules excluded from the default action.",
766
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion",
767
+ "isDeprecated": false,
768
+ "name": "defaultActionExclusion",
769
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion",
770
+ "requestStr": "$bgpFilterRule:[BgpFilterRule]! ",
771
+ "required": true,
772
+ "responseStr": "defaultActionExclusion:$bgpFilterRule ",
773
+ "type": {
774
+ "definition": {
775
+ "description": null,
776
+ "enumValues": null,
777
+ "fields": {
778
+ "bgpRouteExactAndInclusiveFilterRule": {
779
+ "alias": "bgpRouteExactAndInclusiveFilterRuleBgpFilterRule: bgpRouteExactAndInclusiveFilterRule",
780
+ "args": {},
781
+ "deprecationReason": null,
782
+ "description": "Exact and inclusive filter rule. Please choose only one filter rule type.",
783
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule",
784
+ "isDeprecated": false,
785
+ "name": "bgpRouteExactAndInclusiveFilterRule",
786
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule",
787
+ "requestStr": "$bgpRouteExactAndInclusiveFilterRule:BgpRouteExactAndInclusiveFilterRule ",
788
+ "required": false,
789
+ "responseStr": "bgpRouteExactAndInclusiveFilterRule:$bgpRouteExactAndInclusiveFilterRule ",
790
+ "type": {
791
+ "definition": {
792
+ "description": null,
793
+ "enumValues": null,
794
+ "fields": {
795
+ "ge": {
796
+ "args": {},
797
+ "deprecationReason": null,
798
+ "description": "Minimum prefix length for the filter rule.",
799
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___ge",
800
+ "isDeprecated": false,
801
+ "name": "ge",
802
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.ge",
803
+ "requestStr": "$ge:Int ",
804
+ "required": false,
805
+ "responseStr": "ge:$ge ",
806
+ "type": {
807
+ "kind": [
808
+ "SCALAR"
809
+ ],
810
+ "name": "Int",
811
+ "non_null": false
812
+ },
813
+ "varName": "ge"
814
+ },
815
+ "globalIpRange": {
816
+ "args": {},
817
+ "deprecationReason": null,
818
+ "description": "Global IP ranges to include.",
819
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___globalIpRange",
820
+ "isDeprecated": false,
821
+ "name": "globalIpRange",
822
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.globalIpRange",
823
+ "requestStr": "$globalIpRangeRef:[GlobalIpRangeRef]! ",
824
+ "required": true,
825
+ "responseStr": "globalIpRange:$globalIpRangeRef ",
826
+ "type": {
827
+ "definition": {
828
+ "description": "A reference identifying the GlobalIpRange object. ID: Unique GlobalIpRange Identifier, Name: The GlobalIpRange Name",
829
+ "enumValues": null,
830
+ "fields": {
831
+ "id": {
832
+ "args": {},
833
+ "deprecationReason": null,
834
+ "description": null,
835
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___globalIpRange___id",
836
+ "isDeprecated": false,
837
+ "name": "id",
838
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.globalIpRange.id",
839
+ "requestStr": "$id:ID! ",
840
+ "required": true,
841
+ "responseStr": "id:$id ",
842
+ "type": {
843
+ "kind": [
844
+ "NON_NULL",
845
+ "SCALAR"
846
+ ],
847
+ "name": "ID",
848
+ "non_null": false
849
+ },
850
+ "varName": "id"
851
+ },
852
+ "name": {
853
+ "args": {},
854
+ "deprecationReason": null,
855
+ "description": null,
856
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___globalIpRange___name",
857
+ "isDeprecated": false,
858
+ "name": "name",
859
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.globalIpRange.name",
860
+ "requestStr": "$name:String! ",
861
+ "required": true,
862
+ "responseStr": "name:$name ",
863
+ "type": {
864
+ "kind": [
865
+ "NON_NULL",
866
+ "SCALAR"
867
+ ],
868
+ "name": "String",
869
+ "non_null": false
870
+ },
871
+ "varName": "name"
872
+ }
873
+ },
874
+ "inputFields": null,
875
+ "interfaces": {},
876
+ "kind": "OBJECT",
877
+ "name": "GlobalIpRangeRef",
878
+ "possibleTypes": null
879
+ },
880
+ "indexType": "object",
881
+ "kind": [
882
+ "NON_NULL",
883
+ "LIST",
884
+ "NON_NULL",
885
+ "OBJECT"
886
+ ],
887
+ "name": "GlobalIpRangeRef",
888
+ "non_null": false
889
+ },
890
+ "varName": "globalIpRangeRef"
891
+ },
892
+ "globalIpRangeException": {
893
+ "args": {},
894
+ "deprecationReason": null,
895
+ "description": "Global IP ranges to exclude.",
896
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___globalIpRangeException",
897
+ "isDeprecated": false,
898
+ "name": "globalIpRangeException",
899
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.globalIpRangeException",
900
+ "requestStr": "$globalIpRangeRef:[GlobalIpRangeRef]! ",
901
+ "required": true,
902
+ "responseStr": "globalIpRangeException:$globalIpRangeRef ",
903
+ "type": {
904
+ "definition": {
905
+ "description": "A reference identifying the GlobalIpRange object. ID: Unique GlobalIpRange Identifier, Name: The GlobalIpRange Name",
906
+ "enumValues": null,
907
+ "fields": {
908
+ "id": {
909
+ "args": {},
910
+ "deprecationReason": null,
911
+ "description": null,
912
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___globalIpRangeException___id",
913
+ "isDeprecated": false,
914
+ "name": "id",
915
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.globalIpRangeException.id",
916
+ "requestStr": "$id:ID! ",
917
+ "required": true,
918
+ "responseStr": "id:$id ",
919
+ "type": {
920
+ "kind": [
921
+ "NON_NULL",
922
+ "SCALAR"
923
+ ],
924
+ "name": "ID",
925
+ "non_null": false
926
+ },
927
+ "varName": "id"
928
+ },
929
+ "name": {
930
+ "args": {},
931
+ "deprecationReason": null,
932
+ "description": null,
933
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___globalIpRangeException___name",
934
+ "isDeprecated": false,
935
+ "name": "name",
936
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.globalIpRangeException.name",
937
+ "requestStr": "$name:String! ",
938
+ "required": true,
939
+ "responseStr": "name:$name ",
940
+ "type": {
941
+ "kind": [
942
+ "NON_NULL",
943
+ "SCALAR"
944
+ ],
945
+ "name": "String",
946
+ "non_null": false
947
+ },
948
+ "varName": "name"
949
+ }
950
+ },
951
+ "inputFields": null,
952
+ "interfaces": {},
953
+ "kind": "OBJECT",
954
+ "name": "GlobalIpRangeRef",
955
+ "possibleTypes": null
956
+ },
957
+ "indexType": "object",
958
+ "kind": [
959
+ "NON_NULL",
960
+ "LIST",
961
+ "NON_NULL",
962
+ "OBJECT"
963
+ ],
964
+ "name": "GlobalIpRangeRef",
965
+ "non_null": false
966
+ },
967
+ "varName": "globalIpRangeRef"
968
+ },
969
+ "id": {
970
+ "args": {},
971
+ "deprecationReason": null,
972
+ "description": "Unique identifier of the filter rule.",
973
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___id",
974
+ "isDeprecated": false,
975
+ "name": "id",
976
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.id",
977
+ "requestStr": "$id:ID! ",
978
+ "required": true,
979
+ "responseStr": "id:$id ",
980
+ "type": {
981
+ "kind": [
982
+ "NON_NULL",
983
+ "SCALAR"
984
+ ],
985
+ "name": "ID",
986
+ "non_null": false
987
+ },
988
+ "varName": "id"
989
+ },
990
+ "le": {
991
+ "args": {},
992
+ "deprecationReason": null,
993
+ "description": "Maximum prefix length for the filter rule.",
994
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___le",
995
+ "isDeprecated": false,
996
+ "name": "le",
997
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.le",
998
+ "requestStr": "$le:Int ",
999
+ "required": false,
1000
+ "responseStr": "le:$le ",
1001
+ "type": {
1002
+ "kind": [
1003
+ "SCALAR"
1004
+ ],
1005
+ "name": "Int",
1006
+ "non_null": false
1007
+ },
1008
+ "varName": "le"
1009
+ },
1010
+ "networkSubnet": {
1011
+ "args": {},
1012
+ "deprecationReason": null,
1013
+ "description": "Network subnets to include.",
1014
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___networkSubnet",
1015
+ "isDeprecated": false,
1016
+ "name": "networkSubnet",
1017
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.networkSubnet",
1018
+ "requestStr": "$networkSubnet:[NetworkSubnet]! ",
1019
+ "required": true,
1020
+ "responseStr": "networkSubnet:$networkSubnet ",
1021
+ "type": {
1022
+ "kind": [
1023
+ "NON_NULL",
1024
+ "LIST",
1025
+ "NON_NULL",
1026
+ "SCALAR"
1027
+ ],
1028
+ "name": "NetworkSubnet",
1029
+ "non_null": false
1030
+ },
1031
+ "varName": "networkSubnet"
1032
+ },
1033
+ "networkSubnetException": {
1034
+ "args": {},
1035
+ "deprecationReason": null,
1036
+ "description": "Network subnets to exclude.",
1037
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactAndInclusiveFilterRule___networkSubnetException",
1038
+ "isDeprecated": false,
1039
+ "name": "networkSubnetException",
1040
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactAndInclusiveFilterRule.networkSubnetException",
1041
+ "requestStr": "$networkSubnetException:[NetworkSubnet]! ",
1042
+ "required": true,
1043
+ "responseStr": "networkSubnetException:$networkSubnetException ",
1044
+ "type": {
1045
+ "kind": [
1046
+ "NON_NULL",
1047
+ "LIST",
1048
+ "NON_NULL",
1049
+ "SCALAR"
1050
+ ],
1051
+ "name": "NetworkSubnet",
1052
+ "non_null": false
1053
+ },
1054
+ "varName": "networkSubnetException"
1055
+ }
1056
+ },
1057
+ "inputFields": null,
1058
+ "interfaces": {},
1059
+ "kind": "OBJECT",
1060
+ "name": "BgpRouteExactAndInclusiveFilterRule",
1061
+ "possibleTypes": null
1062
+ },
1063
+ "indexType": "object",
1064
+ "kind": [
1065
+ "OBJECT"
1066
+ ],
1067
+ "name": "BgpRouteExactAndInclusiveFilterRule",
1068
+ "non_null": false
1069
+ },
1070
+ "varName": "bgpRouteExactAndInclusiveFilterRule"
1071
+ },
1072
+ "bgpRouteExactFilterRule": {
1073
+ "alias": "bgpRouteExactFilterRuleBgpFilterRule: bgpRouteExactFilterRule",
1074
+ "args": {},
1075
+ "deprecationReason": null,
1076
+ "description": "Exact route filter rule. Please choose only one filter rule type.",
1077
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactFilterRule",
1078
+ "isDeprecated": false,
1079
+ "name": "bgpRouteExactFilterRule",
1080
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactFilterRule",
1081
+ "requestStr": "$bgpRouteExactFilterRule:BgpRouteExactFilterRule ",
1082
+ "required": false,
1083
+ "responseStr": "bgpRouteExactFilterRule:$bgpRouteExactFilterRule ",
1084
+ "type": {
1085
+ "definition": {
1086
+ "description": null,
1087
+ "enumValues": null,
1088
+ "fields": {
1089
+ "globalIpRange": {
1090
+ "args": {},
1091
+ "deprecationReason": null,
1092
+ "description": "Global IP ranges to include.",
1093
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactFilterRule___globalIpRange",
1094
+ "isDeprecated": false,
1095
+ "name": "globalIpRange",
1096
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactFilterRule.globalIpRange",
1097
+ "requestStr": "$globalIpRangeRef:[GlobalIpRangeRef]! ",
1098
+ "required": true,
1099
+ "responseStr": "globalIpRange:$globalIpRangeRef ",
1100
+ "type": {
1101
+ "definition": {
1102
+ "description": "A reference identifying the GlobalIpRange object. ID: Unique GlobalIpRange Identifier, Name: The GlobalIpRange Name",
1103
+ "enumValues": null,
1104
+ "fields": {
1105
+ "id": {
1106
+ "args": {},
1107
+ "deprecationReason": null,
1108
+ "description": null,
1109
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactFilterRule___globalIpRange___id",
1110
+ "isDeprecated": false,
1111
+ "name": "id",
1112
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactFilterRule.globalIpRange.id",
1113
+ "requestStr": "$id:ID! ",
1114
+ "required": true,
1115
+ "responseStr": "id:$id ",
1116
+ "type": {
1117
+ "kind": [
1118
+ "NON_NULL",
1119
+ "SCALAR"
1120
+ ],
1121
+ "name": "ID",
1122
+ "non_null": false
1123
+ },
1124
+ "varName": "id"
1125
+ },
1126
+ "name": {
1127
+ "args": {},
1128
+ "deprecationReason": null,
1129
+ "description": null,
1130
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactFilterRule___globalIpRange___name",
1131
+ "isDeprecated": false,
1132
+ "name": "name",
1133
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactFilterRule.globalIpRange.name",
1134
+ "requestStr": "$name:String! ",
1135
+ "required": true,
1136
+ "responseStr": "name:$name ",
1137
+ "type": {
1138
+ "kind": [
1139
+ "NON_NULL",
1140
+ "SCALAR"
1141
+ ],
1142
+ "name": "String",
1143
+ "non_null": false
1144
+ },
1145
+ "varName": "name"
1146
+ }
1147
+ },
1148
+ "inputFields": null,
1149
+ "interfaces": {},
1150
+ "kind": "OBJECT",
1151
+ "name": "GlobalIpRangeRef",
1152
+ "possibleTypes": null
1153
+ },
1154
+ "indexType": "object",
1155
+ "kind": [
1156
+ "NON_NULL",
1157
+ "LIST",
1158
+ "NON_NULL",
1159
+ "OBJECT"
1160
+ ],
1161
+ "name": "GlobalIpRangeRef",
1162
+ "non_null": false
1163
+ },
1164
+ "varName": "globalIpRangeRef"
1165
+ },
1166
+ "id": {
1167
+ "args": {},
1168
+ "deprecationReason": null,
1169
+ "description": "Unique identifier of the exact filter rule.",
1170
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactFilterRule___id",
1171
+ "isDeprecated": false,
1172
+ "name": "id",
1173
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactFilterRule.id",
1174
+ "requestStr": "$id:ID! ",
1175
+ "required": true,
1176
+ "responseStr": "id:$id ",
1177
+ "type": {
1178
+ "kind": [
1179
+ "NON_NULL",
1180
+ "SCALAR"
1181
+ ],
1182
+ "name": "ID",
1183
+ "non_null": false
1184
+ },
1185
+ "varName": "id"
1186
+ },
1187
+ "networkSubnet": {
1188
+ "args": {},
1189
+ "deprecationReason": null,
1190
+ "description": "Network subnets to include.",
1191
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___bgpRouteExactFilterRule___networkSubnet",
1192
+ "isDeprecated": false,
1193
+ "name": "networkSubnet",
1194
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.bgpRouteExactFilterRule.networkSubnet",
1195
+ "requestStr": "$networkSubnet:[NetworkSubnet]! ",
1196
+ "required": true,
1197
+ "responseStr": "networkSubnet:$networkSubnet ",
1198
+ "type": {
1199
+ "kind": [
1200
+ "NON_NULL",
1201
+ "LIST",
1202
+ "NON_NULL",
1203
+ "SCALAR"
1204
+ ],
1205
+ "name": "NetworkSubnet",
1206
+ "non_null": false
1207
+ },
1208
+ "varName": "networkSubnet"
1209
+ }
1210
+ },
1211
+ "inputFields": null,
1212
+ "interfaces": {},
1213
+ "kind": "OBJECT",
1214
+ "name": "BgpRouteExactFilterRule",
1215
+ "possibleTypes": null
1216
+ },
1217
+ "indexType": "object",
1218
+ "kind": [
1219
+ "OBJECT"
1220
+ ],
1221
+ "name": "BgpRouteExactFilterRule",
1222
+ "non_null": false
1223
+ },
1224
+ "varName": "bgpRouteExactFilterRule"
1225
+ },
1226
+ "communityFilterRule": {
1227
+ "alias": "communityFilterRuleBgpFilterRule: communityFilterRule",
1228
+ "args": {},
1229
+ "deprecationReason": null,
1230
+ "description": "Community filter rule. Please choose only one filter rule type.",
1231
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___communityFilterRule",
1232
+ "isDeprecated": false,
1233
+ "name": "communityFilterRule",
1234
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.communityFilterRule",
1235
+ "requestStr": "$bgpCommunityFilterRule:BgpCommunityFilterRule ",
1236
+ "required": false,
1237
+ "responseStr": "communityFilterRule:$bgpCommunityFilterRule ",
1238
+ "type": {
1239
+ "definition": {
1240
+ "description": null,
1241
+ "enumValues": null,
1242
+ "fields": {
1243
+ "community": {
1244
+ "args": {},
1245
+ "deprecationReason": null,
1246
+ "description": "Community values to match.",
1247
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___communityFilterRule___community",
1248
+ "isDeprecated": false,
1249
+ "name": "community",
1250
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.communityFilterRule.community",
1251
+ "requestStr": "$bgpCommunity:[BgpCommunity]! ",
1252
+ "required": true,
1253
+ "responseStr": "community:$bgpCommunity ",
1254
+ "type": {
1255
+ "definition": {
1256
+ "description": null,
1257
+ "enumValues": null,
1258
+ "fields": {
1259
+ "from": {
1260
+ "args": {},
1261
+ "deprecationReason": null,
1262
+ "description": "Start of the community range.",
1263
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___communityFilterRule___community___from",
1264
+ "isDeprecated": false,
1265
+ "name": "from",
1266
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.communityFilterRule.community.from",
1267
+ "requestStr": "$from:Asn16! ",
1268
+ "required": true,
1269
+ "responseStr": "from:$from ",
1270
+ "type": {
1271
+ "kind": [
1272
+ "NON_NULL",
1273
+ "SCALAR"
1274
+ ],
1275
+ "name": "Asn16",
1276
+ "non_null": false
1277
+ },
1278
+ "varName": "from"
1279
+ },
1280
+ "to": {
1281
+ "args": {},
1282
+ "deprecationReason": null,
1283
+ "description": "End of the community range.",
1284
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___communityFilterRule___community___to",
1285
+ "isDeprecated": false,
1286
+ "name": "to",
1287
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.communityFilterRule.community.to",
1288
+ "requestStr": "$to:Asn16! ",
1289
+ "required": true,
1290
+ "responseStr": "to:$to ",
1291
+ "type": {
1292
+ "kind": [
1293
+ "NON_NULL",
1294
+ "SCALAR"
1295
+ ],
1296
+ "name": "Asn16",
1297
+ "non_null": false
1298
+ },
1299
+ "varName": "to"
1300
+ }
1301
+ },
1302
+ "inputFields": null,
1303
+ "interfaces": {},
1304
+ "kind": "OBJECT",
1305
+ "name": "BgpCommunity",
1306
+ "possibleTypes": null
1307
+ },
1308
+ "indexType": "object",
1309
+ "kind": [
1310
+ "NON_NULL",
1311
+ "LIST",
1312
+ "NON_NULL",
1313
+ "OBJECT"
1314
+ ],
1315
+ "name": "BgpCommunity",
1316
+ "non_null": false
1317
+ },
1318
+ "varName": "bgpCommunity"
1319
+ },
1320
+ "id": {
1321
+ "args": {},
1322
+ "deprecationReason": null,
1323
+ "description": "Unique identifier of the community filter rule.",
1324
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___communityFilterRule___id",
1325
+ "isDeprecated": false,
1326
+ "name": "id",
1327
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.communityFilterRule.id",
1328
+ "requestStr": "$id:ID! ",
1329
+ "required": true,
1330
+ "responseStr": "id:$id ",
1331
+ "type": {
1332
+ "kind": [
1333
+ "NON_NULL",
1334
+ "SCALAR"
1335
+ ],
1336
+ "name": "ID",
1337
+ "non_null": false
1338
+ },
1339
+ "varName": "id"
1340
+ },
1341
+ "predicate": {
1342
+ "args": {},
1343
+ "deprecationReason": null,
1344
+ "description": "Predicate to apply to the community filter (e.g., EQUAL, NOT_EQUAL).",
1345
+ "id_str": "bgpPeerList___bgpPeer___defaultActionExclusion___communityFilterRule___predicate",
1346
+ "isDeprecated": false,
1347
+ "name": "predicate",
1348
+ "path": "bgpPeerList.bgpPeer.defaultActionExclusion.communityFilterRule.predicate",
1349
+ "requestStr": "$predicate:BgpCommunityFilterPredicate! ",
1350
+ "required": true,
1351
+ "responseStr": "predicate:$predicate ",
1352
+ "type": {
1353
+ "definition": {
1354
+ "description": null,
1355
+ "enumValues": [
1356
+ {
1357
+ "deprecationReason": null,
1358
+ "description": "Matches exactly the specified community value.",
1359
+ "isDeprecated": false,
1360
+ "name": "EQUAL"
1361
+ },
1362
+ {
1363
+ "deprecationReason": null,
1364
+ "description": "Matches any community value except the specified one.",
1365
+ "isDeprecated": false,
1366
+ "name": "NOT_EQUAL"
1367
+ }
1368
+ ],
1369
+ "fields": null,
1370
+ "inputFields": null,
1371
+ "interfaces": null,
1372
+ "kind": "ENUM",
1373
+ "name": "BgpCommunityFilterPredicate",
1374
+ "possibleTypes": null
1375
+ },
1376
+ "indexType": "enum",
1377
+ "kind": [
1378
+ "NON_NULL",
1379
+ "ENUM"
1380
+ ],
1381
+ "name": "BgpCommunityFilterPredicate",
1382
+ "non_null": false
1383
+ },
1384
+ "varName": "predicate"
1385
+ }
1386
+ },
1387
+ "inputFields": null,
1388
+ "interfaces": {},
1389
+ "kind": "OBJECT",
1390
+ "name": "BgpCommunityFilterRule",
1391
+ "possibleTypes": null
1392
+ },
1393
+ "indexType": "object",
1394
+ "kind": [
1395
+ "OBJECT"
1396
+ ],
1397
+ "name": "BgpCommunityFilterRule",
1398
+ "non_null": false
1399
+ },
1400
+ "varName": "bgpCommunityFilterRule"
1401
+ }
1402
+ },
1403
+ "inputFields": null,
1404
+ "interfaces": {},
1405
+ "kind": "OBJECT",
1406
+ "name": "BgpFilterRule",
1407
+ "possibleTypes": null
1408
+ },
1409
+ "indexType": "object",
1410
+ "kind": [
1411
+ "NON_NULL",
1412
+ "LIST",
1413
+ "NON_NULL",
1414
+ "OBJECT"
1415
+ ],
1416
+ "name": "BgpFilterRule",
1417
+ "non_null": false
1418
+ },
1419
+ "varName": "bgpFilterRule"
1420
+ },
1421
+ "holdTime": {
1422
+ "args": {},
1423
+ "deprecationReason": null,
1424
+ "description": "Time before declaring the peer unreachable.",
1425
+ "id_str": "bgpPeerList___bgpPeer___holdTime",
1426
+ "isDeprecated": false,
1427
+ "name": "holdTime",
1428
+ "path": "bgpPeerList.bgpPeer.holdTime",
1429
+ "requestStr": "$holdTime:Int! ",
1430
+ "required": true,
1431
+ "responseStr": "holdTime:$holdTime ",
1432
+ "type": {
1433
+ "kind": [
1434
+ "NON_NULL",
1435
+ "SCALAR"
1436
+ ],
1437
+ "name": "Int",
1438
+ "non_null": false
1439
+ },
1440
+ "varName": "holdTime"
1441
+ },
1442
+ "id": {
1443
+ "args": {},
1444
+ "deprecationReason": null,
1445
+ "description": "Unique identifier for the BGP peer.",
1446
+ "id_str": "bgpPeerList___bgpPeer___id",
1447
+ "isDeprecated": false,
1448
+ "name": "id",
1449
+ "path": "bgpPeerList.bgpPeer.id",
1450
+ "requestStr": "$id:ID! ",
1451
+ "required": true,
1452
+ "responseStr": "id:$id ",
1453
+ "type": {
1454
+ "kind": [
1455
+ "NON_NULL",
1456
+ "SCALAR"
1457
+ ],
1458
+ "name": "ID",
1459
+ "non_null": false
1460
+ },
1461
+ "varName": "id"
1462
+ },
1463
+ "keepaliveInterval": {
1464
+ "args": {},
1465
+ "deprecationReason": null,
1466
+ "description": "Interval between keepalive messages.",
1467
+ "id_str": "bgpPeerList___bgpPeer___keepaliveInterval",
1468
+ "isDeprecated": false,
1469
+ "name": "keepaliveInterval",
1470
+ "path": "bgpPeerList.bgpPeer.keepaliveInterval",
1471
+ "requestStr": "$keepaliveInterval:Int! ",
1472
+ "required": true,
1473
+ "responseStr": "keepaliveInterval:$keepaliveInterval ",
1474
+ "type": {
1475
+ "kind": [
1476
+ "NON_NULL",
1477
+ "SCALAR"
1478
+ ],
1479
+ "name": "Int",
1480
+ "non_null": false
1481
+ },
1482
+ "varName": "keepaliveInterval"
1483
+ },
1484
+ "md5AuthKey": {
1485
+ "args": {},
1486
+ "deprecationReason": null,
1487
+ "description": "MD5 authentication key for secure sessions.",
1488
+ "id_str": "bgpPeerList___bgpPeer___md5AuthKey",
1489
+ "isDeprecated": false,
1490
+ "name": "md5AuthKey",
1491
+ "path": "bgpPeerList.bgpPeer.md5AuthKey",
1492
+ "requestStr": "$md5AuthKey:String ",
1493
+ "required": false,
1494
+ "responseStr": "md5AuthKey:$md5AuthKey ",
1495
+ "type": {
1496
+ "kind": [
1497
+ "SCALAR"
1498
+ ],
1499
+ "name": "String",
1500
+ "non_null": false
1501
+ },
1502
+ "varName": "md5AuthKey"
1503
+ },
1504
+ "metric": {
1505
+ "args": {},
1506
+ "deprecationReason": null,
1507
+ "description": "Metric for route preferences.",
1508
+ "id_str": "bgpPeerList___bgpPeer___metric",
1509
+ "isDeprecated": false,
1510
+ "name": "metric",
1511
+ "path": "bgpPeerList.bgpPeer.metric",
1512
+ "requestStr": "$metric:Int! ",
1513
+ "required": true,
1514
+ "responseStr": "metric:$metric ",
1515
+ "type": {
1516
+ "kind": [
1517
+ "NON_NULL",
1518
+ "SCALAR"
1519
+ ],
1520
+ "name": "Int",
1521
+ "non_null": false
1522
+ },
1523
+ "varName": "metric"
1524
+ },
1525
+ "name": {
1526
+ "args": {},
1527
+ "deprecationReason": null,
1528
+ "description": "Name of the BGP configuration entity.",
1529
+ "id_str": "bgpPeerList___bgpPeer___name",
1530
+ "isDeprecated": false,
1531
+ "name": "name",
1532
+ "path": "bgpPeerList.bgpPeer.name",
1533
+ "requestStr": "$name:String! ",
1534
+ "required": true,
1535
+ "responseStr": "name:$name ",
1536
+ "type": {
1537
+ "kind": [
1538
+ "NON_NULL",
1539
+ "SCALAR"
1540
+ ],
1541
+ "name": "String",
1542
+ "non_null": false
1543
+ },
1544
+ "varName": "name"
1545
+ },
1546
+ "peerAsn": {
1547
+ "args": {},
1548
+ "deprecationReason": null,
1549
+ "description": "AS number of the peer BGP endpoint.",
1550
+ "id_str": "bgpPeerList___bgpPeer___peerAsn",
1551
+ "isDeprecated": false,
1552
+ "name": "peerAsn",
1553
+ "path": "bgpPeerList.bgpPeer.peerAsn",
1554
+ "requestStr": "$peerAsn:Asn32! ",
1555
+ "required": true,
1556
+ "responseStr": "peerAsn:$peerAsn ",
1557
+ "type": {
1558
+ "kind": [
1559
+ "NON_NULL",
1560
+ "SCALAR"
1561
+ ],
1562
+ "name": "Asn32",
1563
+ "non_null": false
1564
+ },
1565
+ "varName": "peerAsn"
1566
+ },
1567
+ "peerIp": {
1568
+ "args": {},
1569
+ "deprecationReason": null,
1570
+ "description": "IP address of the peer BGP endpoint.",
1571
+ "id_str": "bgpPeerList___bgpPeer___peerIp",
1572
+ "isDeprecated": false,
1573
+ "name": "peerIp",
1574
+ "path": "bgpPeerList.bgpPeer.peerIp",
1575
+ "requestStr": "$peerIp:IPAddress! ",
1576
+ "required": true,
1577
+ "responseStr": "peerIp:$peerIp ",
1578
+ "type": {
1579
+ "kind": [
1580
+ "NON_NULL",
1581
+ "SCALAR"
1582
+ ],
1583
+ "name": "IPAddress",
1584
+ "non_null": false
1585
+ },
1586
+ "varName": "peerIp"
1587
+ },
1588
+ "performNat": {
1589
+ "args": {},
1590
+ "deprecationReason": null,
1591
+ "description": "Indicates if NAT is performed on routes.",
1592
+ "id_str": "bgpPeerList___bgpPeer___performNat",
1593
+ "isDeprecated": false,
1594
+ "name": "performNat",
1595
+ "path": "bgpPeerList.bgpPeer.performNat",
1596
+ "requestStr": "$performNat:Boolean! ",
1597
+ "required": true,
1598
+ "responseStr": "performNat:$performNat ",
1599
+ "type": {
1600
+ "kind": [
1601
+ "NON_NULL",
1602
+ "SCALAR"
1603
+ ],
1604
+ "name": "Boolean",
1605
+ "non_null": false
1606
+ },
1607
+ "varName": "performNat"
1608
+ },
1609
+ "site": {
1610
+ "alias": "siteBgpPeer: site",
1611
+ "args": {},
1612
+ "deprecationReason": null,
1613
+ "description": "Site associated with this BGP peer.",
1614
+ "id_str": "bgpPeerList___bgpPeer___site",
1615
+ "isDeprecated": false,
1616
+ "name": "site",
1617
+ "path": "bgpPeerList.bgpPeer.site",
1618
+ "requestStr": "$siteRef:SiteRef! ",
1619
+ "required": true,
1620
+ "responseStr": "site:$siteRef ",
1621
+ "type": {
1622
+ "definition": {
1623
+ "description": "A reference identifying the Site object. ID: Unique Site Identifier, Name: The Site Name",
1624
+ "enumValues": null,
1625
+ "fields": {
1626
+ "id": {
1627
+ "args": {},
1628
+ "deprecationReason": null,
1629
+ "description": null,
1630
+ "id_str": "bgpPeerList___bgpPeer___site___id",
1631
+ "isDeprecated": false,
1632
+ "name": "id",
1633
+ "path": "bgpPeerList.bgpPeer.site.id",
1634
+ "requestStr": "$id:ID! ",
1635
+ "required": true,
1636
+ "responseStr": "id:$id ",
1637
+ "type": {
1638
+ "kind": [
1639
+ "NON_NULL",
1640
+ "SCALAR"
1641
+ ],
1642
+ "name": "ID",
1643
+ "non_null": false
1644
+ },
1645
+ "varName": "id"
1646
+ },
1647
+ "name": {
1648
+ "args": {},
1649
+ "deprecationReason": null,
1650
+ "description": null,
1651
+ "id_str": "bgpPeerList___bgpPeer___site___name",
1652
+ "isDeprecated": false,
1653
+ "name": "name",
1654
+ "path": "bgpPeerList.bgpPeer.site.name",
1655
+ "requestStr": "$name:String! ",
1656
+ "required": true,
1657
+ "responseStr": "name:$name ",
1658
+ "type": {
1659
+ "kind": [
1660
+ "NON_NULL",
1661
+ "SCALAR"
1662
+ ],
1663
+ "name": "String",
1664
+ "non_null": false
1665
+ },
1666
+ "varName": "name"
1667
+ }
1668
+ },
1669
+ "inputFields": null,
1670
+ "interfaces": {},
1671
+ "kind": "OBJECT",
1672
+ "name": "SiteRef",
1673
+ "possibleTypes": null
1674
+ },
1675
+ "indexType": "object",
1676
+ "kind": [
1677
+ "NON_NULL",
1678
+ "OBJECT"
1679
+ ],
1680
+ "name": "SiteRef",
1681
+ "non_null": false
1682
+ },
1683
+ "varName": "siteRef"
1684
+ },
1685
+ "summaryRoute": {
1686
+ "alias": "summaryRouteBgpPeer: summaryRoute",
1687
+ "args": {},
1688
+ "deprecationReason": null,
1689
+ "description": "Summarized routes advertised to the peer.",
1690
+ "id_str": "bgpPeerList___bgpPeer___summaryRoute",
1691
+ "isDeprecated": false,
1692
+ "name": "summaryRoute",
1693
+ "path": "bgpPeerList.bgpPeer.summaryRoute",
1694
+ "requestStr": "$bgpSummaryRoute:[BgpSummaryRoute]! ",
1695
+ "required": true,
1696
+ "responseStr": "summaryRoute:$bgpSummaryRoute ",
1697
+ "type": {
1698
+ "definition": {
1699
+ "description": null,
1700
+ "enumValues": null,
1701
+ "fields": {
1702
+ "community": {
1703
+ "alias": "communityBgpSummaryRoute: community",
1704
+ "args": {},
1705
+ "deprecationReason": null,
1706
+ "description": "Community values associated with the route.",
1707
+ "id_str": "bgpPeerList___bgpPeer___summaryRoute___community",
1708
+ "isDeprecated": false,
1709
+ "name": "community",
1710
+ "path": "bgpPeerList.bgpPeer.summaryRoute.community",
1711
+ "requestStr": "$bgpCommunity:[BgpCommunity]! ",
1712
+ "required": true,
1713
+ "responseStr": "community:$bgpCommunity ",
1714
+ "type": {
1715
+ "definition": {
1716
+ "description": null,
1717
+ "enumValues": null,
1718
+ "fields": {
1719
+ "from": {
1720
+ "args": {},
1721
+ "deprecationReason": null,
1722
+ "description": "Start of the community range.",
1723
+ "id_str": "bgpPeerList___bgpPeer___summaryRoute___community___from",
1724
+ "isDeprecated": false,
1725
+ "name": "from",
1726
+ "path": "bgpPeerList.bgpPeer.summaryRoute.community.from",
1727
+ "requestStr": "$from:Asn16! ",
1728
+ "required": true,
1729
+ "responseStr": "from:$from ",
1730
+ "type": {
1731
+ "kind": [
1732
+ "NON_NULL",
1733
+ "SCALAR"
1734
+ ],
1735
+ "name": "Asn16",
1736
+ "non_null": false
1737
+ },
1738
+ "varName": "from"
1739
+ },
1740
+ "to": {
1741
+ "args": {},
1742
+ "deprecationReason": null,
1743
+ "description": "End of the community range.",
1744
+ "id_str": "bgpPeerList___bgpPeer___summaryRoute___community___to",
1745
+ "isDeprecated": false,
1746
+ "name": "to",
1747
+ "path": "bgpPeerList.bgpPeer.summaryRoute.community.to",
1748
+ "requestStr": "$to:Asn16! ",
1749
+ "required": true,
1750
+ "responseStr": "to:$to ",
1751
+ "type": {
1752
+ "kind": [
1753
+ "NON_NULL",
1754
+ "SCALAR"
1755
+ ],
1756
+ "name": "Asn16",
1757
+ "non_null": false
1758
+ },
1759
+ "varName": "to"
1760
+ }
1761
+ },
1762
+ "inputFields": null,
1763
+ "interfaces": {},
1764
+ "kind": "OBJECT",
1765
+ "name": "BgpCommunity",
1766
+ "possibleTypes": null
1767
+ },
1768
+ "indexType": "object",
1769
+ "kind": [
1770
+ "NON_NULL",
1771
+ "LIST",
1772
+ "NON_NULL",
1773
+ "OBJECT"
1774
+ ],
1775
+ "name": "BgpCommunity",
1776
+ "non_null": false
1777
+ },
1778
+ "varName": "bgpCommunity"
1779
+ },
1780
+ "id": {
1781
+ "args": {},
1782
+ "deprecationReason": null,
1783
+ "description": "Unique identifier of the summarized route.",
1784
+ "id_str": "bgpPeerList___bgpPeer___summaryRoute___id",
1785
+ "isDeprecated": false,
1786
+ "name": "id",
1787
+ "path": "bgpPeerList.bgpPeer.summaryRoute.id",
1788
+ "requestStr": "$id:ID! ",
1789
+ "required": true,
1790
+ "responseStr": "id:$id ",
1791
+ "type": {
1792
+ "kind": [
1793
+ "NON_NULL",
1794
+ "SCALAR"
1795
+ ],
1796
+ "name": "ID",
1797
+ "non_null": false
1798
+ },
1799
+ "varName": "id"
1800
+ },
1801
+ "route": {
1802
+ "args": {},
1803
+ "deprecationReason": null,
1804
+ "description": "Subnet of the summarized route.",
1805
+ "id_str": "bgpPeerList___bgpPeer___summaryRoute___route",
1806
+ "isDeprecated": false,
1807
+ "name": "route",
1808
+ "path": "bgpPeerList.bgpPeer.summaryRoute.route",
1809
+ "requestStr": "$route:NetworkSubnet! ",
1810
+ "required": true,
1811
+ "responseStr": "route:$route ",
1812
+ "type": {
1813
+ "kind": [
1814
+ "NON_NULL",
1815
+ "SCALAR"
1816
+ ],
1817
+ "name": "NetworkSubnet",
1818
+ "non_null": false
1819
+ },
1820
+ "varName": "route"
1821
+ }
1822
+ },
1823
+ "inputFields": null,
1824
+ "interfaces": {},
1825
+ "kind": "OBJECT",
1826
+ "name": "BgpSummaryRoute",
1827
+ "possibleTypes": null
1828
+ },
1829
+ "indexType": "object",
1830
+ "kind": [
1831
+ "NON_NULL",
1832
+ "LIST",
1833
+ "NON_NULL",
1834
+ "OBJECT"
1835
+ ],
1836
+ "name": "BgpSummaryRoute",
1837
+ "non_null": false
1838
+ },
1839
+ "varName": "bgpSummaryRoute"
1840
+ },
1841
+ "tracking": {
1842
+ "alias": "trackingBgpPeer: tracking",
1843
+ "args": {},
1844
+ "deprecationReason": null,
1845
+ "description": "Tracking configuration for health and availability.",
1846
+ "id_str": "bgpPeerList___bgpPeer___tracking",
1847
+ "isDeprecated": false,
1848
+ "name": "tracking",
1849
+ "path": "bgpPeerList.bgpPeer.tracking",
1850
+ "requestStr": "$bgpTracking:BgpTracking ",
1851
+ "required": false,
1852
+ "responseStr": "tracking:$bgpTracking ",
1853
+ "type": {
1854
+ "definition": {
1855
+ "description": null,
1856
+ "enumValues": null,
1857
+ "fields": {
1858
+ "alertFrequency": {
1859
+ "args": {},
1860
+ "deprecationReason": null,
1861
+ "description": "Frequency of health alerts.",
1862
+ "id_str": "bgpPeerList___bgpPeer___tracking___alertFrequency",
1863
+ "isDeprecated": false,
1864
+ "name": "alertFrequency",
1865
+ "path": "bgpPeerList.bgpPeer.tracking.alertFrequency",
1866
+ "requestStr": "$alertFrequency:PolicyRuleTrackingFrequencyEnum! ",
1867
+ "required": true,
1868
+ "responseStr": "alertFrequency:$alertFrequency ",
1869
+ "type": {
1870
+ "definition": {
1871
+ "description": "Enum for the frequency of an alert event for a rule",
1872
+ "enumValues": [
1873
+ {
1874
+ "deprecationReason": null,
1875
+ "description": null,
1876
+ "isDeprecated": false,
1877
+ "name": "HOURLY"
1878
+ },
1879
+ {
1880
+ "deprecationReason": null,
1881
+ "description": null,
1882
+ "isDeprecated": false,
1883
+ "name": "DAILY"
1884
+ },
1885
+ {
1886
+ "deprecationReason": null,
1887
+ "description": null,
1888
+ "isDeprecated": false,
1889
+ "name": "WEEKLY"
1890
+ },
1891
+ {
1892
+ "deprecationReason": null,
1893
+ "description": null,
1894
+ "isDeprecated": false,
1895
+ "name": "IMMEDIATE"
1896
+ }
1897
+ ],
1898
+ "fields": null,
1899
+ "inputFields": null,
1900
+ "interfaces": null,
1901
+ "kind": "ENUM",
1902
+ "name": "PolicyRuleTrackingFrequencyEnum",
1903
+ "possibleTypes": null
1904
+ },
1905
+ "indexType": "enum",
1906
+ "kind": [
1907
+ "NON_NULL",
1908
+ "ENUM"
1909
+ ],
1910
+ "name": "PolicyRuleTrackingFrequencyEnum",
1911
+ "non_null": false
1912
+ },
1913
+ "varName": "alertFrequency"
1914
+ },
1915
+ "enabled": {
1916
+ "args": {},
1917
+ "deprecationReason": null,
1918
+ "description": "Indicates if tracking is enabled.",
1919
+ "id_str": "bgpPeerList___bgpPeer___tracking___enabled",
1920
+ "isDeprecated": false,
1921
+ "name": "enabled",
1922
+ "path": "bgpPeerList.bgpPeer.tracking.enabled",
1923
+ "requestStr": "$enabled:Boolean! ",
1924
+ "required": true,
1925
+ "responseStr": "enabled:$enabled ",
1926
+ "type": {
1927
+ "kind": [
1928
+ "NON_NULL",
1929
+ "SCALAR"
1930
+ ],
1931
+ "name": "Boolean",
1932
+ "non_null": false
1933
+ },
1934
+ "varName": "enabled"
1935
+ },
1936
+ "id": {
1937
+ "args": {},
1938
+ "deprecationReason": null,
1939
+ "description": "Unique identifier for the tracking rule.",
1940
+ "id_str": "bgpPeerList___bgpPeer___tracking___id",
1941
+ "isDeprecated": false,
1942
+ "name": "id",
1943
+ "path": "bgpPeerList.bgpPeer.tracking.id",
1944
+ "requestStr": "$id:ID! ",
1945
+ "required": true,
1946
+ "responseStr": "id:$id ",
1947
+ "type": {
1948
+ "kind": [
1949
+ "NON_NULL",
1950
+ "SCALAR"
1951
+ ],
1952
+ "name": "ID",
1953
+ "non_null": false
1954
+ },
1955
+ "varName": "id"
1956
+ },
1957
+ "subscriptionId": {
1958
+ "args": {},
1959
+ "deprecationReason": null,
1960
+ "description": "Subscription ID associated with the rule.",
1961
+ "id_str": "bgpPeerList___bgpPeer___tracking___subscriptionId",
1962
+ "isDeprecated": false,
1963
+ "name": "subscriptionId",
1964
+ "path": "bgpPeerList.bgpPeer.tracking.subscriptionId",
1965
+ "requestStr": "$subscriptionId:ID ",
1966
+ "required": false,
1967
+ "responseStr": "subscriptionId:$subscriptionId ",
1968
+ "type": {
1969
+ "kind": [
1970
+ "SCALAR"
1971
+ ],
1972
+ "name": "ID",
1973
+ "non_null": false
1974
+ },
1975
+ "varName": "subscriptionId"
1976
+ }
1977
+ },
1978
+ "inputFields": null,
1979
+ "interfaces": {},
1980
+ "kind": "OBJECT",
1981
+ "name": "BgpTracking",
1982
+ "possibleTypes": null
1983
+ },
1984
+ "indexType": "object",
1985
+ "kind": [
1986
+ "OBJECT"
1987
+ ],
1988
+ "name": "BgpTracking",
1989
+ "non_null": false
1990
+ },
1991
+ "varName": "bgpTracking"
1992
+ }
1993
+ },
1994
+ "inputFields": null,
1995
+ "interfaces": {},
1996
+ "kind": "OBJECT",
1997
+ "name": "BgpPeer",
1998
+ "possibleTypes": null
1999
+ },
2000
+ "indexType": "object",
2001
+ "kind": [
2002
+ "NON_NULL",
2003
+ "LIST",
2004
+ "NON_NULL",
2005
+ "OBJECT"
2006
+ ],
2007
+ "name": "BgpPeer",
2008
+ "non_null": false
2009
+ },
2010
+ "varName": "bgpPeer"
2011
+ },
2012
+ "total": {
2013
+ "args": {},
2014
+ "deprecationReason": null,
2015
+ "description": "Total number of BGP peers found.",
2016
+ "id_str": "bgpPeerList___total",
2017
+ "isDeprecated": false,
2018
+ "name": "total",
2019
+ "path": "bgpPeerList.total",
2020
+ "requestStr": "$total:Int! ",
2021
+ "required": true,
2022
+ "responseStr": "total:$total ",
2023
+ "type": {
2024
+ "kind": [
2025
+ "NON_NULL",
2026
+ "SCALAR"
2027
+ ],
2028
+ "name": "Int",
2029
+ "non_null": false
2030
+ },
2031
+ "varName": "total"
2032
+ }
2033
+ },
2034
+ "inputFields": null,
2035
+ "interfaces": {},
2036
+ "kind": "OBJECT",
2037
+ "name": "BgpPeerListPayload",
2038
+ "possibleTypes": null
2039
+ },
2040
+ "indexType": "object",
2041
+ "kind": [
2042
+ "OBJECT"
2043
+ ],
2044
+ "name": "BgpPeerListPayload",
2045
+ "non_null": false
2046
+ },
2047
+ "varName": "bgpPeerListPayload"
2048
+ }
2049
+ },
2050
+ "inputFields": null,
2051
+ "interfaces": [],
2052
+ "kind": "OBJECT",
2053
+ "name": "SiteQueries",
2054
+ "possibleTypes": null
2055
+ },
2056
+ "indexType": "object",
2057
+ "kind": [
2058
+ "NON_NULL",
2059
+ "OBJECT"
2060
+ ],
2061
+ "name": "SiteQueries",
2062
+ "non_null": false
2063
+ },
2064
+ "variablesPayload": {
2065
+ "bgpPeerListInput": {
2066
+ "siteRefInput": {
2067
+ "by": {
2068
+ "by": "enum(ObjectRefBy)"
2069
+ },
2070
+ "input": {
2071
+ "input": "String"
2072
+ }
2073
+ }
2074
+ }
2075
+ }
2076
+ }