Package version:

Interface AzureBlobFSLinkedService

Azure Data Lake Storage Gen2 linked service.

interface AzureBlobFSLinkedService {
    accountKey?: any;
    annotations?: any[];
    azureCloudType?: any;
    connectVia?: IntegrationRuntimeReference;
    credential?: CredentialReference;
    description?: string;
    encryptedCredential?: string;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    sasToken?: SecretBaseUnion;
    sasUri?: any;
    servicePrincipalCredential?: SecretBaseUnion;
    servicePrincipalCredentialType?: any;
    servicePrincipalId?: any;
    servicePrincipalKey?: SecretBaseUnion;
    tenant?: any;
    type: "AzureBlobFS";
    url?: any;
    version?: string;
}

Hierarchy (view full)

Properties

accountKey?: any

Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).

annotations?: any[]

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

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).

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.

sasToken?: SecretBaseUnion

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

sasUri?: any

SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.

servicePrincipalCredential?: SecretBaseUnion

The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.

servicePrincipalCredentialType?: any

The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).

servicePrincipalId?: any

The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).

servicePrincipalKey?: SecretBaseUnion

The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.

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

url?: any

Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).

version?: string

Version of the linked service.