vw_offer_delegations
Creates, updates, deletes, gets or lists a vw_offer_delegations
resource.
Overview
Name | vw_offer_delegations |
Type | View |
Id | azure_stack.subscriptions_admin.vw_offer_delegations |
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,
tags as tags,
JSON_EXTRACT(properties, '$.subscriptionId') as "subscription_id",
subscriptionId,
resourceGroupName,
offer,
offerDelegationName
FROM azure_stack.subscriptions_admin.offer_delegations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND offer = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.subscriptionId') as "subscription_id",
subscriptionId,
resourceGroupName,
offer,
offerDelegationName
FROM azure_stack.subscriptions_admin.offer_delegations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND offer = 'replace-me';