Skip to main content

playwright_workspace_quotas

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

Overview

Nameplaywright_workspace_quotas
TypeResource
Idazure.playwright.playwright_workspace_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 Playwright workspace 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
getselectresource_group_name, playwright_workspace_name, quota_name, subscription_idGets a Playwright workspace quota resource by name.
list_by_playwright_workspaceselectresource_group_name, playwright_workspace_name, subscription_idLists quota resources for a given Playwright workspace.

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
playwright_workspace_namestringThe name of the PlaywrightWorkspace. Required.
quota_namestringThe name of the PlaywrightWorkspaceQuota. "ExecutionMinutes" Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Gets a Playwright workspace quota resource by name.

SELECT
id,
name,
freeTrial,
provisioningState,
systemData,
type
FROM azure.playwright.playwright_workspace_quotas
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND playwright_workspace_name = '{{ playwright_workspace_name }}' -- required
AND quota_name = '{{ quota_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;