Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR sdk/datafactory/mgmt-v2018_06_01] [DataFactory] Support source sink level staging #3553

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ public class DataFlowSink extends Transformation {
@JsonProperty(value = "schemaLinkedService")
private LinkedServiceReference schemaLinkedService;

/**
* Staging info for execute data flow activity.
*/
@JsonProperty(value = "staging")
private DataFlowStagingInfo staging;

/**
* Get dataset reference.
*
Expand Down Expand Up @@ -92,4 +98,24 @@ public DataFlowSink withSchemaLinkedService(LinkedServiceReference schemaLinkedS
return this;
}

/**
* Get staging info for execute data flow activity.
*
* @return the staging value
*/
public DataFlowStagingInfo staging() {
return this.staging;
}

/**
* Set staging info for execute data flow activity.
*
* @param staging the staging value to set
* @return the DataFlowSink object itself.
*/
public DataFlowSink withStaging(DataFlowStagingInfo staging) {
this.staging = staging;
return this;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ public class DataFlowSource extends Transformation {
@JsonProperty(value = "schemaLinkedService")
private LinkedServiceReference schemaLinkedService;

/**
* Staging info for execute data flow activity.
*/
@JsonProperty(value = "staging")
private DataFlowStagingInfo staging;

/**
* Get dataset reference.
*
Expand Down Expand Up @@ -92,4 +98,24 @@ public DataFlowSource withSchemaLinkedService(LinkedServiceReference schemaLinke
return this;
}

/**
* Get staging info for execute data flow activity.
*
* @return the staging value
*/
public DataFlowStagingInfo staging() {
return this.staging;
}

/**
* Set staging info for execute data flow activity.
*
* @param staging the staging value to set
* @return the DataFlowSource object itself.
*/
public DataFlowSource withStaging(DataFlowStagingInfo staging) {
this.staging = staging;
return this;
}

}