Skip to main content

managed_compute_usages_operation_group

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

Overview

Namemanaged_compute_usages_operation_group
TypeResource
Idazure.cognitive_services.managed_compute_usages_operation_group

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the managed compute usage.
nameobjectThe name information for the metric.
currentValuenumberCurrent value for this metric.
deploymentsarrayDeployments consuming this managed compute quota.
limitnumberMaximum value for this metric.
offerScopestringOffer scope (e.g., 'Global', 'Datazone-US').
typestringThe resource type.
unitstringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlocation, subscription_idList 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.

NameDatatypeDescription
locationstringThe location name. Required.
subscription_idstring

SELECT examples

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
;