Package version:

Interface CassandraLinkedService

Linked service for Cassandra data source.

interface CassandraLinkedService {
    annotations?: any[];
    authenticationType?: any;
    connectVia?: IntegrationRuntimeReference;
    description?: string;
    encryptedCredential?: string;
    host: any;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    password?: SecretBaseUnion;
    port?: any;
    type: "Cassandra";
    username?: any;
    version?: string;
}

Hierarchy (view full)

Properties

annotations?: any[]

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

authenticationType?: any

AuthenticationType to be used for connection. 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.

host: any

Host name for connection. Type: string (or Expression with resultType string).

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

Parameters for linked service.

password?: SecretBaseUnion

Password for authentication.

port?: any

The port for the connection. Type: integer (or Expression with resultType integer).

type

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

username?: any

Username for authentication. Type: string (or Expression with resultType string).

version?: string

Version of the linked service.