vpn_link_connections_default_shared_keys
Creates, updates, deletes, gets or lists a vpn_link_connections_default_shared_keys
resource.
Overview
Name | vpn_link_connections_default_shared_keys |
Type | Resource |
Id | azure.network.vpn_link_connections_default_shared_keys |
Fields
- vw_vpn_link_connections_default_shared_keys
- vpn_link_connections_default_shared_keys
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | The name of the resource that is unique within a resource group. This name can be used to access the resource. |
connectionName | text | field from the properties object |
gatewayName | text | field from the properties object |
linkConnectionName | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
shared_key | text | field from the properties object |
shared_key_length | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | The name of the resource that is unique within a resource group. This name can be used to access the resource. |
properties | object | Parameters for SharedKey. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | connectionName, gatewayName, linkConnectionName, resourceGroupName, subscriptionId | Gets the shared key of VpnLink connection specified. |
list | SELECT | connectionName, gatewayName, linkConnectionName, resourceGroupName, subscriptionId | Gets the value of the shared key of VpnLink connection specified. |
SELECT
examples
Gets the shared key of VpnLink connection specified.
- vw_vpn_link_connections_default_shared_keys
- vpn_link_connections_default_shared_keys
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 }}';
SELECT
id,
name,
properties,
type
FROM azure.network.vpn_link_connections_default_shared_keys
WHERE connectionName = '{{ connectionName }}'
AND gatewayName = '{{ gatewayName }}'
AND linkConnectionName = '{{ linkConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';