models
Creates, updates, deletes, gets or lists a models
resource.
Overview
Name | models |
Type | Resource |
Id | azure.cognitive_services.models |
Fields
Name | Datatype | Description |
---|---|---|
description | string | The description of the model. |
kind | string | The kind (type) of cognitive service account. |
model | object | Cognitive Services account Model. |
skuName | string | The name of SKU. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | List Models. |
calculate_capacity | EXEC | subscriptionId | Model capacity calculator. |
SELECT
examples
List Models.
SELECT
description,
kind,
model,
skuName
FROM azure.cognitive_services.models
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';