vw_vpn_site_link_connections
Creates, updates, deletes, gets or lists a vw_vpn_site_link_connections
resource.
Overview
Name | vw_vpn_site_link_connections |
Type | View |
Id | azure.network.vw_vpn_site_link_connections |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
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';
SELECT
id as id,
name as name,
etag as etag,
type as type,
json_extract_path_text(properties, '$.vpnSiteLink') as "vpn_site_link",
json_extract_path_text(properties, '$.routingWeight') as "routing_weight",
json_extract_path_text(properties, '$.vpnLinkConnectionMode') as "vpn_link_connection_mode",
json_extract_path_text(properties, '$.connectionStatus') as "connection_status",
json_extract_path_text(properties, '$.vpnConnectionProtocolType') as "vpn_connection_protocol_type",
json_extract_path_text(properties, '$.ingressBytesTransferred') as "ingress_bytes_transferred",
json_extract_path_text(properties, '$.egressBytesTransferred') as "egress_bytes_transferred",
json_extract_path_text(properties, '$.connectionBandwidth') as "connection_bandwidth",
json_extract_path_text(properties, '$.sharedKey') as "shared_key",
json_extract_path_text(properties, '$.enableBgp') as "enable_bgp",
json_extract_path_text(properties, '$.vpnGatewayCustomBgpAddresses') as "vpn_gateway_custom_bgp_addresses",
json_extract_path_text(properties, '$.usePolicyBasedTrafficSelectors') as "use_policy_based_traffic_selectors",
json_extract_path_text(properties, '$.ipsecPolicies') as "ipsec_policies",
json_extract_path_text(properties, '$.enableRateLimiting') as "enable_rate_limiting",
json_extract_path_text(properties, '$.useLocalAzureIpAddress') as "use_local_azure_ip_address",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.ingressNatRules') as "ingress_nat_rules",
json_extract_path_text(properties, '$.egressNatRules') as "egress_nat_rules",
json_extract_path_text(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';