replica_skus
Creates, updates, deletes, gets or lists a replica_skus
resource.
Overview
Name | replica_skus |
Type | Resource |
Id | azure.web_pubsub.replica_skus |
Fields
Name | Datatype | Description |
---|---|---|
capacity | object | Describes scaling information of a sku. |
resourceType | string | The resource type that this object applies to |
sku | object | The billing information of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | replicaName, resourceGroupName, resourceName, subscriptionId | List 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 }}';