Package version:

Interface TeradataLinkedService

Linked service for Teradata data source.

interface TeradataLinkedService {
    annotations?: any[];
    authenticationType?: string;
    characterSet?: any;
    connectionString?: any;
    connectVia?: IntegrationRuntimeReference;
    description?: string;
    encryptedCredential?: string;
    httpsPortNumber?: any;
    maxRespSize?: any;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    password?: SecretBaseUnion;
    portNumber?: any;
    server?: any;
    sslMode?: any;
    type: "Teradata";
    useDataEncryption?: any;
    username?: any;
    version?: string;
}

Hierarchy (view full)

Properties

annotations?: any[]

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

authenticationType?: string

AuthenticationType to be used for connection.

characterSet?: any

The character set to use for the connection. Type: string (or Expression with resultType string). Only applied for version 2.0.

connectionString?: any

Teradata ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only applied for version 1.0.

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.

httpsPortNumber?: any

The port numbers when connecting to server through HTTPS/TLS connections. Type: integer (or Expression with resultType integer). Only applied for version 2.0.

maxRespSize?: any

The maximum size of the response buffer for SQL requests, in bytes. Type: integer. Only applied for version 2.0.

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

Parameters for linked service.

password?: SecretBaseUnion

Password for authentication.

portNumber?: any

The port numbers when connecting to server through non HTTPS/TLS connections. Type: integer (or Expression with resultType integer). Only used for V2. Only applied for version 2.0.

server?: any

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

sslMode?: any

SSL mode for connection. Valid values including: “Disable”, “Allow”, “Prefer”, “Require”, “Verify-CA”, “Verify-Full”. Default value is “Verify-Full”. Type: string (or Expression with resultType string). Only applied for version 2.0.

type

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

useDataEncryption?: any

Specifies whether to encrypt all communication with the Teradata database. Allowed values are 0 or 1. This setting will be ignored for HTTPS/TLS connections. Type: integer (or Expression with resultType integer). Only applied for version 2.0.

username?: any

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

version?: string

Version of the linked service.