models
Creates, updates, deletes, gets or lists a models resource.
Overview
| Name | models |
| Type | Resource |
| Id | azure.cognitive_services.models |
Fields
The following fields are returned by SELECT queries:
- list
| 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
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | location, subscription_id | List Models. |
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 Models.
SELECT
description,
kind,
model,
skuName
FROM azure.cognitive_services.models
WHERE location = '{{ location }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;