Show / Hide Table of Contents

Class HiveLinkedService

Hive Server linked service.

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

Constructors

HiveLinkedService(Object, HiveAuthenticationType)

Initializes a new instance of HiveLinkedService.

Declaration
public HiveLinkedService (object host, Azure.Analytics.Synapse.Artifacts.Models.HiveAuthenticationType authenticationType);
Parameters
System.Object host

IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).

HiveAuthenticationType authenticationType

The authentication method used to access the Hive server.

Exceptions
System.ArgumentNullException

host 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 method used to access the Hive server.

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

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

IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).

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

HttpPath

The partial URL corresponding to the Hive server.

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

Password

The password corresponding to the user name that you provided in the Username field 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 Hive server uses to listen for client connections.

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

ServerType

The type of Hive server.

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

ServiceDiscoveryMode

true to indicate using the ZooKeeper service, false not.

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

ThriftTransportProtocol

The transport protocol to use in the Thrift layer.

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

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

UseNativeQuery

Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.

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

Username

The user name that you use to access Hive 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

ZooKeeperNameSpace

The namespace on ZooKeeper under which Hive Server 2 nodes are added.

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

Back to top Azure SDK for .NET