DataFlowDebugCommandPayload Class

  • java.lang.Object
    • com.azure.analytics.synapse.artifacts.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
static DataFlowDebugCommandPayload fromJson(JsonReader jsonReader)

Reads an instance of DataFlowDebugCommandPayload from the JsonReader.

List<String> getColumns()

Get the columns property: Array of column names.

String getExpression()

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

Integer getRowLimits()

Get the rowLimits property: Row limits for preview response.

String getStreamName()

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

DataFlowDebugCommandPayload setColumns(List<String> columns)

Set the columns property: Array of column names.

DataFlowDebugCommandPayload setExpression(String expression)

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

DataFlowDebugCommandPayload setRowLimits(Integer rowLimits)

Set the rowLimits property: Row limits for preview response.

DataFlowDebugCommandPayload setStreamName(String streamName)

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

JsonWriter toJson(JsonWriter jsonWriter)

Methods inherited from java.lang.Object

Constructor Details

DataFlowDebugCommandPayload

public DataFlowDebugCommandPayload()

Creates an instance of DataFlowDebugCommandPayload class.

Method Details

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.

getColumns

public List<String> getColumns()

Get the columns property: Array of column names.

Returns:

the columns value.

getExpression

public String getExpression()

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

Returns:

the expression value.

getRowLimits

public Integer getRowLimits()

Get the rowLimits property: Row limits for preview response.

Returns:

the rowLimits value.

getStreamName

public String getStreamName()

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

Returns:

the streamName value.

setColumns

public DataFlowDebugCommandPayload setColumns(List<String> columns)

Set the columns property: Array of column names.

Parameters:

columns - the columns value to set.

Returns:

the DataFlowDebugCommandPayload object itself.

setExpression

public DataFlowDebugCommandPayload setExpression(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.

setRowLimits

public DataFlowDebugCommandPayload setRowLimits(Integer rowLimits)

Set the rowLimits property: Row limits for preview response.

Parameters:

rowLimits - the rowLimits value to set.

Returns:

the DataFlowDebugCommandPayload object itself.

setStreamName

public DataFlowDebugCommandPayload setStreamName(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.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

Applies to