vw_route_filters
Creates, updates, deletes, gets or lists a vw_route_filters
resource.
Overview
Name | vw_route_filters |
Type | View |
Id | azure.network.vw_route_filters |
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, '$.rules') as "rules",
JSON_EXTRACT(properties, '$.peerings') as "peerings",
JSON_EXTRACT(properties, '$.ipv6Peerings') as "ipv6_peerings",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
routeFilterName
FROM azure.network.route_filters
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
etag as etag,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.rules') as "rules",
json_extract_path_text(properties, '$.peerings') as "peerings",
json_extract_path_text(properties, '$.ipv6Peerings') as "ipv6_peerings",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
routeFilterName
FROM azure.network.route_filters
WHERE subscriptionId = 'replace-me';