accounts_models
Creates, updates, deletes, gets or lists a accounts_models
resource.
Overview
Name | accounts_models |
Type | Resource |
Id | azure.cognitive_services.accounts_models |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Deployment model name. |
baseModel | object | Properties of Cognitive Services account deployment model. |
callRateLimit | object | The call rate limit Cognitive Services account. |
capabilities | object | The capabilities. |
deprecation | object | Cognitive Services account ModelDeprecationInfo. |
finetuneCapabilities | object | The capabilities for finetune models. |
format | string | Deployment model format. |
isDefaultVersion | boolean | If the model is default version. |
lifecycleStatus | string | Model lifecycle status. |
maxCapacity | integer | The max capacity. |
skus | array | The list of Model Sku. |
source | string | Optional. Deployment model source ARM resource ID. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
version | string | Optional. Deployment model version. If version is not specified, a default version will be assigned. The default version is different for different models and might change when there is new version available for a model. Default version for a model could be found from list models API. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | accountName, resourceGroupName, subscriptionId | List available Models for the requested Cognitive Services account |
SELECT
examples
List available Models for the requested Cognitive Services account
SELECT
name,
baseModel,
callRateLimit,
capabilities,
deprecation,
finetuneCapabilities,
format,
isDefaultVersion,
lifecycleStatus,
maxCapacity,
skus,
source,
systemData,
version
FROM azure.cognitive_services.accounts_models
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';