replica_skus
Creates, updates, deletes, gets or lists a replica_skus
resource.
Overview
Name | replica_skus |
Type | Resource |
Id | azure.signalr.replica_skus |
Fields
The following fields are returned by SELECT
queries:
- list
Success. The response describes all available skus of the replica resource.
Name | Datatype | Description |
---|---|---|
name | string | The name of the SKU. E.g. P3. It is typically a letter+number code |
capacity | integer (int32) | If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. |
family | string | If the service has different generations of hardware, for the same SKU, then that can be captured here. |
size | string | The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. |
tier | string | This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , resourceName , replicaName | List all available skus of the replica resource. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
replicaName | string | The name of the replica. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
resourceName | string | The name of the resource. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
List all available skus of the replica resource.
SELECT
name,
capacity,
family,
size,
tier
FROM azure.signalr.replica_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND replicaName = '{{ replicaName }}' -- required
;