quota_usages
Creates, updates, deletes, gets or lists a quota_usages
resource.
Overview
Name | quota_usages |
Type | Resource |
Id | azure.postgresql.quota_usages |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified ARM resource Id |
name | object | Name property for quota usage |
currentValue | integer | Current Quota usage value |
limit | integer | Quota limit |
unit | string | Quota unit |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | locationName, subscriptionId | Get quota usages at specified location in a given subscription. |
SELECT
examples
Get quota usages at specified location in a given subscription.
SELECT
id,
name,
currentValue,
limit,
unit
FROM azure.postgresql.quota_usages
WHERE locationName = '{{ locationName }}'
AND subscriptionId = '{{ subscriptionId }}';