vw_exports
Creates, updates, deletes, gets or lists a vw_exports
resource.
Overview
Name | vw_exports |
Type | View |
Id | azure.cost_management.vw_exports |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
eTag as e_tag,
identity as identity,
JSON_EXTRACT(properties, '$.format') as "format",
JSON_EXTRACT(properties, '$.deliveryInfo') as "delivery_info",
JSON_EXTRACT(properties, '$.definition') as "definition",
JSON_EXTRACT(properties, '$.runHistory') as "run_history",
JSON_EXTRACT(properties, '$.partitionData') as "partition_data",
JSON_EXTRACT(properties, '$.nextRunTimeEstimate') as "next_run_time_estimate",
JSON_EXTRACT(properties, '$.schedule') as "schedule",
scope,
exportName
FROM azure.cost_management.exports
WHERE scope = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
eTag as e_tag,
identity as identity,
json_extract_path_text(properties, '$.format') as "format",
json_extract_path_text(properties, '$.deliveryInfo') as "delivery_info",
json_extract_path_text(properties, '$.definition') as "definition",
json_extract_path_text(properties, '$.runHistory') as "run_history",
json_extract_path_text(properties, '$.partitionData') as "partition_data",
json_extract_path_text(properties, '$.nextRunTimeEstimate') as "next_run_time_estimate",
json_extract_path_text(properties, '$.schedule') as "schedule",
scope,
exportName
FROM azure.cost_management.exports
WHERE scope = 'replace-me';