vpn_site_link_connections
Creates, updates, deletes, gets or lists a vpn_site_link_connections
resource.
Overview
Name | vpn_site_link_connections |
Type | Resource |
Id | azure.network.vpn_site_link_connections |
Fields
- vw_vpn_site_link_connections
- vpn_site_link_connections
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 |
connection_bandwidth | text | field from the properties object |
connection_status | text | field from the properties object |
dpd_timeout_seconds | text | field from the properties object |
egress_bytes_transferred | text | field from the properties object |
egress_nat_rules | text | field from the properties object |
enable_bgp | text | field from the properties object |
enable_rate_limiting | text | field from the properties object |
etag | text | A unique read-only string that changes whenever the resource is updated. |
gatewayName | text | field from the properties object |
ingress_bytes_transferred | text | field from the properties object |
ingress_nat_rules | text | field from the properties object |
ipsec_policies | 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 |
routing_weight | text | field from the properties object |
shared_key | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource type. |
use_local_azure_ip_address | text | field from the properties object |
use_policy_based_traffic_selectors | text | field from the properties object |
vpn_connection_protocol_type | text | field from the properties object |
vpn_gateway_custom_bgp_addresses | text | field from the properties object |
vpn_link_connection_mode | text | field from the properties object |
vpn_site_link | text | field from the properties object |
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 |
---|---|---|---|
get | SELECT | connectionName, gatewayName, linkConnectionName, resourceGroupName, subscriptionId | Retrieves the details of a vpn site link connection. |
SELECT
examples
Retrieves the details of a vpn site link connection.
- vw_vpn_site_link_connections
- vpn_site_link_connections
SELECT
id,
name,
connectionName,
connection_bandwidth,
connection_status,
dpd_timeout_seconds,
egress_bytes_transferred,
egress_nat_rules,
enable_bgp,
enable_rate_limiting,
etag,
gatewayName,
ingress_bytes_transferred,
ingress_nat_rules,
ipsec_policies,
linkConnectionName,
provisioning_state,
resourceGroupName,
routing_weight,
shared_key,
subscriptionId,
type,
use_local_azure_ip_address,
use_policy_based_traffic_selectors,
vpn_connection_protocol_type,
vpn_gateway_custom_bgp_addresses,
vpn_link_connection_mode,
vpn_site_link
FROM azure.network.vw_vpn_site_link_connections
WHERE connectionName = '{{ connectionName }}'
AND gatewayName = '{{ gatewayName }}'
AND linkConnectionName = '{{ linkConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
etag,
properties,
type
FROM azure.network.vpn_site_link_connections
WHERE connectionName = '{{ connectionName }}'
AND gatewayName = '{{ gatewayName }}'
AND linkConnectionName = '{{ linkConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';