vw_detailed_cost_report_operation_results
Creates, updates, deletes, gets or lists a vw_detailed_cost_report_operation_results
resource.
Overview
Name | vw_detailed_cost_report_operation_results |
Type | View |
Id | azure.cost_management.vw_detailed_cost_report_operation_results |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.expiryTime') as "expiry_time",
JSON_EXTRACT(properties, '$.validTill') as "valid_till",
JSON_EXTRACT(properties, '$.downloadUrl') as "download_url",
scope,
operationId
FROM azure.cost_management.detailed_cost_report_operation_results
WHERE scope = 'replace-me' AND operationId = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.expiryTime') as "expiry_time",
json_extract_path_text(properties, '$.validTill') as "valid_till",
json_extract_path_text(properties, '$.downloadUrl') as "download_url",
scope,
operationId
FROM azure.cost_management.detailed_cost_report_operation_results
WHERE scope = 'replace-me' AND operationId = 'replace-me';