Skip to main content

skus

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

Overview

Nameskus
TypeResource
Idazure.web_pubsub.skus

Fields

NameDatatypeDescription
capacityobjectDescribes scaling information of a sku.
resourceTypestringThe resource type that this object applies to
skuobjectThe billing information of the resource.

Methods

NameAccessible byRequired ParamsDescription
listSELECTresourceGroupName, resourceName, subscriptionIdList all available skus of the resource.

SELECT examples

List all available skus of the resource.

SELECT
capacity,
resourceType,
sku
FROM azure.web_pubsub.skus
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';