vw_price_sheets
Creates, updates, deletes, gets or lists a vw_price_sheets
resource.
Overview
Name | vw_price_sheets |
Type | View |
Id | azure.consumption.vw_price_sheets |
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, '$.pricesheets') as "pricesheets",
JSON_EXTRACT(properties, '$.nextLink') as "next_link",
JSON_EXTRACT(properties, '$.download') as "download",
subscriptionId,
billingPeriodName
FROM azure.consumption.price_sheets
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.pricesheets') as "pricesheets",
json_extract_path_text(properties, '$.nextLink') as "next_link",
json_extract_path_text(properties, '$.download') as "download",
subscriptionId,
billingPeriodName
FROM azure.consumption.price_sheets
WHERE subscriptionId = 'replace-me';