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
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 | 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
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | List Commitment Tiers. |
SELECT
examples
List Commitment Tiers.
SELECT
cost,
hostingModel,
kind,
maxCount,
planType,
quota,
skuName,
tier
FROM azure.cognitive_services.commitment_tiers
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';