commitment_tiers
Creates, updates, deletes, gets or lists a commitment_tiers
resource.
Overview
Name | commitment_tiers |
Type | Resource |
Id | azure.cognitive_services.commitment_tiers |
Fields
The following fields are returned by SELECT
queries:
- list
OK.
Name | Datatype | Description |
---|---|---|
cost | object | Cognitive Services account commitment cost. |
hostingModel | string | Account hosting model. |
kind | string | The kind (type) of cognitive service account. |
maxCount | integer (int32) | Commitment period commitment max count. |
planType | string | Commitment plan type. |
quota | object | Cognitive Services account commitment quota. |
skuName | string | The name of the SKU. Ex - P3. It is typically a letter+number code |
tier | string | Commitment period commitment tier. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , location | List Commitment Tiers. |
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 | Resource location. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
List Commitment Tiers.
SELECT
cost,
hostingModel,
kind,
maxCount,
planType,
quota,
skuName,
tier
FROM azure.cognitive_services.commitment_tiers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;