Show / Hide Table of Contents

Class GreenplumLinkedService

Greenplum Database linked service.

Inheritance
System.Object
LinkedService
GreenplumLinkedService
Inherited Members
LinkedService.AdditionalProperties
LinkedService.Annotations
LinkedService.ConnectVia
LinkedService.Description
LinkedService.Parameters
LinkedService.Version
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.GreenplumLinkedService/GreenplumLinkedServiceConverter))]
public class GreenplumLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService

Constructors

GreenplumLinkedService()

Initializes a new instance of GreenplumLinkedService.

Declaration
public GreenplumLinkedService ();

Properties

AuthenticationType

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

Declaration
public Nullable<Azure.Analytics.Synapse.Artifacts.Models.GreenplumAuthenticationType> AuthenticationType { get; set; }
Property Value
System.Nullable<GreenplumAuthenticationType>

CommandTimeout

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.

Declaration
public object CommandTimeout { get; set; }
Property Value
System.Object

ConnectionString

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

Declaration
public object ConnectionString { get; set; }
Property Value
System.Object

ConnectionTimeout

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.

Declaration
public object ConnectionTimeout { get; set; }
Property Value
System.Object

Database

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

Declaration
public object Database { 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

Host

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

Declaration
public object Host { get; set; }
Property Value
System.Object

Password

The Azure key vault secret reference of password in connection string. Type: string. Only used for V2. 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

Port

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

Declaration
public object Port { get; set; }
Property Value
System.Object

Pwd

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

Declaration
public Azure.Analytics.Synapse.Artifacts.Models.AzureKeyVaultSecretReference Pwd { get; set; }
Property Value
AzureKeyVaultSecretReference

SslMode

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.

Declaration
public object SslMode { get; set; }
Property Value
System.Object

Username

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

Declaration
public object Username { get; set; }
Property Value
System.Object

Back to top Azure SDK for .NET