Data Set Join Instruction Args
data class DataSetJoinInstructionArgs(val leftJoinKeyProperties: Output<DataSetJoinKeyPropertiesArgs>? = null, val leftOperand: Output<String>, val onClause: Output<String>, val rightJoinKeyProperties: Output<DataSetJoinKeyPropertiesArgs>? = null, val rightOperand: Output<String>, val type: Output<DataSetJoinType>) : ConvertibleToJava<DataSetJoinInstructionArgs>
The instructions associated with a join.
Constructors
Link copied to clipboard
constructor(leftJoinKeyProperties: Output<DataSetJoinKeyPropertiesArgs>? = null, leftOperand: Output<String>, onClause: Output<String>, rightJoinKeyProperties: Output<DataSetJoinKeyPropertiesArgs>? = null, rightOperand: Output<String>, type: Output<DataSetJoinType>)
Properties
Link copied to clipboard
Join key properties of the left operand.
Link copied to clipboard
The operand on the left side of a join.
Link copied to clipboard
Join key properties of the right operand.
Link copied to clipboard
The operand on the right side of a join.
Link copied to clipboard
The type of join that it is.