vw_internet_gateways
Creates, updates, deletes, gets or lists a vw_internet_gateways
resource.
Overview
Name | vw_internet_gateways |
Type | View |
Id | azure.managed_network_fabric.vw_internet_gateways |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.annotation') as "annotation",
JSON_EXTRACT(properties, '$.internetGatewayRuleId') as "internet_gateway_rule_id",
JSON_EXTRACT(properties, '$.ipv4Address') as "ipv4_address",
JSON_EXTRACT(properties, '$.port') as "port",
JSON_EXTRACT(properties, '$.type') as "type",
JSON_EXTRACT(properties, '$.networkFabricControllerId') as "network_fabric_controller_id",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
internetGatewayName
FROM azure.managed_network_fabric.internet_gateways
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.annotation') as "annotation",
json_extract_path_text(properties, '$.internetGatewayRuleId') as "internet_gateway_rule_id",
json_extract_path_text(properties, '$.ipv4Address') as "ipv4_address",
json_extract_path_text(properties, '$.port') as "port",
json_extract_path_text(properties, '$.type') as "type",
json_extract_path_text(properties, '$.networkFabricControllerId') as "network_fabric_controller_id",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
internetGatewayName
FROM azure.managed_network_fabric.internet_gateways
WHERE subscriptionId = 'replace-me';