Package version:

Interface AzureTableStorageLinkedServiceTypeProperties

Azure Table Storage linked service properties.

interface AzureTableStorageLinkedServiceTypeProperties {
    accountKey?: AzureKeyVaultSecretReference;
    connectionString?: any;
    credential?: CredentialReference;
    encryptedCredential?: string;
    sasToken?: AzureKeyVaultSecretReference;
    sasUri?: any;
    serviceEndpoint?: any;
}

Hierarchy (view full)

Properties

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

connectionString?: any

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

credential?: CredentialReference

The credential reference containing authentication information.

encryptedCredential?: string

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

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.