Skip to main content

vpn_link_connections_all_shared_keys

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

Overview

Namevpn_link_connections_all_shared_keys
TypeResource
Idazure.network.vpn_link_connections_all_shared_keys

Fields

The following fields are returned by SELECT queries:

Request successful. Returns the shared key of the vpn link 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.
propertiesobjectProperties of the shared key.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, gatewayName, connectionName, linkConnectionNameLists all shared keys of VpnLink connection specified.

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

SELECT examples

Lists all shared keys of VpnLink connection specified.

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