DataFlowDebugCommandPayload Class

  • java.lang.Object
    • com.azure.resourcemanager.datafactory.models.DataFlowDebugCommandPayload

Implements

public final class DataFlowDebugCommandPayload
implements JsonSerializable<DataFlowDebugCommandPayload>

Structure of command payload.

Constructor Summary

Constructor Description
DataFlowDebugCommandPayload()

Creates an instance of DataFlowDebugCommandPayload class.

Method Summary

Modifier and Type Method and Description
List<String> columns()

Get the columns property: Array of column names.

String expression()

Get the expression property: The expression which is used for preview.

static DataFlowDebugCommandPayload fromJson(JsonReader jsonReader)

Reads an instance of DataFlowDebugCommandPayload from the JsonReader.

Integer rowLimits()

Get the rowLimits property: Row limits for preview response.

String streamName()

Get the streamName property: The stream name which is used for preview.

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

DataFlowDebugCommandPayload withColumns(List<String> columns)

Set the columns property: Array of column names.

DataFlowDebugCommandPayload withExpression(String expression)

Set the expression property: The expression which is used for preview.

DataFlowDebugCommandPayload withRowLimits(Integer rowLimits)

Set the rowLimits property: Row limits for preview response.

DataFlowDebugCommandPayload withStreamName(String streamName)

Set the streamName property: The stream name which is used for preview.

Methods inherited from java.lang.Object

Constructor Details

DataFlowDebugCommandPayload

public DataFlowDebugCommandPayload()

Creates an instance of DataFlowDebugCommandPayload class.

Method Details

columns

public List<String> columns()

Get the columns property: Array of column names.

Returns:

the columns value.

expression

public String expression()

Get the expression property: The expression which is used for preview.

Returns:

the expression value.

fromJson

public static DataFlowDebugCommandPayload fromJson(JsonReader jsonReader)

Reads an instance of DataFlowDebugCommandPayload from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of DataFlowDebugCommandPayload if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If the deserialized JSON object was missing any required properties.

rowLimits

public Integer rowLimits()

Get the rowLimits property: Row limits for preview response.

Returns:

the rowLimits value.

streamName

public String streamName()

Get the streamName property: The stream name which is used for preview.

Returns:

the streamName value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

withColumns

public DataFlowDebugCommandPayload withColumns(List<String> columns)

Set the columns property: Array of column names.

Parameters:

columns - the columns value to set.

Returns:

the DataFlowDebugCommandPayload object itself.

withExpression

public DataFlowDebugCommandPayload withExpression(String expression)

Set the expression property: The expression which is used for preview.

Parameters:

expression - the expression value to set.

Returns:

the DataFlowDebugCommandPayload object itself.

withRowLimits

public DataFlowDebugCommandPayload withRowLimits(Integer rowLimits)

Set the rowLimits property: Row limits for preview response.

Parameters:

rowLimits - the rowLimits value to set.

Returns:

the DataFlowDebugCommandPayload object itself.

withStreamName

public DataFlowDebugCommandPayload withStreamName(String streamName)

Set the streamName property: The stream name which is used for preview.

Parameters:

streamName - the streamName value to set.

Returns:

the DataFlowDebugCommandPayload object itself.

Applies to