Skip to main content

virtual_hub_bgp_connections_advertised_routes

Creates, updates, deletes, gets or lists a virtual_hub_bgp_connections_advertised_routes resource.

Overview

Namevirtual_hub_bgp_connections_advertised_routes
TypeResource
Idazure.network.virtual_hub_bgp_connections_advertised_routes

Fields

The following fields are returned by SELECT queries:

List of learned BGP routes.

NameDatatypeDescription

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, hubName, connectionName, subscriptionIdRetrieves 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.

NameDatatypeDescription
connectionNamestringThe name of the virtual hub bgp connection.
hubNamestringThe name of the virtual hub.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

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
;