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

The following fields are returned by SELECT queries:

Get successful. The operation returns the specified Managed Network Connectivity Configuration resource.

NameDatatypeDescription
idstringResource ID.
namestringResource name.
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectProperties of a network manager connectivity configuration
systemDataobjectThe system metadata related to this resource.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectGets a Network Connectivity Configuration, specified by the resource group, network manager name, and connectivity Configuration name
listselectsubscriptionId, resourceGroupName, networkManagerName$top, $skipTokenLists all the network manager connectivity configuration in a specified network manager.
create_or_updateinsertCreates/Updates a new network manager connectivity configuration
deletedeleteforceDeletes a network manager connectivity configuration, specified by the resource group, network manager name, and connectivity configuration name

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
networkManagerNamestringThe name of the network manager.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
$skipTokenstringSkipToken is only used if a previous operation returned a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls.
$topinteger (int32)An optional query parameter which specifies the maximum number of records to be returned by the server.
forcebooleanDeletes the resource even if it is part of a deployed configuration. If the configuration has been deployed, the service will do a cleanup deployment in the background, prior to the delete.

SELECT examples

Gets a Network Connectivity Configuration, specified by the resource group, network manager name, and connectivity Configuration name

SELECT
id,
name,
etag,
properties,
systemData,
type
FROM azure.network.connectivity_configurations
;

INSERT examples

Creates/Updates a new network manager connectivity configuration

INSERT INTO azure.network.connectivity_configurations (
data__properties
)
SELECT
'{{ properties }}'
RETURNING
id,
name,
etag,
properties,
systemData,
type
;

DELETE examples

Deletes a network manager connectivity configuration, specified by the resource group, network manager name, and connectivity configuration name

DELETE FROM azure.network.connectivity_configurations
WHERE force = '{{ force }}'
;