vw_local_network_gateways
Creates, updates, deletes, gets or lists a vw_local_network_gateways
resource.
Overview
Name | vw_local_network_gateways |
Type | View |
Id | azure.network.vw_local_network_gateways |
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,
systemData as system_data,
JSON_EXTRACT(properties, '$.localNetworkAddressSpace') as "local_network_address_space",
JSON_EXTRACT(properties, '$.gatewayIpAddress') as "gateway_ip_address",
JSON_EXTRACT(properties, '$.fqdn') as "fqdn",
JSON_EXTRACT(properties, '$.bgpSettings') as "bgp_settings",
JSON_EXTRACT(properties, '$.resourceGuid') as "resource_guid",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
localNetworkGatewayName
FROM azure.network.local_network_gateways
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me';
SELECT
id as id,
name as name,
etag as etag,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.localNetworkAddressSpace') as "local_network_address_space",
json_extract_path_text(properties, '$.gatewayIpAddress') as "gateway_ip_address",
json_extract_path_text(properties, '$.fqdn') as "fqdn",
json_extract_path_text(properties, '$.bgpSettings') as "bgp_settings",
json_extract_path_text(properties, '$.resourceGuid') as "resource_guid",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
localNetworkGatewayName
FROM azure.network.local_network_gateways
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me';