Class TeradataLinkedService
Linked service for Teradata data source.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.TeradataLinkedService/TeradataLinkedServiceConverter))]
public class TeradataLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
TeradataLinkedService()
Properties
AuthenticationType
AuthenticationType to be used for connection.
Declaration
public Nullable<Azure.Analytics.Synapse.Artifacts.Models.TeradataAuthenticationType> AuthenticationType { get; set; }
Property Value
|
System.Nullable<TeradataAuthenticationType>
|
CharacterSet
The character set to use for the connection. Type: string (or Expression with resultType string). Only applied for version 2.0.
Declaration
public object CharacterSet { get; set; }
Property Value
|
System.Object
|
ConnectionString
Teradata ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
Declaration
public object ConnectionString { 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
|
HttpsPortNumber
The port numbers when connecting to server through HTTPS/TLS connections. Type: integer (or Expression with resultType integer). Only applied for version 2.0.
Declaration
public object HttpsPortNumber { get; set; }
Property Value
|
System.Object
|
MaxRespSize
The maximum size of the response buffer for SQL requests, in bytes. Type: integer. Only applied for version 2.0.
Declaration
public object MaxRespSize { get; set; }
Property Value
|
System.Object
|
Password
Password for 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
|
PortNumber
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.
Declaration
public object PortNumber { get; set; }
Property Value
|
System.Object
|
Server
Server name for connection. Type: string (or Expression with resultType string).
Declaration
public object Server { get; set; }
Property Value
|
System.Object
|
SslMode
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.
Declaration
public object SslMode { get; set; }
Property Value
|
System.Object
|
UseDataEncryption
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.
Declaration
public object UseDataEncryption { get; set; }
Property Value
|
System.Object
|
Username
Username for authentication. Type: string (or Expression with resultType string).
Declaration
public object Username { get; set; }
Property Value
|
System.Object
|