Class HdfsLinkedService
Hadoop Distributed File System (HDFS) 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.HdfsLinkedService/HdfsLinkedServiceConverter))]
public class HdfsLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
HdfsLinkedService(Object)
Initializes a new instance of HdfsLinkedService.
Declaration
public HdfsLinkedService (object url);
Parameters
|
System.Object
url
The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string). |
Exceptions
|
System.ArgumentNullException
|
Properties
AuthenticationType
Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
Declaration
public object AuthenticationType { 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
|
Password
Password for Windows authentication. 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
|
Url
The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
Declaration
public object Url { get; set; }
Property Value
|
System.Object
|
UserName
User name for Windows authentication. Type: string (or Expression with resultType string).
Declaration
public object UserName { get; set; }
Property Value
|
System.Object
|