Package version:

Interface HdfsLinkedService

Hadoop Distributed File System (HDFS) linked service.

interface HdfsLinkedService {
    annotations?: any[];
    authenticationType?: any;
    connectVia?: IntegrationRuntimeReference;
    description?: string;
    encryptedCredential?: string;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    password?: SecretBaseUnion;
    type: "Hdfs";
    url: any;
    userName?: any;
    version?: string;
}

Hierarchy (view full)

Properties

annotations?: any[]

List of tags that can be used for describing the linked service.

authenticationType?: any

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

The integration runtime reference.

description?: string

Linked service description.

encryptedCredential?: string

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

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

Parameters for linked service.

password?: SecretBaseUnion

Password for Windows authentication.

type

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

url: any

The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).

userName?: any

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

version?: string

Version of the linked service.