Package version:

Interface AzureTableStorageLinkedService

The azure table storage linked service.

interface AzureTableStorageLinkedService {
    accountKey?: AzureKeyVaultSecretReference;
    annotations?: any[];
    connectionString?: any;
    connectVia?: IntegrationRuntimeReference;
    credential?: CredentialReference;
    description?: string;
    encryptedCredential?: string;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    sasToken?: AzureKeyVaultSecretReference;
    sasUri?: any;
    serviceEndpoint?: any;
    type: "AzureTableStorage";
    version?: string;
}

Hierarchy (view full)

Properties

The Azure key vault secret reference of accountKey in connection string.

annotations?: any[]

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

connectionString?: any

The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.

The integration runtime reference.

credential?: CredentialReference

The credential reference containing authentication information.

description?: string

Linked service description.

encryptedCredential?: string

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.

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

Parameters for linked service.

The Azure key vault secret reference of sasToken in sas uri.

sasUri?: any

SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.

serviceEndpoint?: any

Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property.

type

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

version?: string

Version of the linked service.