Skip to main content

location_quotas

Creates, updates, deletes, gets or lists a location_quotas resource.

Overview

Namelocation_quotas
TypeResource
Idazure.batch.location_quotas

Fields

The following fields are returned by SELECT queries:

The operation was successful. The response contains the Batch service quotas for the subscription in the specified location.

NameDatatypeDescription
accountQuotainteger (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:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocationName, subscriptionIdGets 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.

NameDatatypeDescription
locationNamestringThe region for which to retrieve Batch service quotas.
subscriptionIdstringThe Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000)

SELECT examples

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
;