Package version:

Interface FtpServerLinkedService

A FTP server Linked Service.

interface FtpServerLinkedService {
    annotations?: any[];
    authenticationType?: string;
    connectVia?: IntegrationRuntimeReference;
    description?: string;
    enableServerCertificateValidation?: any;
    enableSsl?: any;
    encryptedCredential?: string;
    host: any;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    password?: SecretBaseUnion;
    port?: any;
    type: "FtpServer";
    userName?: any;
    version?: string;
}

Hierarchy (view full)

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.

enableServerCertificateValidation?: any

If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).

enableSsl?: any

If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).

encryptedCredential?: string

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.

host: any

Host name of the FTP server. Type: string (or Expression with resultType string).

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

Parameters for linked service.

password?: SecretBaseUnion

Password to logon the FTP server.

port?: any

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

type

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

userName?: any

Username to logon the FTP server. Type: string (or Expression with resultType string).

version?: string

Version of the linked service.