vw_route_policies
Creates, updates, deletes, gets or lists a vw_route_policies
resource.
Overview
Name | vw_route_policies |
Type | View |
Id | azure.managed_network_fabric.vw_route_policies |
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, '$.defaultAction') as "default_action",
JSON_EXTRACT(properties, '$.statements') as "statements",
JSON_EXTRACT(properties, '$.networkFabricId') as "network_fabric_id",
JSON_EXTRACT(properties, '$.addressFamilyType') as "address_family_type",
JSON_EXTRACT(properties, '$.configurationState') as "configuration_state",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.administrativeState') as "administrative_state",
subscriptionId,
resourceGroupName,
routePolicyName
FROM azure.managed_network_fabric.route_policies
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.annotation') as "annotation",
json_extract_path_text(properties, '$.defaultAction') as "default_action",
json_extract_path_text(properties, '$.statements') as "statements",
json_extract_path_text(properties, '$.networkFabricId') as "network_fabric_id",
json_extract_path_text(properties, '$.addressFamilyType') as "address_family_type",
json_extract_path_text(properties, '$.configurationState') as "configuration_state",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.administrativeState') as "administrative_state",
subscriptionId,
resourceGroupName,
routePolicyName
FROM azure.managed_network_fabric.route_policies
WHERE subscriptionId = 'replace-me';