Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -2041,6 +2041,13 @@
"description": "The environment path to execute the SSIS package.",
"type": "string"
},
"executionCredential": {
"description": "The package execution credential.",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/SSISExecutionCredential"
}
},
"connectVia": {
"description": "The integration runtime reference.",
"$ref": "../datafactory.json#/definitions/IntegrationRuntimeReference"
Expand Down Expand Up @@ -2136,6 +2143,28 @@
"value"
]
},
"SSISExecutionCredential": {
"description": "SSIS package execution credential.",
"properties": {
"domain": {
"type": "object",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be string?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be object, as we need support string or expression.

"description": "Domain for windows authentication."
},
"userName": {
"type": "object",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be string?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above.

"description": "UseName for windows authentication."
},
"password": {
"$ref": "../datafactory.json#/definitions/SecureString",
"description": "Password for windows authentication."
}
},
"required": [
"domain",
"userName",
"password"
]
},
"CustomActivity": {
"description": "Custom activity type.",
"x-ms-discriminator-value": "Custom",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2105,6 +2105,13 @@
"description": "The environment path to execute the SSIS package. Type: string (or Expression with resultType string).",
"type": "object"
},
"executionCredential": {
"description": "The package execution credential.",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/SSISExecutionCredential"
}
},
"connectVia": {
"description": "The integration runtime reference.",
"$ref": "../datafactory.json#/definitions/IntegrationRuntimeReference"
Expand Down Expand Up @@ -2200,6 +2207,28 @@
"value"
]
},
"SSISExecutionCredential": {
"description": "SSIS package execution credential.",
"properties": {
"domain": {
"type": "object",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be string?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above.

"description": "Domain for windows authentication."
},
"userName": {
"type": "object",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be string?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above.

"description": "UseName for windows authentication."
},
"password": {
"$ref": "../datafactory.json#/definitions/SecureString",
"description": "Password for windows authentication."
}
},
"required": [
"domain",
"userName",
"password"
]
},
"CustomActivity": {
"description": "Custom activity type.",
"x-ms-discriminator-value": "Custom",
Expand Down