offers
Creates, updates, deletes, gets or lists a offers
resource.
Overview
Name | offers |
Type | Resource |
Id | azure_stack.azure_stack_hci.offers |
Fields
- vw_offers
- offers
Name | Datatype | Description |
---|---|---|
clusterName | text | field from the properties object |
content | text | field from the properties object |
content_version | text | field from the properties object |
offerName | text | field from the properties object |
provisioning_state | text | field from the properties object |
publisherName | text | field from the properties object |
publisher_id | text | field from the properties object |
resourceGroupName | text | field from the properties object |
sku_mappings | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Publisher properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | clusterName, offerName, publisherName, resourceGroupName, subscriptionId | Get Offer resource details within a publisher of HCI Cluster. |
list_by_cluster | SELECT | clusterName, resourceGroupName, subscriptionId | List Offers available across publishers for the HCI Cluster. |
list_by_publisher | SELECT | clusterName, publisherName, resourceGroupName, subscriptionId | List Offers available for a publisher within the HCI Cluster. |
SELECT
examples
List Offers available across publishers for the HCI Cluster.
- vw_offers
- offers
SELECT
clusterName,
content,
content_version,
offerName,
provisioning_state,
publisherName,
publisher_id,
resourceGroupName,
sku_mappings,
subscriptionId
FROM azure_stack.azure_stack_hci.vw_offers
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure_stack.azure_stack_hci.offers
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';