playwright_workspace_quotas
Creates, updates, deletes, gets or lists a playwright_workspace_quotas resource.
Overview
| Name | playwright_workspace_quotas |
| Type | Resource |
| Id | azure.playwright.playwright_workspace_quotas |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_playwright_workspace
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
freeTrial | object | The Playwright workspace quota free trial properties. |
provisioningState | string | The status of the last resource operation. Known values are: "Succeeded", "Failed", "Canceled", "Creating", "Deleting", and "Accepted". (Succeeded, Failed, Canceled, Creating, Deleting, Accepted) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
freeTrial | object | The Playwright workspace quota free trial properties. |
provisioningState | string | The status of the last resource operation. Known values are: "Succeeded", "Failed", "Canceled", "Creating", "Deleting", and "Accepted". (Succeeded, Failed, Canceled, Creating, Deleting, Accepted) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, playwright_workspace_name, quota_name, subscription_id | Gets a Playwright workspace quota resource by name. | |
list_by_playwright_workspace | select | resource_group_name, playwright_workspace_name, subscription_id | Lists 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.
| Name | Datatype | Description |
|---|---|---|
playwright_workspace_name | string | The name of the PlaywrightWorkspace. Required. |
quota_name | string | The name of the PlaywrightWorkspaceQuota. "ExecutionMinutes" Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- get
- list_by_playwright_workspace
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
;
Lists quota resources for a given Playwright workspace.
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 subscription_id = '{{ subscription_id }}' -- required
;