Skip to main content

connectivity_configurations

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

Overview

Nameconnectivity_configurations
TypeResource
Idazure.network.connectivity_configurations

Fields

NameDatatypeDescription
idtextResource ID.
nametextResource name.
descriptiontextfield from the properties object
applies_to_groupstextfield from the properties object
configurationNametextfield from the properties object
connectivity_topologytextfield from the properties object
delete_existing_peeringtextfield from the properties object
etagtextA unique read-only string that changes whenever the resource is updated.
hubstextfield from the properties object
is_globaltextfield from the properties object
networkManagerNametextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
resource_guidtextfield from the properties object
subscriptionIdtextfield from the properties object
system_datatextfield from the properties object
typetextResource type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTconfigurationName, networkManagerName, resourceGroupName, subscriptionIdGets a Network Connectivity Configuration, specified by the resource group, network manager name, and connectivity Configuration name
listSELECTnetworkManagerName, resourceGroupName, subscriptionIdLists all the network manager connectivity configuration in a specified network manager.
create_or_updateINSERTconfigurationName, networkManagerName, resourceGroupName, subscriptionIdCreates/Updates a new network manager connectivity configuration
deleteDELETEconfigurationName, networkManagerName, resourceGroupName, subscriptionIdDeletes a network manager connectivity configuration, specified by the resource group, network manager name, and connectivity configuration name

SELECT examples

Lists all the network manager connectivity configuration in a specified network manager.

SELECT
id,
name,
description,
applies_to_groups,
configurationName,
connectivity_topology,
delete_existing_peering,
etag,
hubs,
is_global,
networkManagerName,
provisioning_state,
resourceGroupName,
resource_guid,
subscriptionId,
system_data,
type
FROM azure.network.vw_connectivity_configurations
WHERE networkManagerName = '{{ networkManagerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

INSERT example

Use the following StackQL query and manifest file to create a new connectivity_configurations resource.

/*+ create */
INSERT INTO azure.network.connectivity_configurations (
configurationName,
networkManagerName,
resourceGroupName,
subscriptionId,
properties
)
SELECT
'{{ configurationName }}',
'{{ networkManagerName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ properties }}'
;

DELETE example

Deletes the specified connectivity_configurations resource.

/*+ delete */
DELETE FROM azure.network.connectivity_configurations
WHERE configurationName = '{{ configurationName }}'
AND networkManagerName = '{{ networkManagerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';