Skip to main content

vpn_site_link_connections

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

Overview

Namevpn_site_link_connections
TypeResource
Idazure.network.vpn_site_link_connections

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
connection_bandwidthtextfield from the properties object
connection_statustextfield from the properties object
dpd_timeout_secondstextfield from the properties object
egress_bytes_transferredtextfield from the properties object
egress_nat_rulestextfield from the properties object
enable_bgptextfield from the properties object
enable_rate_limitingtextfield from the properties object
etagtextA unique read-only string that changes whenever the resource is updated.
gatewayNametextfield from the properties object
ingress_bytes_transferredtextfield from the properties object
ingress_nat_rulestextfield from the properties object
ipsec_policiestextfield from the properties object
linkConnectionNametextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
routing_weighttextfield from the properties object
shared_keytextfield from the properties object
subscriptionIdtextfield from the properties object
typetextResource type.
use_local_azure_ip_addresstextfield from the properties object
use_policy_based_traffic_selectorstextfield from the properties object
vpn_connection_protocol_typetextfield from the properties object
vpn_gateway_custom_bgp_addressestextfield from the properties object
vpn_link_connection_modetextfield from the properties object
vpn_site_linktextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTconnectionName, gatewayName, linkConnectionName, resourceGroupName, subscriptionIdRetrieves the details of a vpn site link connection.

SELECT examples

Retrieves the details of a vpn site link connection.

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 }}';