managed_compute_usages_operation_group
Creates, updates, deletes, gets or lists a managed_compute_usages_operation_group resource.
Overview
| Name | managed_compute_usages_operation_group |
| Type | Resource |
| Id | azure.cognitive_services.managed_compute_usages_operation_group |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the managed compute usage. |
name | object | The name information for the metric. |
currentValue | number | Current value for this metric. |
deployments | array | Deployments consuming this managed compute quota. |
limit | number | Maximum value for this metric. |
offerScope | string | Offer scope (e.g., 'Global', 'Datazone-US'). |
type | string | The resource type. |
unit | string | The unit of the metric. Known values are: "Count", "Bytes", "Seconds", "Percent", "CountPerSecond", "BytesPerSecond", and "Milliseconds". (Count, Bytes, Seconds, Percent, CountPerSecond, BytesPerSecond, Milliseconds) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | location, subscription_id | List managed compute quota usages for a subscription and location. |
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 location name. Required. |
subscription_id | string |
SELECT examples
- list
List managed compute quota usages for a subscription and location.
SELECT
id,
name,
currentValue,
deployments,
limit,
offerScope,
type,
unit
FROM azure.cognitive_services.managed_compute_usages_operation_group
WHERE location = '{{ location }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;