delegated_provider_offers
Creates, updates, deletes, gets or lists a delegated_provider_offers
resource.
Overview
Name | delegated_provider_offers |
Type | Resource |
Id | azure_stack.user_subscriptions.delegated_provider_offers |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
id | string | The offer ID |
name | string | The name of the offer. |
description | string | Description of offer. |
displayName | string | Display name of offer. |
Name | Datatype | Description |
---|---|---|
id | string | The offer ID |
name | string | The name of the offer. |
description | string | Description of offer. |
displayName | string | Display name of offer. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | delegatedProviderId , offerName | Get the specified offer for the delegated provider. | |
list | select | delegatedProviderId | Get the list of offers for the specified delegated provider. |
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 |
---|---|---|
delegatedProviderId | string | Id of the delegated provider. |
offerName | string | Name of the offer. |
SELECT
examples
- get
- list
Get the specified offer for the delegated provider.
SELECT
id,
name,
description,
displayName
FROM azure_stack.user_subscriptions.delegated_provider_offers
WHERE delegatedProviderId = '{{ delegatedProviderId }}' -- required
AND offerName = '{{ offerName }}' -- required
;
Get the list of offers for the specified delegated provider.
SELECT
id,
name,
description,
displayName
FROM azure_stack.user_subscriptions.delegated_provider_offers
WHERE delegatedProviderId = '{{ delegatedProviderId }}' -- required
;