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
The following fields are returned by SELECT
queries:
- get
- list
The request was successful; the request was well-formed and received properly.
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 (int32) | 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. |
The request was successful; the request was well-formed and received properly.
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 (int32) | 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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , workspaceName , connectionName | ||
list | select | subscriptionId , resourceGroupName , workspaceName |
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 |
---|---|---|
connectionName | string | Friendly name of the workspace connection |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | Azure Machine Learning Workspace Name |
SELECT
examples
- get
- list
The request was successful; the request was well-formed and received properly.
SELECT
name,
capabilities,
deprecation,
finetuneCapabilities,
format,
isDefaultVersion,
lifecycleStatus,
maxCapacity,
skus,
systemData,
version
FROM azure.ml_services.connection_models
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND connectionName = '{{ connectionName }}' -- required
;
The request was successful; the request was well-formed and received properly.
SELECT
name,
capabilities,
deprecation,
finetuneCapabilities,
format,
isDefaultVersion,
lifecycleStatus,
maxCapacity,
skus,
systemData,
version
FROM azure.ml_services.connection_models
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
;