Package version:

Interface AzureDataExplorerLinkedService

Azure Data Explorer (Kusto) linked service.

interface AzureDataExplorerLinkedService {
    annotations?: any[];
    connectVia?: IntegrationRuntimeReference;
    credential?: CredentialReference;
    database: any;
    description?: string;
    endpoint: any;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    servicePrincipalId?: any;
    servicePrincipalKey?: SecretBaseUnion;
    tenant?: any;
    type: "AzureDataExplorer";
    version?: string;
}

Hierarchy (view full)

Properties

annotations?: any[]

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

The integration runtime reference.

credential?: CredentialReference

The credential reference containing authentication information.

database: any

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

description?: string

Linked service description.

endpoint: any

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

parameters?: {
    [propertyName: string]: ParameterSpecification;
}

Parameters for linked service.

servicePrincipalId?: any

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

servicePrincipalKey?: SecretBaseUnion

The key of the service principal used to authenticate against Kusto.

tenant?: any

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

type

Polymorphic discriminator, which specifies the different types this object can be

version?: string

Version of the linked service.