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

Fix WebActivity dynamic authentication #12384

Merged
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 @@ -5841,16 +5841,16 @@
"$ref": "../datafactory.json#/definitions/SecretBase"
},
"username": {
"description": "Web activity authentication user name for basic authentication or ClientID when used for ServicePrincipal",
"type": "string"
"description": "Web activity authentication user name for basic authentication or ClientID when used for ServicePrincipal. Type: string (or Expression with resultType string).",
"type": "object"
},
"password": {
"description": "Password for the PFX file or basic authentication / Secret when used for ServicePrincipal",
"$ref": "../datafactory.json#/definitions/SecretBase"
},
"resource": {
"description": "Resource for which Azure Auth token will be requested when using MSI Authentication.",
"type": "string"
"description": "Resource for which Azure Auth token will be requested when using MSI Authentication. Type: string (or Expression with resultType string).",
"type": "object"
},
"userTenant": {
"description": "TenantId for which Azure Auth token will be requested when using ServicePrincipal Authentication. Type: string (or Expression with resultType string).",
Expand Down