Skip to main content

vpn_site_link_connections

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

Overview

Namevpn_site_link_connections
TypeResource
Idazure.network.vpn_site_link_connections

Fields

The following fields are returned by SELECT queries:

Request successful. Returns the details of the vpn connection.

NameDatatypeDescription
idstringResource ID.
namestringThe name of the resource that is unique within a resource group. This name can be used to access the resource.
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectProperties of the VPN site link connection.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, gatewayName, connectionName, linkConnectionNameRetrieves the details of a vpn site link connection.

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 vpn connection.
gatewayNamestringThe name of the gateway.
linkConnectionNamestringThe name of the vpn connection.
resourceGroupNamestringThe resource group name of the VpnGateway.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Retrieves the details of a vpn site link connection.

SELECT
id,
name,
etag,
properties,
type
FROM azure.network.vpn_site_link_connections
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND gatewayName = '{{ gatewayName }}' -- required
AND connectionName = '{{ connectionName }}' -- required
AND linkConnectionName = '{{ linkConnectionName }}' -- required
;