Skip to main content

replica_skus

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

Overview

Namereplica_skus
TypeResource
Idazure.web_pubsub.replica_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
listSELECTreplicaName, resourceGroupName, resourceName, subscriptionIdList all available skus of the replica resource.

SELECT examples

List all available skus of the replica resource.

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