Show / Hide Table of Contents

Class SapHanaLinkedService

SAP HANA Linked Service.

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

Constructors

SapHanaLinkedService(Object)

Initializes a new instance of SapHanaLinkedService.

Declaration
public SapHanaLinkedService (object server);
Parameters
System.Object server

Host name of the SAP HANA server. Type: string (or Expression with resultType string).

Exceptions
System.ArgumentNullException

server is null.

Properties

AuthenticationType

The authentication type to be used to connect to the SAP HANA server.

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

ConnectionString

SAP HANA 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

Password

Password to access the SAP HANA server. 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

Server

Host name of the SAP HANA server. Type: string (or Expression with resultType string).

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

UserName

Username to access the SAP HANA server. Type: string (or Expression with resultType string).

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

Back to top Azure SDK for .NET