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

Add authHeaders to HTTP/REST/OData Linked Service, add MultiFactor to SFTP authenticationType #13204

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 @@ -1762,6 +1762,10 @@
"description": "Password of the OData service.",
"$ref": "../datafactory.json#/definitions/SecretBase"
},
"authHeaders": {
"type": "object",
"description": "The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object)."
},
"tenant": {
"type": "object",
"description": "Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string)."
Expand Down Expand Up @@ -2636,6 +2640,10 @@
"description": "The password used in Basic authentication type.",
"$ref": "../datafactory.json#/definitions/SecretBase"
},
"authHeaders": {
"type": "object",
"description": "The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object)."
},
"servicePrincipalId": {
"description": "The application's client ID used in AadServicePrincipal authentication type.",
"type": "object"
Expand Down Expand Up @@ -2878,6 +2886,10 @@
"description": "Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.",
"$ref": "../datafactory.json#/definitions/SecretBase"
},
"authHeaders": {
"type": "object",
"description": "The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object)."
},
"embeddedCertData": {
"type": "object",
"description": "Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string)."
Expand Down Expand Up @@ -3003,7 +3015,8 @@
"type": "string",
"enum": [
"Basic",
"SshPublicKey"
"SshPublicKey",
"MultiFactor"
],
"x-ms-enum": {
"name": "SftpAuthenticationType",
Expand Down