Skip to main content

connection_models

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

Overview

Nameconnection_models
TypeResource
Idazure.ml_services.connection_models

Fields

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

NameDatatypeDescription
namestringDeployment model name.
capabilitiesobjectThe capabilities.
deprecationobject
finetuneCapabilitiesobjectThe capabilities for finetune models.
formatstringDeployment model format.
isDefaultVersionbooleanIf the model is default version.
lifecycleStatusstringModel lifecycle status.
maxCapacityinteger (int32)The max capacity.
skusarrayThe list of Model Sku.
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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, workspaceName, connectionName
listselectsubscriptionId, 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.

NameDatatypeDescription
connectionNamestringFriendly name of the workspace connection
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringAzure Machine Learning Workspace Name

SELECT examples

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
;