Show / Hide Table of Contents

Class AzureDataExplorerLinkedService

Azure Data Explorer (Kusto) linked service.

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

Constructors

AzureDataExplorerLinkedService(Object, Object)

Initializes a new instance of AzureDataExplorerLinkedService.

Declaration
public AzureDataExplorerLinkedService (object endpoint, object database);
Parameters
System.Object endpoint

The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://<clusterName>.<regionName>.kusto.windows.net. Type: string (or Expression with resultType string).

System.Object database

Database name for connection. Type: string (or Expression with resultType string).

Exceptions
System.ArgumentNullException

endpoint or database is null.

Properties

Credential

The credential reference containing authentication information.

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

Database

Database name for connection. Type: string (or Expression with resultType string).

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

Endpoint

The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://<clusterName>.<regionName>.kusto.windows.net. Type: string (or Expression with resultType string).

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

ServicePrincipalId

The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).

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

ServicePrincipalKey

The key of the service principal used to authenticate against Kusto. 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 ServicePrincipalKey { get; set; }
Property Value
SecretBase

Tenant

The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).

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

Back to top Azure SDK for .NET