vw_nat_gateways
Creates, updates, deletes, gets or lists a vw_nat_gateways
resource.
Overview
Name | vw_nat_gateways |
Type | View |
Id | azure.network.vw_nat_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,
sku as sku,
zones as zones,
etag as etag,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.idleTimeoutInMinutes') as "idle_timeout_in_minutes",
JSON_EXTRACT(properties, '$.publicIpAddresses') as "public_ip_addresses",
JSON_EXTRACT(properties, '$.publicIpPrefixes') as "public_ip_prefixes",
JSON_EXTRACT(properties, '$.subnets') as "subnets",
JSON_EXTRACT(properties, '$.resourceGuid') as "resource_guid",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
natGatewayName
FROM azure.network.nat_gateways
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
sku as sku,
zones as zones,
etag as etag,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.idleTimeoutInMinutes') as "idle_timeout_in_minutes",
json_extract_path_text(properties, '$.publicIpAddresses') as "public_ip_addresses",
json_extract_path_text(properties, '$.publicIpPrefixes') as "public_ip_prefixes",
json_extract_path_text(properties, '$.subnets') as "subnets",
json_extract_path_text(properties, '$.resourceGuid') as "resource_guid",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
natGatewayName
FROM azure.network.nat_gateways
WHERE subscriptionId = 'replace-me';