Skip to main content

virtual_hub_bgp_connections_learned_routes

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

Overview

Namevirtual_hub_bgp_connections_learned_routes
TypeResource
Idazure.network.virtual_hub_bgp_connections_learned_routes

Fields

The following fields are returned by SELECT queries:

List of advertised 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 has learned.

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 has learned.

SELECT
*
FROM azure.network.virtual_hub_bgp_connections_learned_routes
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND hubName = '{{ hubName }}' -- required
AND connectionName = '{{ connectionName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;