Class FtpServerLinkedService
A FTP server Linked Service.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.FtpServerLinkedService/FtpServerLinkedServiceConverter))]
public class FtpServerLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
FtpServerLinkedService(Object)
Initializes a new instance of FtpServerLinkedService.
Declaration
public FtpServerLinkedService (object host);
Parameters
|
System.Object
host
Host name of the FTP server. Type: string (or Expression with resultType string). |
Exceptions
|
System.ArgumentNullException
|
Properties
AuthenticationType
The authentication type to be used to connect to the FTP server.
Declaration
public Nullable<Azure.Analytics.Synapse.Artifacts.Models.FtpAuthenticationType> AuthenticationType { get; set; }
Property Value
|
System.Nullable<FtpAuthenticationType>
|
EnableServerCertificateValidation
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).
Declaration
public object EnableServerCertificateValidation { get; set; }
Property Value
|
System.Object
|
EnableSsl
If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
Declaration
public object EnableSsl { get; set; }
Property Value
|
System.Object
|
EncryptedCredential
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
Declaration
public object EncryptedCredential { get; set; }
Property Value
|
System.Object
|
Host
Host name of the FTP server. Type: string (or Expression with resultType string).
Declaration
public object Host { get; set; }
Property Value
|
System.Object
|
Password
Password to logon the FTP server. Please note SecretBase is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include AzureKeyVaultSecretReference and SecureString.
Declaration
public Azure.Analytics.Synapse.Artifacts.Models.SecretBase Password { get; set; }
Property Value
|
SecretBase
|
Port
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.
Declaration
public object Port { get; set; }
Property Value
|
System.Object
|
UserName
Username to logon the FTP server. Type: string (or Expression with resultType string).
Declaration
public object UserName { get; set; }
Property Value
|
System.Object
|