Transformations Interface

public interface Transformations

Resource collection API of Transformations.

Method Summary

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

Begins definition for a new Transformation resource.

abstract Transformation get(String resourceGroupName, String jobName, String transformationName)

Gets details about the specified transformation.

abstract Transformation getById(String id)

Gets details about the specified transformation.

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

Gets details about the specified transformation.

abstract Response<Transformation> getWithResponse(String resourceGroupName, String jobName, String transformationName, Context context)

Gets details about the specified transformation.

Method Details

define

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

Begins definition for a new Transformation resource.

Parameters:

name - resource name.

Returns:

the first stage of the new Transformation definition.

get

public abstract Transformation get(String resourceGroupName, String jobName, String transformationName)

Gets details about the specified transformation.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
jobName - The name of the streaming job.
transformationName - The name of the transformation.

Returns:

details about the specified transformation.

getById

public abstract Transformation getById(String id)

Gets details about the specified transformation.

Parameters:

id - the resource ID.

Returns:

details about the specified transformation.

getByIdWithResponse

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

Gets details about the specified transformation.

Parameters:

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

Returns:

details about the specified transformation.

getWithResponse

public abstract Response<Transformation> getWithResponse(String resourceGroupName, String jobName, String transformationName, Context context)

Gets details about the specified transformation.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
jobName - The name of the streaming job.
transformationName - The name of the transformation.
context - The context to associate with this operation.

Returns:

details about the specified transformation.

Applies to