virtual_hub_bgp_connections_advertised_routes
Creates, updates, deletes, gets or lists a virtual_hub_bgp_connections_advertised_routes
resource.
Overview
Name | virtual_hub_bgp_connections_advertised_routes |
Type | Resource |
Id | azure.network.virtual_hub_bgp_connections_advertised_routes |
Fields
The following fields are returned by SELECT
queries:
- list
List of learned BGP routes.
Name | Datatype | Description |
---|
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , hubName , connectionName , subscriptionId | Retrieves a list of routes the virtual hub bgp connection is advertising to the specified peer. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
connectionName | string | The name of the virtual hub bgp connection. |
hubName | string | The name of the virtual hub. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
Retrieves a list of routes the virtual hub bgp connection is advertising to the specified peer.
SELECT
*
FROM azure.network.virtual_hub_bgp_connections_advertised_routes
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND hubName = '{{ hubName }}' -- required
AND connectionName = '{{ connectionName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;