ModelContainers Interface

public interface ModelContainers

Resource collection API of ModelContainers.

Method Summary

Modifier and Type Method and Description
abstract Blank define(String name)

Begins definition for a new ModelContainer resource.

abstract void delete(String resourceGroupName, String workspaceName, String name)

Delete container.

abstract void deleteById(String id)

Delete container.

abstract Response<Void> deleteByIdWithResponse(String id, Context context)

Delete container.

abstract Response<Void> deleteWithResponse(String resourceGroupName, String workspaceName, String name, Context context)

Delete container.

abstract ModelContainer get(String resourceGroupName, String workspaceName, String name)

Get container.

abstract ModelContainer getById(String id)

Get container.

abstract Response<ModelContainer> getByIdWithResponse(String id, Context context)

Get container.

abstract Response<ModelContainer> getWithResponse(String resourceGroupName, String workspaceName, String name, Context context)

Get container.

abstract PagedIterable<ModelContainer> list(String resourceGroupName, String workspaceName)

List model containers.

abstract PagedIterable<ModelContainer> list(String resourceGroupName, String workspaceName, String skip, Integer count, ListViewType listViewType, Context context)

List model containers.

Method Details

define

public abstract ModelContainer.DefinitionStages.Blank define(String name)

Begins definition for a new ModelContainer resource.

Parameters:

name - resource name.

Returns:

the first stage of the new ModelContainer definition.

delete

public abstract void delete(String resourceGroupName, String workspaceName, String name)

Delete container.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - Name of Azure Machine Learning workspace.
name - Container name. This is case-sensitive.

deleteById

public abstract void deleteById(String id)

Delete container.

Parameters:

id - the resource ID.

deleteByIdWithResponse

public abstract Response<Void> deleteByIdWithResponse(String id, Context context)

Delete container.

Parameters:

id - the resource ID.
context - The context to associate with this operation.

Returns:

deleteWithResponse

public abstract Response<Void> deleteWithResponse(String resourceGroupName, String workspaceName, String name, Context context)

Delete container.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - Name of Azure Machine Learning workspace.
name - Container name. This is case-sensitive.
context - The context to associate with this operation.

Returns:

get

public abstract ModelContainer get(String resourceGroupName, String workspaceName, String name)

Get container.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - Name of Azure Machine Learning workspace.
name - Container name. This is case-sensitive.

Returns:

container.

getById

public abstract ModelContainer getById(String id)

Get container.

Parameters:

id - the resource ID.

Returns:

container along with Response<T>.

getByIdWithResponse

public abstract Response<ModelContainer> getByIdWithResponse(String id, Context context)

Get container.

Parameters:

id - the resource ID.
context - The context to associate with this operation.

Returns:

container along with Response<T>.

getWithResponse

public abstract Response<ModelContainer> getWithResponse(String resourceGroupName, String workspaceName, String name, Context context)

Get container.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - Name of Azure Machine Learning workspace.
name - Container name. This is case-sensitive.
context - The context to associate with this operation.

Returns:

container along with Response<T>.

list

public abstract PagedIterable<ModelContainer> list(String resourceGroupName, String workspaceName)

List model containers.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - Name of Azure Machine Learning workspace.

Returns:

a paginated list of ModelContainer entities as paginated response with PagedIterable<T>.

list

public abstract PagedIterable<ModelContainer> list(String resourceGroupName, String workspaceName, String skip, Integer count, ListViewType listViewType, Context context)

List model containers.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
workspaceName - Name of Azure Machine Learning workspace.
skip - Continuation token for pagination.
count - Maximum number of results to return.
listViewType - View type for including/excluding (for example) archived entities.
context - The context to associate with this operation.

Returns:

a paginated list of ModelContainer entities as paginated response with PagedIterable<T>.

Applies to