Show / Hide Table of Contents

Class AzureDatabricksDeltaLakeLinkedService

Azure Databricks Delta Lake linked service.

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

Constructors

AzureDatabricksDeltaLakeLinkedService(Object, SecretBase)

Initializes a new instance of AzureDatabricksDeltaLakeLinkedService.

Declaration
public AzureDatabricksDeltaLakeLinkedService (object domain, Azure.Analytics.Synapse.Artifacts.Models.SecretBase accessToken);
Parameters
System.Object domain

<REGION>.azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).

SecretBase accessToken

Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference. 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.

Exceptions
System.ArgumentNullException

domain or accessToken is null.

Properties

AccessToken

Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference. 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 AccessToken { get; set; }
Property Value
SecretBase

ClusterId

The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).

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

Credential

The credential reference containing authentication information.

Declaration
public Azure.Analytics.Synapse.Artifacts.Models.CredentialReference Credential { get; set; }
Property Value
CredentialReference

Domain

<REGION>.azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).

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

Back to top Azure SDK for .NET