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
| Name | Datatype | Description |
|---|---|---|
cost | object | Cognitive Services account commitment cost. |
hostingModel | string | Account hosting model. Known values are: "Web", "ConnectedContainer", "DisconnectedContainer", and "ProvisionedWeb". (Web, ConnectedContainer, DisconnectedContainer, ProvisionedWeb) |
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
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | location, subscription_id | 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 | The location name. Required. |
subscription_id | string |
SELECT examples
- list
List Commitment Tiers.
SELECT
cost,
hostingModel,
kind,
maxCount,
planType,
quota,
skuName,
tier
FROM azure.cognitive_services.commitment_tiers
WHERE location = '{{ location }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;