vpn_link_connections
Creates, updates, deletes, gets or lists a vpn_link_connections
resource.
Overview
Name | vpn_link_connections |
Type | Resource |
Id | azure.network.vpn_link_connections |
Fields
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. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | Parameters for VpnConnection. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_vpn_connection | SELECT | connectionName, gatewayName, resourceGroupName, subscriptionId | Retrieves all vpn site link connections for a particular virtual wan vpn gateway vpn connection. |
reset_connection | EXEC | connectionName, gatewayName, linkConnectionName, resourceGroupName, subscriptionId | Resets the VpnLink connection specified. |
set_or_init_default_shared_key | EXEC | connectionName, gatewayName, linkConnectionName, resourceGroupName, subscriptionId | Sets or auto generates the shared key based on the user input. If users give a shared key value, it does the set operation. If key length is given, the operation creates a random key of the pre-defined length. |
SELECT
examples
Retrieves all vpn site link connections for a particular virtual wan vpn gateway vpn connection.
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.vpn_link_connections
WHERE connectionName = '{{ connectionName }}'
AND gatewayName = '{{ gatewayName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';