virtual_hubs_outbound_routes
Creates, updates, deletes, gets or lists a virtual_hubs_outbound_routes
resource.
Overview
Name | virtual_hubs_outbound_routes |
Type | Resource |
Id | azure.network.virtual_hubs_outbound_routes |
Fields
Name | Datatype | Description |
---|---|---|
asPath | string | The ASPath of this route. |
bgpCommunities | string | BGP communities of the route. |
prefix | string | The address prefix of the route. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, subscriptionId, virtualHubName | Gets the outbound routes configured for the Virtual Hub on a particular connection. |
SELECT
examples
Gets the outbound routes configured for the Virtual Hub on a particular connection.
SELECT
asPath,
bgpCommunities,
prefix
FROM azure.network.virtual_hubs_outbound_routes
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND virtualHubName = '{{ virtualHubName }}';