location_quotas
Creates, updates, deletes, gets or lists a location_quotas
resource.
Overview
Name | location_quotas |
Type | Resource |
Id | azure.batch.location_quotas |
Fields
The following fields are returned by SELECT
queries:
- get
The operation was successful. The response contains the Batch service quotas for the subscription in the specified location.
Name | Datatype | Description |
---|---|---|
accountQuota | integer (int32) | The number of Batch accounts that may be created under the subscription in the specified region. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | locationName , subscriptionId | Gets the Batch service quotas for the specified subscription at the given location. |
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 region for which to retrieve Batch service quotas. |
subscriptionId | string | The Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000) |
SELECT
examples
- get
Gets the Batch service quotas for the specified subscription at the given location.
SELECT
accountQuota
FROM azure.batch.location_quotas
WHERE locationName = '{{ locationName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;