-
Notifications
You must be signed in to change notification settings - Fork 5.7k
[Azure Data Factory] Add winauth support in SSIS Activity #5031
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
Changes from all commits
aded924
38fb817
43c2dab
4b8b88b
1c6ff8e
c64890e
2b9f297
0158cf7
af8bffa
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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" | ||
|
|
@@ -2136,6 +2143,28 @@ | |
| "value" | ||
| ] | ||
| }, | ||
| "SSISExecutionCredential": { | ||
| "description": "SSIS package execution credential.", | ||
| "properties": { | ||
| "domain": { | ||
| "type": "object", | ||
| "description": "Domain for windows authentication." | ||
| }, | ||
| "userName": { | ||
| "type": "object", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this be string?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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" | ||
|
|
@@ -2200,6 +2207,28 @@ | |
| "value" | ||
| ] | ||
| }, | ||
| "SSISExecutionCredential": { | ||
| "description": "SSIS package execution credential.", | ||
| "properties": { | ||
| "domain": { | ||
| "type": "object", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this be string?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above. |
||
| "description": "Domain for windows authentication." | ||
| }, | ||
| "userName": { | ||
| "type": "object", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this be string?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be string?
There was a problem hiding this comment.
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.