Class DataFlowDebugCommandRequest
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.DataFlowDebugCommandRequest
-
public final class DataFlowDebugCommandRequest extends Object
Request body structure for data flow debug command.
-
-
Constructor Summary
Constructors Constructor Description DataFlowDebugCommandRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DataFlowDebugCommandType
command()
Get the command property: The command type.DataFlowDebugCommandPayload
commandPayload()
Get the commandPayload property: The command payload object.String
sessionId()
Get the sessionId property: The ID of data flow debug session.void
validate()
Validates the instance.DataFlowDebugCommandRequest
withCommand(DataFlowDebugCommandType command)
Set the command property: The command type.DataFlowDebugCommandRequest
withCommandPayload(DataFlowDebugCommandPayload commandPayload)
Set the commandPayload property: The command payload object.DataFlowDebugCommandRequest
withSessionId(String sessionId)
Set the sessionId property: The ID of data flow debug session.
-
-
-
Method Detail
-
sessionId
public String sessionId()
Get the sessionId property: The ID of data flow debug session.- Returns:
- the sessionId value.
-
withSessionId
public DataFlowDebugCommandRequest withSessionId(String sessionId)
Set the sessionId property: The ID of data flow debug session.- Parameters:
sessionId
- the sessionId value to set.- Returns:
- the DataFlowDebugCommandRequest object itself.
-
command
public DataFlowDebugCommandType command()
Get the command property: The command type.- Returns:
- the command value.
-
withCommand
public DataFlowDebugCommandRequest withCommand(DataFlowDebugCommandType command)
Set the command property: The command type.- Parameters:
command
- the command value to set.- Returns:
- the DataFlowDebugCommandRequest object itself.
-
commandPayload
public DataFlowDebugCommandPayload commandPayload()
Get the commandPayload property: The command payload object.- Returns:
- the commandPayload value.
-
withCommandPayload
public DataFlowDebugCommandRequest withCommandPayload(DataFlowDebugCommandPayload commandPayload)
Set the commandPayload property: The command payload object.- Parameters:
commandPayload
- the commandPayload value to set.- Returns:
- the DataFlowDebugCommandRequest object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-