Skip to main content

quotas

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

Overview

Namequotas
TypeResource
Idazure.playwright_testing.quotas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. # pylint: disable=line-too-long
namestringThe name of the resource.
freeTrialobjectThe subscription quota resource free-trial properties.
offeringTypestringIndicates the offering type for the subscription. Known values are: "NotApplicable", "PrivatePreview", "PublicPreview", and "GeneralAvailability". (NotApplicable, PrivatePreview, PublicPreview, GeneralAvailability)
provisioningStatestringThe status of the last operation. Known values are: "Succeeded", "Failed", "Canceled", "Creating", "Deleting", and "Accepted". (Succeeded, Failed, Canceled, Creating, Deleting, Accepted)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocation, quota_name, subscription_idGet subscription quota by name.
list_by_subscriptionselectlocation, subscription_idList quotas for a given subscription Id.

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
locationstringThe location of quota in ARM Normalized format like eastus, southeastasia etc. Required.
quota_namestringThe quota name. Known values are: "ScalableExecution" and "Reporting". Required.
subscription_idstring

SELECT examples

Get subscription quota by name.

SELECT
id,
name,
freeTrial,
offeringType,
provisioningState,
systemData,
type
FROM azure.playwright_testing.quotas
WHERE location = '{{ location }}' -- required
AND quota_name = '{{ quota_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;