vw_delegated_provider_offers
Creates, updates, deletes, gets or lists a vw_delegated_provider_offers
resource.
Overview
Name | vw_delegated_provider_offers |
Type | View |
Id | azure_stack.subscriptions_admin.vw_delegated_provider_offers |
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, '$.delegatedOfferId') as "delegated_offer_id",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.externalReferenceId') as "external_reference_id",
JSON_EXTRACT(properties, '$.accessibilityState') as "accessibility_state",
JSON_EXTRACT(properties, '$.subscriptionCount') as "subscription_count",
subscriptionId,
delegatedProviderSubscriptionId,
offer
FROM azure_stack.subscriptions_admin.delegated_provider_offers
WHERE subscriptionId = 'replace-me' AND delegatedProviderSubscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.delegatedOfferId') as "delegated_offer_id",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.externalReferenceId') as "external_reference_id",
json_extract_path_text(properties, '$.accessibilityState') as "accessibility_state",
json_extract_path_text(properties, '$.subscriptionCount') as "subscription_count",
subscriptionId,
delegatedProviderSubscriptionId,
offer
FROM azure_stack.subscriptions_admin.delegated_provider_offers
WHERE subscriptionId = 'replace-me' AND delegatedProviderSubscriptionId = 'replace-me';