FtpServerLinkedService Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FtpServerLinkedService() |
Initializes a new instance of the FtpServerLinkedService class. |
FtpServerLinkedService(Object, IDictionary<String,Object>, IntegrationRuntimeReference, String, IDictionary<String,ParameterSpecification>, IList<Object>, Object, String, Object, SecretBase, Object, Object, Object) |
Initializes a new instance of the FtpServerLinkedService class. |
FtpServerLinkedService()
Initializes a new instance of the FtpServerLinkedService class.
public FtpServerLinkedService ();
Public Sub New ()
Applies to
FtpServerLinkedService(Object, IDictionary<String,Object>, IntegrationRuntimeReference, String, IDictionary<String,ParameterSpecification>, IList<Object>, Object, String, Object, SecretBase, Object, Object, Object)
Initializes a new instance of the FtpServerLinkedService class.
public FtpServerLinkedService (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 enableSsl = default, object enableServerCertificateValidation = default);
new Microsoft.Azure.Management.DataFactory.Models.FtpServerLinkedService : 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 * obj -> Microsoft.Azure.Management.DataFactory.Models.FtpServerLinkedService
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 enableSsl As Object = Nothing, Optional enableServerCertificateValidation As Object = Nothing)
Parameters
- host
- Object
Host name of the FTP server. 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.
- port
- Object
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.
- authenticationType
- String
The authentication type to be used to connect to the FTP server. Possible values include: 'Basic', 'Anonymous'
- userName
- Object
Username to logon the FTP server. Type: string (or Expression with resultType string).
- password
- SecretBase
Password to logon the FTP server.
- encryptedCredential
- Object
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
- enableSsl
- Object
If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
- enableServerCertificateValidation
- Object
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).
Applies to
Azure SDK for .NET