usages
Creates, updates, deletes, gets or lists a usages
resource.
Overview
Name | usages |
Type | Resource |
Id | azure.signalr.usages |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified ARM resource id |
name | object | Localizable String object containing the name and a localized value. |
currentValue | integer | Current value for the usage quota. |
limit | integer | The maximum permitted value for the usage quota. If there is no limit, this value will be -1. |
unit | string | Representing the units of the usage quota. Possible values are: Count, Bytes, Seconds, Percent, CountPerSecond, BytesPerSecond. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | List resource usage quotas by location. |
SELECT
examples
List resource usage quotas by location.
SELECT
id,
name,
currentValue,
limit,
unit
FROM azure.signalr.usages
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';