SftpServerLinkedService Constructors

Definition

Overloads

SftpServerLinkedService()

Initializes a new instance of the SftpServerLinkedService class.

SftpServerLinkedService(Object, IDictionary<String,Object>, IntegrationRuntimeReference, String, IDictionary<String,ParameterSpecification>, IList<Object>, Object, String, Object, SecretBase, Object, Object, SecretBase, SecretBase, Object, Object)

Initializes a new instance of the SftpServerLinkedService class.

SftpServerLinkedService()

Initializes a new instance of the SftpServerLinkedService class.

public SftpServerLinkedService ();
Public Sub New ()

Applies to

SftpServerLinkedService(Object, IDictionary<String,Object>, IntegrationRuntimeReference, String, IDictionary<String,ParameterSpecification>, IList<Object>, Object, String, Object, SecretBase, Object, Object, SecretBase, SecretBase, Object, Object)

Initializes a new instance of the SftpServerLinkedService class.

public SftpServerLinkedService (object host, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference connectVia = default, string description = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification> parameters = default, System.Collections.Generic.IList<object> annotations = default, object port = default, string authenticationType = default, object userName = default, Microsoft.Azure.Management.DataFactory.Models.SecretBase password = default, object encryptedCredential = default, object privateKeyPath = default, Microsoft.Azure.Management.DataFactory.Models.SecretBase privateKeyContent = default, Microsoft.Azure.Management.DataFactory.Models.SecretBase passPhrase = default, object skipHostKeyValidation = default, object hostKeyFingerprint = default);
new Microsoft.Azure.Management.DataFactory.Models.SftpServerLinkedService : obj * System.Collections.Generic.IDictionary<string, obj> * Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference * string * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification> * System.Collections.Generic.IList<obj> * obj * string * obj * Microsoft.Azure.Management.DataFactory.Models.SecretBase * obj * obj * Microsoft.Azure.Management.DataFactory.Models.SecretBase * Microsoft.Azure.Management.DataFactory.Models.SecretBase * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.SftpServerLinkedService
Public Sub New (host As Object, Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional connectVia As IntegrationRuntimeReference = Nothing, Optional description As String = Nothing, Optional parameters As IDictionary(Of String, ParameterSpecification) = Nothing, Optional annotations As IList(Of Object) = Nothing, Optional port As Object = Nothing, Optional authenticationType As String = Nothing, Optional userName As Object = Nothing, Optional password As SecretBase = Nothing, Optional encryptedCredential As Object = Nothing, Optional privateKeyPath As Object = Nothing, Optional privateKeyContent As SecretBase = Nothing, Optional passPhrase As SecretBase = Nothing, Optional skipHostKeyValidation As Object = Nothing, Optional hostKeyFingerprint As Object = Nothing)

Parameters

host
Object

The SFTP server host name. Type: string (or Expression with resultType string).

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

connectVia
IntegrationRuntimeReference

The integration runtime reference.

description
String

Linked service description.

parameters
IDictionary<String,ParameterSpecification>

Parameters for linked service.

annotations
IList<Object>

List of tags that can be used for describing the linked service.

port
Object

The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.

authenticationType
String

The authentication type to be used to connect to the FTP server. Possible values include: 'Basic', 'SshPublicKey', 'MultiFactor'

userName
Object

The username used to log on to the SFTP server. Type: string (or Expression with resultType string).

password
SecretBase

Password to logon the SFTP server for Basic authentication.

encryptedCredential
Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).

privateKeyPath
Object

The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).

privateKeyContent
SecretBase

Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.

passPhrase
SecretBase

The password to decrypt the SSH private key if the SSH private key is encrypted.

skipHostKeyValidation
Object

If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).

hostKeyFingerprint
Object

The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).

Applies to