Skip to main content

vw_vpn_site_link_connections

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

Overview

Namevw_vpn_site_link_connections
TypeView
Idazure.network.vw_vpn_site_link_connections

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
id as id,
name as name,
etag as etag,
type as type,
JSON_EXTRACT(properties, '$.vpnSiteLink') as "vpn_site_link",
JSON_EXTRACT(properties, '$.routingWeight') as "routing_weight",
JSON_EXTRACT(properties, '$.vpnLinkConnectionMode') as "vpn_link_connection_mode",
JSON_EXTRACT(properties, '$.connectionStatus') as "connection_status",
JSON_EXTRACT(properties, '$.vpnConnectionProtocolType') as "vpn_connection_protocol_type",
JSON_EXTRACT(properties, '$.ingressBytesTransferred') as "ingress_bytes_transferred",
JSON_EXTRACT(properties, '$.egressBytesTransferred') as "egress_bytes_transferred",
JSON_EXTRACT(properties, '$.connectionBandwidth') as "connection_bandwidth",
JSON_EXTRACT(properties, '$.sharedKey') as "shared_key",
JSON_EXTRACT(properties, '$.enableBgp') as "enable_bgp",
JSON_EXTRACT(properties, '$.vpnGatewayCustomBgpAddresses') as "vpn_gateway_custom_bgp_addresses",
JSON_EXTRACT(properties, '$.usePolicyBasedTrafficSelectors') as "use_policy_based_traffic_selectors",
JSON_EXTRACT(properties, '$.ipsecPolicies') as "ipsec_policies",
JSON_EXTRACT(properties, '$.enableRateLimiting') as "enable_rate_limiting",
JSON_EXTRACT(properties, '$.useLocalAzureIpAddress') as "use_local_azure_ip_address",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.ingressNatRules') as "ingress_nat_rules",
JSON_EXTRACT(properties, '$.egressNatRules') as "egress_nat_rules",
JSON_EXTRACT(properties, '$.dpdTimeoutSeconds') as "dpd_timeout_seconds",
subscriptionId,
resourceGroupName,
gatewayName,
connectionName,
linkConnectionName
FROM azure.network.vpn_site_link_connections
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND gatewayName = 'replace-me' AND connectionName = 'replace-me' AND linkConnectionName = 'replace-me';