skus
Creates, updates, deletes, gets or lists a skus
resource.
Overview
Name | skus |
Type | Resource |
Id | azure_stack.azure_stack_hci.skus |
Fields
- vw_skus
- skus
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 |
offer_id | 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 |
skuName | 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 | SKU properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | clusterName, offerName, publisherName, resourceGroupName, skuName, subscriptionId | Get SKU resource details within a offer of HCI Cluster. |
list_by_offer | SELECT | clusterName, offerName, publisherName, resourceGroupName, subscriptionId | List Skus available for a offer within the HCI Cluster. |
SELECT
examples
List Skus available for a offer within the HCI Cluster.
- vw_skus
- skus
SELECT
clusterName,
content,
content_version,
offerName,
offer_id,
provisioning_state,
publisherName,
publisher_id,
resourceGroupName,
skuName,
sku_mappings,
subscriptionId
FROM azure_stack.azure_stack_hci.vw_skus
WHERE clusterName = '{{ clusterName }}'
AND offerName = '{{ offerName }}'
AND publisherName = '{{ publisherName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure_stack.azure_stack_hci.skus
WHERE clusterName = '{{ clusterName }}'
AND offerName = '{{ offerName }}'
AND publisherName = '{{ publisherName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';