vw_internet_gateway_rules
Creates, updates, deletes, gets or lists a vw_internet_gateway_rules
resource.
Overview
Name | vw_internet_gateway_rules |
Type | View |
Id | azure.managed_network_fabric.vw_internet_gateway_rules |
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, '$.ruleProperties') as "rule_properties",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.internetGatewayIds') as "internet_gateway_ids",
subscriptionId,
resourceGroupName,
internetGatewayRuleName
FROM azure.managed_network_fabric.internet_gateway_rules
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.annotation') as "annotation",
json_extract_path_text(properties, '$.ruleProperties') as "rule_properties",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.internetGatewayIds') as "internet_gateway_ids",
subscriptionId,
resourceGroupName,
internetGatewayRuleName
FROM azure.managed_network_fabric.internet_gateway_rules
WHERE subscriptionId = 'replace-me';