Skip to main content

playwright_quotas

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

Overview

Nameplaywright_quotas
TypeResource
Idazure.playwright.playwright_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}.
namestringThe name of the resource.
freeTrialobjectThe subscription-level location-based Playwright quota free trial properties.
provisioningStatestringThe status of the last resource 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, playwright_quota_name, subscription_idGets a subscription-level location-based Playwright quota resource by name.
list_by_subscriptionselectlocation, subscription_idLists Playwright quota resources 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 name of the Azure region. Required.
playwright_quota_namestringThe name of the PlaywrightQuota. "ExecutionMinutes" Required.
subscription_idstring

SELECT examples

Gets a subscription-level location-based Playwright quota resource by name.

SELECT
id,
name,
freeTrial,
provisioningState,
systemData,
type
FROM azure.playwright.playwright_quotas
WHERE location = '{{ location }}' -- required
AND playwright_quota_name = '{{ playwright_quota_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;