playwright_quotas
Creates, updates, deletes, gets or lists a playwright_quotas resource.
Overview
| Name | playwright_quotas |
| Type | Resource |
| Id | azure.playwright.playwright_quotas |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_subscription
| 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 subscription-level location-based Playwright 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 subscription-level location-based Playwright 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 | location, playwright_quota_name, subscription_id | Gets a subscription-level location-based Playwright quota resource by name. | |
list_by_subscription | select | location, subscription_id | Lists 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.
| Name | Datatype | Description |
|---|---|---|
location | string | The name of the Azure region. Required. |
playwright_quota_name | string | The name of the PlaywrightQuota. "ExecutionMinutes" Required. |
subscription_id | string |
SELECT examples
- get
- list_by_subscription
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
;
Lists Playwright quota resources for a given subscription ID.
SELECT
id,
name,
freeTrial,
provisioningState,
systemData,
type
FROM azure.playwright.playwright_quotas
WHERE location = '{{ location }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;