connection_models
Creates, updates, deletes, gets or lists a connection_models
resource.
Overview
Name | connection_models |
Type | Resource |
Id | azure.ml_services.connection_models |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Deployment model name. |
capabilities | object | The capabilities. |
deprecation | object | |
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. |
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 |
---|---|---|---|
get | SELECT | connectionName, resourceGroupName, subscriptionId, workspaceName | |
list | SELECT | resourceGroupName, subscriptionId, workspaceName |
SELECT
examples
SELECT
name,
capabilities,
deprecation,
finetuneCapabilities,
format,
isDefaultVersion,
lifecycleStatus,
maxCapacity,
skus,
systemData,
version
FROM azure.ml_services.connection_models
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';