vw_profiles
Creates, updates, deletes, gets or lists a vw_profiles
resource.
Overview
Name | vw_profiles |
Type | View |
Id | azure.cdn.vw_profiles |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
sku as sku,
kind as kind,
identity as identity,
JSON_EXTRACT(properties, '$.resourceState') as "resource_state",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.extendedProperties') as "extended_properties",
JSON_EXTRACT(properties, '$.frontDoorId') as "front_door_id",
JSON_EXTRACT(properties, '$.originResponseTimeoutSeconds') as "origin_response_timeout_seconds",
JSON_EXTRACT(properties, '$.logScrubbing') as "log_scrubbing",
subscriptionId,
resourceGroupName,
profileName
FROM azure.cdn.profiles
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
sku as sku,
kind as kind,
identity as identity,
json_extract_path_text(properties, '$.resourceState') as "resource_state",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.extendedProperties') as "extended_properties",
json_extract_path_text(properties, '$.frontDoorId') as "front_door_id",
json_extract_path_text(properties, '$.originResponseTimeoutSeconds') as "origin_response_timeout_seconds",
json_extract_path_text(properties, '$.logScrubbing') as "log_scrubbing",
subscriptionId,
resourceGroupName,
profileName
FROM azure.cdn.profiles
WHERE subscriptionId = 'replace-me';