Skip to main content

accounts_models

Creates, updates, deletes, gets or lists a accounts_models resource.

Overview

Nameaccounts_models
TypeResource
Idazure.cognitive_services.accounts_models

Fields

NameDatatypeDescription
namestringDeployment model name.
baseModelobjectProperties of Cognitive Services account deployment model.
callRateLimitobjectThe call rate limit Cognitive Services account.
capabilitiesobjectThe capabilities.
deprecationobjectCognitive Services account ModelDeprecationInfo.
finetuneCapabilitiesobjectThe capabilities for finetune models.
formatstringDeployment model format.
isDefaultVersionbooleanIf the model is default version.
lifecycleStatusstringModel lifecycle status.
maxCapacityintegerThe max capacity.
skusarrayThe list of Model Sku.
sourcestringOptional. Deployment model source ARM resource ID.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
versionstringOptional. 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

NameAccessible byRequired ParamsDescription
listSELECTaccountName, resourceGroupName, subscriptionIdList 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 }}';