v2

latestSwagger 2.0raw.githubusercontent.com2019-10-082354105.4 KB
Model

Query the list of Models in a workspace.

The result list can be filtered using tag and name. If no filter is passed, the query lists all the Models in the given workspace. The returned list is paginated and the count of items in each page is an optional parameter.

get/modelmanagement/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.MachineLearningServices/workspaces/{workspace}/models

Path parameters

subscriptionIdstring uuid required

The Azure Subscription ID.

resourceGroupstring required

The Name of the resource group in which the workspace is located.

workspacestring required

The name of the workspace.

Query parameters

namestring

The object name.

frameworkstring

The framework.

descriptionstring

The object description.

countinteger

The number of items to retrieve in a page.

$skipTokenstring

The continuation token to retrieve the next page.

tagsstring

A set of tags with which to filter the returned models. It is a comma separated string of tags key or tags key=value Example: tagKey1,tagKey2,tagKey3=value3

propertiesstring

A set of properties with which to filter the returned models. It is a comma separated string of properties key and/or properties key=value Example: propKey1,propKey2,propKey3=value3

runIdstring

The runId which created the model.

orderBy'CreatedAtDesc' | 'CreatedAtAsc' | 'UpdatedAtDesc' | 'UpdatedAtAsc'

An option to specify how the models are ordered in the response.

Response

Success

nextLinkstring

A continuation link (absolute URI) to the next page of results in the list.

Example response

{
  "value": [
    {
      "id": "sklearn_mnist:1",
      "name": "sklearn_mnist",
      "description": "A mnist model, first version.",
      "parentModelId": "sklearn_mnist_root:1"
    }
  ]
}