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
The following fields are returned by SELECT
queries:
- get
- list
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. |
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , delegatedProviderSubscriptionId , offer | Get the specified delegated provider offer. | |
list | select | subscriptionId , delegatedProviderSubscriptionId | Get the list of delegated provider offers. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
delegatedProviderSubscriptionId | string | Delegated provider subscription identifier. |
offer | string | Name of an offer. |
subscriptionId | string | Subscription credentials which uniquely identify Microsoft Azure subscription.The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
- list
Get the specified delegated provider offer.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.subscriptions_admin.delegated_provider_offers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND delegatedProviderSubscriptionId = '{{ delegatedProviderSubscriptionId }}' -- required
AND offer = '{{ offer }}' -- required
;
Get the list of delegated provider offers.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.subscriptions_admin.delegated_provider_offers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND delegatedProviderSubscriptionId = '{{ delegatedProviderSubscriptionId }}' -- required
;