Skip to main content

account_quotas

Creates, updates, deletes, gets or lists an account_quotas resource.

Overview

Nameaccount_quotas
TypeResource
Idazure.playwright_testing.account_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 Playwright service account quota resource free-trial properties.
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
getselectresource_group_name, account_name, quota_name, subscription_idGet quota by name for an account.
list_by_accountselectresource_group_name, account_name, subscription_idList quotas for a given account.

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
account_namestringName of account. Required.
quota_namestringThe Playwright service account quota name. Known values are: "ScalableExecution" and "Reporting". Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Get quota by name for an account.

SELECT
id,
name,
freeTrial,
provisioningState,
systemData,
type
FROM azure.playwright_testing.account_quotas
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND account_name = '{{ account_name }}' -- required
AND quota_name = '{{ quota_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;