vw_vpn_site_links
Creates, updates, deletes, gets or lists a vw_vpn_site_links
resource.
Overview
Name | vw_vpn_site_links |
Type | View |
Id | azure.network.vw_vpn_site_links |
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, '$.linkProperties') as "link_properties",
JSON_EXTRACT(properties, '$.ipAddress') as "ip_address",
JSON_EXTRACT(properties, '$.fqdn') as "fqdn",
JSON_EXTRACT(properties, '$.bgpProperties') as "bgp_properties",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
vpnSiteName,
vpnSiteLinkName
FROM azure.network.vpn_site_links
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND vpnSiteName = 'replace-me';
SELECT
id as id,
name as name,
etag as etag,
type as type,
json_extract_path_text(properties, '$.linkProperties') as "link_properties",
json_extract_path_text(properties, '$.ipAddress') as "ip_address",
json_extract_path_text(properties, '$.fqdn') as "fqdn",
json_extract_path_text(properties, '$.bgpProperties') as "bgp_properties",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
vpnSiteName,
vpnSiteLinkName
FROM azure.network.vpn_site_links
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND vpnSiteName = 'replace-me';