vw_offers
Creates, updates, deletes, gets or lists a vw_offers
resource.
Overview
Name | vw_offers |
Type | View |
Id | azure_extras.edge_marketplace.vw_offers |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.contentVersion') as "content_version",
JSON_EXTRACT(properties, '$.contentUrl') as "content_url",
JSON_EXTRACT(properties, '$.offerContent') as "offer_content",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.marketplaceSkus') as "marketplace_skus",
resourceUri,
offerId,
subscriptionId
FROM azure_extras.edge_marketplace.offers
WHERE subscriptionId = 'replace-me';
SELECT
json_extract_path_text(properties, '$.contentVersion') as "content_version",
json_extract_path_text(properties, '$.contentUrl') as "content_url",
json_extract_path_text(properties, '$.offerContent') as "offer_content",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.marketplaceSkus') as "marketplace_skus",
resourceUri,
offerId,
subscriptionId
FROM azure_extras.edge_marketplace.offers
WHERE subscriptionId = 'replace-me';