Package version:

Interface GreenplumLinkedService

Greenplum Database linked service.

interface GreenplumLinkedService {
    annotations?: any[];
    authenticationType?: string;
    commandTimeout?: any;
    connectionString?: any;
    connectionTimeout?: any;
    connectVia?: IntegrationRuntimeReference;
    database?: any;
    description?: string;
    encryptedCredential?: string;
    host?: any;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    port?: any;
    pwd?: AzureKeyVaultSecretReference;
    sslMode?: any;
    type: "Greenplum";
    username?: any;
    version?: string;
}

Hierarchy (view full)

Properties

annotations?: any[]

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

authenticationType?: string

The authentication type to use. Type: string. Only used for V2.

commandTimeout?: any

The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer. Only used for V2.

connectionString?: any

An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.

connectionTimeout?: any

The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.

The integration runtime reference.

database?: any

Database name for connection. Type: string. Only used for V2.

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. Only used for V2.

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

Parameters for linked service.

port?: any

The port for the connection. Type: integer. Only used for V2.

The Azure key vault secret reference of password in connection string.

sslMode?: any

SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.

type

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

username?: any

Username for authentication. Type: string. Only used for V2.

version?: string

Version of the linked service.