offers
Creates, updates, deletes, gets or lists an offers
resource.
Overview
Name | offers |
Type | Resource |
Id | azure_stack.user_subscriptions.offers |
Fields
The following fields are returned by SELECT
queries:
- 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. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | Get the list of public offers for the root 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 |
---|
SELECT
examples
- list
Get the list of public offers for the root provider.
SELECT
id,
name,
description,
displayName
FROM azure_stack.user_subscriptions.offers
;