Skip to main content

models

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

Overview

Namemodels
TypeResource
Idazure.cognitive_services.models

Fields

NameDatatypeDescription
descriptionstringThe description of the model.
kindstringThe kind (type) of cognitive service account.
modelobjectCognitive Services account Model.
skuNamestringThe name of SKU.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocation, subscriptionIdList Models.
calculate_capacityEXECsubscriptionIdModel capacity calculator.

SELECT examples

List Models.

SELECT
description,
kind,
model,
skuName
FROM azure.cognitive_services.models
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';