Bagikan melalui


PrestoLinkedService Constructors

Definition

Overloads

PrestoLinkedService()

Initializes a new instance of the PrestoLinkedService class.

PrestoLinkedService(Object, Object, Object, String, IDictionary<String, Object>, IntegrationRuntimeReference, String, IDictionary<String, ParameterSpecification>, IList<Object>, Object, Object, SecretBase, Object, Object, Object, Object, Object, Object, Object)

Initializes a new instance of the PrestoLinkedService class.

PrestoLinkedService()

Initializes a new instance of the PrestoLinkedService class.

public PrestoLinkedService ();
Public Sub New ()

Applies to

PrestoLinkedService(Object, Object, Object, String, IDictionary<String, Object>, IntegrationRuntimeReference, String, IDictionary<String, ParameterSpecification>, IList<Object>, Object, Object, SecretBase, Object, Object, Object, Object, Object, Object, Object)

Initializes a new instance of the PrestoLinkedService class.

public PrestoLinkedService (object host, object serverVersion, object catalog, string authenticationType, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference connectVia = default, string description = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification> parameters = default, System.Collections.Generic.IList<object> annotations = default, object port = default, object username = default, Microsoft.Azure.Management.DataFactory.Models.SecretBase password = default, object enableSsl = default, object trustedCertPath = default, object useSystemTrustStore = default, object allowHostNameCNMismatch = default, object allowSelfSignedServerCert = default, object timeZoneID = default, object encryptedCredential = default);
new Microsoft.Azure.Management.DataFactory.Models.PrestoLinkedService : obj * obj * obj * string * System.Collections.Generic.IDictionary<string, obj> * Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference * string * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification> * System.Collections.Generic.IList<obj> * obj * obj * Microsoft.Azure.Management.DataFactory.Models.SecretBase * obj * obj * obj * obj * obj * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.PrestoLinkedService
Public Sub New (host As Object, serverVersion As Object, catalog As Object, authenticationType As String, Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional connectVia As IntegrationRuntimeReference = Nothing, Optional description As String = Nothing, Optional parameters As IDictionary(Of String, ParameterSpecification) = Nothing, Optional annotations As IList(Of Object) = Nothing, Optional port As Object = Nothing, Optional username As Object = Nothing, Optional password As SecretBase = Nothing, Optional enableSsl As Object = Nothing, Optional trustedCertPath As Object = Nothing, Optional useSystemTrustStore As Object = Nothing, Optional allowHostNameCNMismatch As Object = Nothing, Optional allowSelfSignedServerCert As Object = Nothing, Optional timeZoneID As Object = Nothing, Optional encryptedCredential As Object = Nothing)

Parameters

host
Object

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

serverVersion
Object

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

catalog
Object

The catalog context for all request against the server.

authenticationType
String

The authentication mechanism used to connect to the Presto server. Possible values include: 'Anonymous', 'LDAP'

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

connectVia
IntegrationRuntimeReference

The integration runtime reference.

description
String

Linked service description.

parameters
IDictionary<String,ParameterSpecification>

Parameters for linked service.

annotations
IList<Object>

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

port
Object

The TCP port that the Presto server uses to listen for client connections. The default value is 8080.

username
Object

The user name used to connect to the Presto server.

password
SecretBase

The password corresponding to the user name.

enableSsl
Object

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

trustedCertPath
Object

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.

useSystemTrustStore
Object

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

allowHostNameCNMismatch
Object

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.

allowSelfSignedServerCert
Object

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

timeZoneID
Object

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.

encryptedCredential
Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).

Applies to