delegated_provider_offers
Creates, updates, deletes, gets or lists a delegated_provider_offers
resource.
Overview
Name | delegated_provider_offers |
Type | Resource |
Id | azure_stack.subscriptions_admin.delegated_provider_offers |
Fields
- vw_delegated_provider_offers
- delegated_provider_offers
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
description | text | field from the properties object |
accessibility_state | text | field from the properties object |
delegatedProviderSubscriptionId | text | field from the properties object |
delegated_offer_id | text | field from the properties object |
display_name | text | field from the properties object |
external_reference_id | text | field from the properties object |
location | text | Location of the resource |
offer | text | field from the properties object |
subscriptionId | text | field from the properties object |
subscription_count | text | field from the properties object |
tags | text | List of key-value pairs. |
type | text | Type of resource. |
Name | Datatype | Description |
---|---|---|
id | string | URI of the resource. |
name | string | Name of the resource. |
location | string | Location of the resource |
properties | object | Properties for an delegated provider. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | delegatedProviderSubscriptionId, offer, subscriptionId | Get the specified delegated provider offer. |
list | SELECT | delegatedProviderSubscriptionId, subscriptionId | Get the list of delegated provider offers. |
SELECT
examples
Get the list of delegated provider offers.
- vw_delegated_provider_offers
- delegated_provider_offers
SELECT
id,
name,
description,
accessibility_state,
delegatedProviderSubscriptionId,
delegated_offer_id,
display_name,
external_reference_id,
location,
offer,
subscriptionId,
subscription_count,
tags,
type
FROM azure_stack.subscriptions_admin.vw_delegated_provider_offers
WHERE delegatedProviderSubscriptionId = '{{ delegatedProviderSubscriptionId }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.subscriptions_admin.delegated_provider_offers
WHERE delegatedProviderSubscriptionId = '{{ delegatedProviderSubscriptionId }}'
AND subscriptionId = '{{ subscriptionId }}';