Package version:

Interface SftpServerLinkedService

A linked service for an SSH File Transfer Protocol (SFTP) server.

Hierarchy

Properties

annotations?: any[]

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

authenticationType?: string

The authentication type to be used to connect to the FTP server.

The integration runtime reference.

description?: string

Linked service description.

encryptedCredential?: any

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

host: any

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

hostKeyFingerprint?: any

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

parameters?: {
    [propertyName: string]: ParameterSpecification;
}

Parameters for linked service.

Type declaration

passPhrase?: SecretBaseUnion

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

password?: SecretBaseUnion

Password to logon the SFTP server for Basic authentication.

port?: any

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.

privateKeyContent?: SecretBaseUnion

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.

privateKeyPath?: any

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).

skipHostKeyValidation?: any

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

type: "Sftp"

Polymorphic discriminator, which specifies the different types this object can be

userName?: any

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

Generated using TypeDoc