Package version:

Interface AzureBlobStorageLinkedService

The azure blob storage linked service.

interface AzureBlobStorageLinkedService {
    accountKey?: AzureKeyVaultSecretReference;
    accountKind?: any;
    annotations?: any[];
    authenticationType?: string;
    azureCloudType?: any;
    connectionString?: any;
    connectVia?: IntegrationRuntimeReference;
    containerUri?: any;
    credential?: CredentialReference;
    description?: string;
    encryptedCredential?: string;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    sasToken?: AzureKeyVaultSecretReference;
    sasUri?: any;
    serviceEndpoint?: any;
    servicePrincipalId?: any;
    servicePrincipalKey?: SecretBaseUnion;
    tenant?: any;
    type: "AzureBlobStorage";
    version?: string;
}

Hierarchy (view full)

Properties

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

accountKind?: any

Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).

annotations?: any[]

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

authenticationType?: string

The type used for authentication. Type: string.

azureCloudType?: any

Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).

connectionString?: any

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

The integration runtime reference.

containerUri?: any

Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).

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 Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.

serviceEndpoint?: any

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

servicePrincipalId?: any

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

servicePrincipalKey?: SecretBaseUnion

The key of the service principal used to authenticate against Azure SQL Data Warehouse.

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.