Skip to main content

AzureBlobStorageConfig

AzureBlobStorageConfig represents the configuration that will be used if storage type is azure within the client usage.
It composes of container, endpoint and credentials.

Each instance is produced automatically when creating a new rac-delta client with azure storage type.


Structure

export interface AzureBlobStorageConfig extends BaseStorageConfig {
type: 'azure';
container: string;
endpoint: string;
credentials: {
accountName?: string;
accountKey?: string;
sasToken?: string;
};
}

Properties

PropertyTypeDescription
typeazureConst string that identifies this configuration as azure storage configuration.
containerstringContainer name of the storage.
endpointstringEndpoint to the Azure storage.
credentialsObjectCredentials object composed of account name, account key and sas token.