Skip to main content

vpn_link_connections_default_shared_keys

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

Overview

Namevpn_link_connections_default_shared_keys
TypeResource
Idazure.network.vpn_link_connections_default_shared_keys

Fields

NameDatatypeDescription
idtextResource ID.
nametextThe name of the resource that is unique within a resource group. This name can be used to access the resource.
connectionNametextfield from the properties object
gatewayNametextfield from the properties object
linkConnectionNametextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
shared_keytextfield from the properties object
shared_key_lengthtextfield from the properties object
subscriptionIdtextfield from the properties object
typetextResource type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTconnectionName, gatewayName, linkConnectionName, resourceGroupName, subscriptionIdGets the shared key of VpnLink connection specified.
listSELECTconnectionName, gatewayName, linkConnectionName, resourceGroupName, subscriptionIdGets the value of the shared key of VpnLink connection specified.

SELECT examples

Gets the shared key of VpnLink connection specified.

SELECT
id,
name,
connectionName,
gatewayName,
linkConnectionName,
provisioning_state,
resourceGroupName,
shared_key,
shared_key_length,
subscriptionId,
type
FROM azure.network.vw_vpn_link_connections_default_shared_keys
WHERE connectionName = '{{ connectionName }}'
AND gatewayName = '{{ gatewayName }}'
AND linkConnectionName = '{{ linkConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';