RegistryDataVersions Interface

public interface RegistryDataVersions

Resource collection API of RegistryDataVersions.

Method Summary

Modifier and Type Method and Description
abstract PendingUploadResponseDto createOrGetStartPendingUpload(String resourceGroupName, String registryName, String name, String version, PendingUploadRequestDto body)

Generate a storage location and credential for the client to upload a data asset to.

abstract Response<PendingUploadResponseDto> createOrGetStartPendingUploadWithResponse(String resourceGroupName, String registryName, String name, String version, PendingUploadRequestDto body, Context context)

Generate a storage location and credential for the client to upload a data asset to.

abstract DataVersionBase createOrUpdate(String resourceGroupName, String registryName, String name, String version, DataVersionBaseInner body)

Create or update version.

abstract DataVersionBase createOrUpdate(String resourceGroupName, String registryName, String name, String version, DataVersionBaseInner body, Context context)

Create or update version.

abstract void delete(String resourceGroupName, String registryName, String name, String version)

Delete version.

abstract void delete(String resourceGroupName, String registryName, String name, String version, Context context)

Delete version.

abstract DataVersionBase get(String resourceGroupName, String registryName, String name, String version)

Get version.

abstract Response<DataVersionBase> getWithResponse(String resourceGroupName, String registryName, String name, String version, Context context)

Get version.

abstract PagedIterable<DataVersionBase> list(String resourceGroupName, String registryName, String name)

List data versions in the data container.

abstract PagedIterable<DataVersionBase> list(String resourceGroupName, String registryName, String name, String orderBy, Integer top, String skip, String tags, ListViewType listViewType, Context context)

List data versions in the data container.

Method Details

createOrGetStartPendingUpload

public abstract PendingUploadResponseDto createOrGetStartPendingUpload(String resourceGroupName, String registryName, String name, String version, PendingUploadRequestDto body)

Generate a storage location and credential for the client to upload a data asset to.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
registryName - Name of Azure Machine Learning registry. This is case-insensitive.
name - Data asset name. This is case-sensitive.
version - Version identifier. This is case-sensitive.
body - Pending upload request object.

Returns:

the response.

createOrGetStartPendingUploadWithResponse

public abstract Response<PendingUploadResponseDto> createOrGetStartPendingUploadWithResponse(String resourceGroupName, String registryName, String name, String version, PendingUploadRequestDto body, Context context)

Generate a storage location and credential for the client to upload a data asset to.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
registryName - Name of Azure Machine Learning registry. This is case-insensitive.
name - Data asset name. This is case-sensitive.
version - Version identifier. This is case-sensitive.
body - Pending upload request object.
context - The context to associate with this operation.

Returns:

the response body along with Response<T>.

createOrUpdate

public abstract DataVersionBase createOrUpdate(String resourceGroupName, String registryName, String name, String version, DataVersionBaseInner body)

Create or update version.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
registryName - Name of Azure Machine Learning registry. This is case-insensitive.
name - Container name.
version - Version identifier.
body - Version entity to create or update.

Returns:

azure Resource Manager resource envelope.

createOrUpdate

public abstract DataVersionBase createOrUpdate(String resourceGroupName, String registryName, String name, String version, DataVersionBaseInner body, Context context)

Create or update version.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
registryName - Name of Azure Machine Learning registry. This is case-insensitive.
name - Container name.
version - Version identifier.
body - Version entity to create or update.
context - The context to associate with this operation.

Returns:

azure Resource Manager resource envelope.

delete

public abstract void delete(String resourceGroupName, String registryName, String name, String version)

Delete version.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
registryName - Name of Azure Machine Learning registry. This is case-insensitive.
name - Container name.
version - Version identifier.

delete

public abstract void delete(String resourceGroupName, String registryName, String name, String version, Context context)

Delete version.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
registryName - Name of Azure Machine Learning registry. This is case-insensitive.
name - Container name.
version - Version identifier.
context - The context to associate with this operation.

get

public abstract DataVersionBase get(String resourceGroupName, String registryName, String name, String version)

Get version.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
registryName - Name of Azure Machine Learning registry. This is case-insensitive.
name - Container name.
version - Version identifier.

Returns:

version.

getWithResponse

public abstract Response<DataVersionBase> getWithResponse(String resourceGroupName, String registryName, String name, String version, Context context)

Get version.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
registryName - Name of Azure Machine Learning registry. This is case-insensitive.
name - Container name.
version - Version identifier.
context - The context to associate with this operation.

Returns:

version along with Response<T>.

list

public abstract PagedIterable<DataVersionBase> list(String resourceGroupName, String registryName, String name)

List data versions in the data container.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
registryName - Name of Azure Machine Learning registry. This is case-insensitive.
name - Data container's name.

Returns:

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

list

public abstract PagedIterable<DataVersionBase> list(String resourceGroupName, String registryName, String name, String orderBy, Integer top, String skip, String tags, ListViewType listViewType, Context context)

List data versions in the data container.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
registryName - Name of Azure Machine Learning registry. This is case-insensitive.
name - Data container's name.
orderBy - Please choose OrderBy value from ['createdtime', 'modifiedtime'].
top - Top count of results, top count cannot be greater than the page size. If topCount > page size, results with be default page size count will be returned.
skip - Continuation token for pagination.
tags - Comma-separated list of tag names (and optionally values). Example: tag1,tag2=value2.
listViewType - [ListViewType.ActiveOnly, ListViewType.ArchivedOnly, ListViewType.All]View type for including/excluding (for example) archived entities.
context - The context to associate with this operation.

Returns:

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

Applies to