Stone.js API
    Preparing search index...

    Options for the Azure Blob Storage driver.

    interface AzureBlobDriverOptions {
        accountKey?: string;
        accountName?: string;
        baseUrl?: string;
        connectionString?: string;
        container: string;
        name?: string;
        root?: string;
        signedUrlExpiresIn?: number;
    }

    Hierarchy

    • FileSystemOptions
      • AzureBlobDriverOptions
    Index
    accountKey?: string

    The storage account key (required for signed URLs).

    accountName?: string

    The storage account name (required for signed URLs when no connection string).

    baseUrl?: string

    An optional base URL used by FileSystem.url for public assets.

    connectionString?: string

    A full connection string (alternative to account name + key).

    container: string

    The container name (used as the disk's "bucket").

    name?: string

    The disk name.

    root?: string

    The root directory (local) or bucket/prefix (object store) all paths are resolved against.

    signedUrlExpiresIn?: number

    Default expiry (seconds) for signed URLs. Defaults to 900 (15 min).