quota_usages
Creates, updates, deletes, gets or lists a quota_usages
resource.
Overview
Name | quota_usages |
Type | Resource |
Id | azure.postgresql.quota_usages |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified ARM resource Id |
name | object | Name of quota usage for flexible servers |
currentValue | integer (int64) | Current Quota usage value |
limit | integer (int64) | Quota limit |
unit | string | Quota unit (default: Count) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , locationName | Get quota usages at specified location in a given subscription. |
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 |
---|---|---|
locationName | string | The name of the location. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
Get quota usages at specified location in a given subscription.
SELECT
id,
name,
currentValue,
limit,
unit
FROM azure.postgresql.quota_usages
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND locationName = '{{ locationName }}' -- required
;