vw_route_tables
Creates, updates, deletes, gets or lists a vw_route_tables
resource.
Overview
Name | vw_route_tables |
Type | View |
Id | azure.network.vw_route_tables |
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, '$.routes') as "routes",
JSON_EXTRACT(properties, '$.subnets') as "subnets",
JSON_EXTRACT(properties, '$.disableBgpRoutePropagation') as "disable_bgp_route_propagation",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.resourceGuid') as "resource_guid",
subscriptionId,
resourceGroupName,
routeTableName
FROM azure.network.route_tables
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, '$.routes') as "routes",
json_extract_path_text(properties, '$.subnets') as "subnets",
json_extract_path_text(properties, '$.disableBgpRoutePropagation') as "disable_bgp_route_propagation",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.resourceGuid') as "resource_guid",
subscriptionId,
resourceGroupName,
routeTableName
FROM azure.network.route_tables
WHERE subscriptionId = 'replace-me';