Skip to content

Commit

Permalink
Add authHeaders to HTTP/REST/OData Linked Service, add MultiFactor to…
Browse files Browse the repository at this point in the history
… SFTP authenticationType (#13204)

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

* Fix PrettierCheck error
  • Loading branch information
yew authored Mar 5, 2021
1 parent 8fb7ed0 commit c0a7127
Showing 1 changed file with 14 additions and 1 deletion.
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

0 comments on commit c0a7127

Please sign in to comment.