Skip to main content

skus

Creates, updates, deletes, gets or lists a skus resource.

Overview

Nameskus
TypeResource
Idazure_stack.azure_stack_hci.skus

Fields

NameDatatypeDescription
clusterNametextfield from the properties object
contenttextfield from the properties object
content_versiontextfield from the properties object
offerNametextfield from the properties object
offer_idtextfield from the properties object
provisioning_statetextfield from the properties object
publisherNametextfield from the properties object
publisher_idtextfield from the properties object
resourceGroupNametextfield from the properties object
skuNametextfield from the properties object
sku_mappingstextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTclusterName, offerName, publisherName, resourceGroupName, skuName, subscriptionIdGet SKU resource details within a offer of HCI Cluster.
list_by_offerSELECTclusterName, offerName, publisherName, resourceGroupName, subscriptionIdList Skus available for a offer within the HCI Cluster.

SELECT examples

List Skus available for a offer within the HCI Cluster.

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 }}';