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

[Azure Data Factory] Change Ssis activity property type to support expression #4939

Merged
merged 1 commit into from
Jan 3, 2019
Merged
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 @@ -2094,24 +2094,16 @@
"$ref": "#/definitions/SSISPackageLocation"
},
"runtime": {
"description": "Specifies the runtime to execute SSIS package.",
"type": "string",
"enum": [
"x64",
"x86"
],
"x-ms-enum": {
"name": "SSISExecutionRuntime",
"modelAsString": true
}
"description": "Specifies the runtime to execute SSIS package. The value should be \"x86\" or \"x64\". Type: string (or Expression with resultType string).",
"type": "object"
},
"loggingLevel": {
"description": "The logging level of SSIS package execution.",
"type": "string"
"description": "The logging level of SSIS package execution. Type: string (or Expression with resultType string).",
"type": "object"
},
"environmentPath": {
"description": "The environment path to execute the SSIS package.",
"type": "string"
"description": "The environment path to execute the SSIS package. Type: string (or Expression with resultType string).",
"type": "object"
},
"connectVia": {
"description": "The integration runtime reference.",
Expand Down Expand Up @@ -2163,8 +2155,8 @@
"type" : "object",
"properties": {
"packagePath": {
"description": "The SSIS package path.",
"type": "string"
"description": "The SSIS package path. Type: string (or Expression with resultType string).",
"type": "object"
}
},
"required": [
Expand Down