Show / Hide Table of Contents

Class PrestoLinkedService

Presto server linked service.

Inheritance
System.Object
LinkedService
PrestoLinkedService
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.PrestoLinkedService/PrestoLinkedServiceConverter))]
public class PrestoLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService

Constructors

PrestoLinkedService(Object, Object, Object, PrestoAuthenticationType)

Initializes a new instance of PrestoLinkedService.

Declaration
public PrestoLinkedService (object host, object serverVersion, object catalog, Azure.Analytics.Synapse.Artifacts.Models.PrestoAuthenticationType authenticationType);
Parameters
System.Object host

The IP address or host name of the Presto server. (i.e. 192.168.222.160).

System.Object serverVersion

The version of the Presto server. (i.e. 0.148-t).

System.Object catalog

The catalog context for all request against the server.

PrestoAuthenticationType authenticationType

The authentication mechanism used to connect to the Presto server.

Exceptions
System.ArgumentNullException

host, serverVersion or catalog is null.

Properties

AllowHostNameCNMismatch

Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.

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

AllowSelfSignedServerCert

Specifies whether to allow self-signed certificates from the server. The default value is false.

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

AuthenticationType

The authentication mechanism used to connect to the Presto server.

Declaration
public Azure.Analytics.Synapse.Artifacts.Models.PrestoAuthenticationType AuthenticationType { get; set; }
Property Value
PrestoAuthenticationType

Catalog

The catalog context for all request against the server.

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

EnableSsl

Specifies whether the connections to the server are encrypted using SSL. The default value is false.

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

The IP address or host name of the Presto server. (i.e. 192.168.222.160).

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

Password

The password corresponding to the user name. 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 TCP port that the Presto server uses to listen for client connections. The default value is 8080.

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

ServerVersion

The version of the Presto server. (i.e. 0.148-t).

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

TimeZoneID

The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.

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

TrustedCertPath

The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.

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

Username

The user name used to connect to the Presto server.

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

UseSystemTrustStore

Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.

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

Back to top Azure SDK for .NET