HdfsLinkedService Constructors

Definition

Overloads

HdfsLinkedService()

Initializes a new instance of the HdfsLinkedService class.

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

Initializes a new instance of the HdfsLinkedService class.

HdfsLinkedService()

Initializes a new instance of the HdfsLinkedService class.

public HdfsLinkedService ();
Public Sub New ()

Applies to

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

Initializes a new instance of the HdfsLinkedService class.

public HdfsLinkedService (object url, 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 authenticationType = default, object encryptedCredential = default, object userName = default, Microsoft.Azure.Management.DataFactory.Models.SecretBase password = default);
new Microsoft.Azure.Management.DataFactory.Models.HdfsLinkedService : 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 * obj * obj * Microsoft.Azure.Management.DataFactory.Models.SecretBase -> Microsoft.Azure.Management.DataFactory.Models.HdfsLinkedService
Public Sub New (url 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 authenticationType As Object = Nothing, Optional encryptedCredential As Object = Nothing, Optional userName As Object = Nothing, Optional password As SecretBase = Nothing)

Parameters

url
Object

The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . 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.

authenticationType
Object

Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).

encryptedCredential
Object

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

userName
Object

User name for Windows authentication. Type: string (or Expression with resultType string).

password
SecretBase

Password for Windows authentication.

Applies to