Skip to content

Commit

Permalink
Change type of Ssis actitvity's packagePath, runtime, loggingLevel and (
Browse files Browse the repository at this point in the history
Azure#4939)

environmentPath from string to object, so that we can use expression for
these properties
  • Loading branch information
shawncx authored and AnuTalluri committed Feb 6, 2019
1 parent b425c51 commit d3b7129
Showing 1 changed file with 8 additions and 16 deletions.
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

0 comments on commit d3b7129

Please sign in to comment.