Skip to content
Merged
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 @@ -28,23 +28,25 @@ public class ExecuteSSISPackageActivity extends ExecutionActivity {
private SSISPackageLocation packageLocation;

/**
* Specifies the runtime to execute SSIS package. Possible values include:
* 'x64', 'x86'.
* Specifies the runtime to execute SSIS package. The value should be "x86"
* or "x64". Type: string (or Expression with resultType string).
*/
@JsonProperty(value = "typeProperties.runtime")
private SSISExecutionRuntime runtime;
private Object runtime;

/**
* The logging level of SSIS package execution.
* The logging level of SSIS package execution. Type: string (or Expression
* with resultType string).
*/
@JsonProperty(value = "typeProperties.loggingLevel")
private String loggingLevel;
private Object loggingLevel;

/**
* The environment path to execute the SSIS package.
* The environment path to execute the SSIS package. Type: string (or
* Expression with resultType string).
*/
@JsonProperty(value = "typeProperties.environmentPath")
private String environmentPath;
private Object environmentPath;

/**
* The integration runtime reference.
Expand Down Expand Up @@ -103,61 +105,61 @@ public ExecuteSSISPackageActivity withPackageLocation(SSISPackageLocation packag
}

/**
* Get specifies the runtime to execute SSIS package. Possible values include: 'x64', 'x86'.
* Get specifies the runtime to execute SSIS package. The value should be "x86" or "x64". Type: string (or Expression with resultType string).
*
* @return the runtime value
*/
public SSISExecutionRuntime runtime() {
public Object runtime() {
return this.runtime;
}

/**
* Set specifies the runtime to execute SSIS package. Possible values include: 'x64', 'x86'.
* Set specifies the runtime to execute SSIS package. The value should be "x86" or "x64". Type: string (or Expression with resultType string).
*
* @param runtime the runtime value to set
* @return the ExecuteSSISPackageActivity object itself.
*/
public ExecuteSSISPackageActivity withRuntime(SSISExecutionRuntime runtime) {
public ExecuteSSISPackageActivity withRuntime(Object runtime) {
this.runtime = runtime;
return this;
}

/**
* Get the logging level of SSIS package execution.
* Get the logging level of SSIS package execution. Type: string (or Expression with resultType string).
*
* @return the loggingLevel value
*/
public String loggingLevel() {
public Object loggingLevel() {
return this.loggingLevel;
}

/**
* Set the logging level of SSIS package execution.
* Set the logging level of SSIS package execution. Type: string (or Expression with resultType string).
*
* @param loggingLevel the loggingLevel value to set
* @return the ExecuteSSISPackageActivity object itself.
*/
public ExecuteSSISPackageActivity withLoggingLevel(String loggingLevel) {
public ExecuteSSISPackageActivity withLoggingLevel(Object loggingLevel) {
this.loggingLevel = loggingLevel;
return this;
}

/**
* Get the environment path to execute the SSIS package.
* Get the environment path to execute the SSIS package. Type: string (or Expression with resultType string).
*
* @return the environmentPath value
*/
public String environmentPath() {
public Object environmentPath() {
return this.environmentPath;
}

/**
* Set the environment path to execute the SSIS package.
* Set the environment path to execute the SSIS package. Type: string (or Expression with resultType string).
*
* @param environmentPath the environmentPath value to set
* @return the ExecuteSSISPackageActivity object itself.
*/
public ExecuteSSISPackageActivity withEnvironmentPath(String environmentPath) {
public ExecuteSSISPackageActivity withEnvironmentPath(Object environmentPath) {
this.environmentPath = environmentPath;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,28 @@
*/
public class SSISPackageLocation {
/**
* The SSIS package path.
* The SSIS package path. Type: string (or Expression with resultType
* string).
*/
@JsonProperty(value = "packagePath", required = true)
private String packagePath;
private Object packagePath;

/**
* Get the SSIS package path.
* Get the SSIS package path. Type: string (or Expression with resultType string).
*
* @return the packagePath value
*/
public String packagePath() {
public Object packagePath() {
return this.packagePath;
}

/**
* Set the SSIS package path.
* Set the SSIS package path. Type: string (or Expression with resultType string).
*
* @param packagePath the packagePath value to set
* @return the SSISPackageLocation object itself.
*/
public SSISPackageLocation withPackagePath(String packagePath) {
public SSISPackageLocation withPackagePath(Object packagePath) {
this.packagePath = packagePath;
return this;
}
Expand Down