quotas
Creates, updates, deletes, gets or lists a quotas
resource.
Overview
Name | quotas |
Type | Resource |
Id | azure.load_testing.quotas |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
properties | object | The resource-specific properties for this resource. |
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
properties | object | The resource-specific properties for this resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , location , quotaBucketName | Get the available quota for a quota bucket per region per subscription. | |
list | select | subscriptionId , location | List quotas for a given subscription Id. | |
check_availability | exec | subscriptionId , location , quotaBucketName | Check Quota Availability on quota bucket per region per 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 |
---|---|---|
location | string | The name of the Azure region. |
quotaBucketName | string | The quota name. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
- list
Get the available quota for a quota bucket per region per subscription.
SELECT
properties
FROM azure.load_testing.quotas
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND quotaBucketName = '{{ quotaBucketName }}' -- required
;
List quotas for a given subscription Id.
SELECT
properties
FROM azure.load_testing.quotas
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;
Lifecycle Methods
- check_availability
Check Quota Availability on quota bucket per region per subscription.
EXEC azure.load_testing.quotas.check_availability
@subscriptionId='{{ subscriptionId }}' --required,
@location='{{ location }}' --required,
@quotaBucketName='{{ quotaBucketName }}' --required
@@json=
'{
"properties": "{{ properties }}"
}'
;