Skip to main content

active_connectivity_configurations

Creates, updates, deletes, gets or lists an active_connectivity_configurations resource.

Overview

Nameactive_connectivity_configurations
TypeResource
Idazure.network.active_connectivity_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringConnectivity configuration ID.
appliesToGroupsarrayGroups for configuration. Required.
commitTimestring (date-time)Deployment time string.
configurationGroupsarrayEffective configuration groups.
connectivityCapabilitiesobjectCollection of additional settings to enhance specific topology behaviors of the connectivity configuration resource.
connectivityTopologystringConnectivity topology type. Required. Known values are: "HubAndSpoke" and "Mesh". (HubAndSpoke, Mesh)
deleteExistingPeeringstringFlag if need to remove current existing peerings. Known values are: "False" and "True". (False, True)
descriptionstringA description of the connectivity configuration.
hubsarrayList of hubItems.
isGlobalstringFlag if global mesh is supported. Known values are: "False" and "True". (False, True)
provisioningStatestringThe provisioning state of the connectivity configuration resource. Known values are: "Failed", "Succeeded", "Canceled", "Creating", "Updating", and "Deleting". (Failed, Succeeded, Canceled, Creating, Updating, Deleting)
regionstringDeployment region.
resourceGuidstringUnique identifier for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_active_connectivity_configurationsselectresource_group_name, network_manager_name, subscription_id$topLists active connectivity configurations in a network manager.

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
network_manager_namestringThe name of the network manager. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
$topintegerAn optional query parameter which specifies the maximum number of records to be returned by the server. Default value is None.

SELECT examples

Lists active connectivity configurations in a network manager.

SELECT
id,
appliesToGroups,
commitTime,
configurationGroups,
connectivityCapabilities,
connectivityTopology,
deleteExistingPeering,
description,
hubs,
isGlobal,
provisioningState,
region,
resourceGuid
FROM azure.network.active_connectivity_configurations
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND network_manager_name = '{{ network_manager_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND $top = '{{ $top }}'
;