vpn_link_connections_all_shared_keys
Creates, updates, deletes, gets or lists a vpn_link_connections_all_shared_keys resource.
Overview
| Name | vpn_link_connections_all_shared_keys |
| Type | Resource |
| Id | azure.network.vpn_link_connections_all_shared_keys |
Fields
The following fields are returned by SELECT queries:
- get
Request successful. Returns the shared key of the vpn link connection.
| 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 | Properties of the shared key. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, gatewayName, connectionName, linkConnectionName | Lists 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.
| Name | Datatype | Description |
|---|---|---|
connectionName | string | The name of the vpn connection. |
gatewayName | string | The name of the gateway. |
linkConnectionName | string | The name of the vpn link connection. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- get
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
;