@backblaze-labs/b2-sdk - v0.1.0
    Preparing search index...

    Interface StorageApiInfo

    Configuration for the B2 Cloud Storage API returned during authorization.

    interface StorageApiInfo {
        absoluteMinimumPartSize: number;
        allowed: AllowedInfo;
        apiUrl: string;
        bucketId: BucketId | null;
        bucketName: string | null;
        downloadUrl: string;
        infoType: "storageApi";
        namePrefix: string | null;
        recommendedPartSize: number;
        s3ApiUrl: string;
    }
    Index

    Properties

    absoluteMinimumPartSize: number

    Minimum allowed part size for large file uploads, in bytes.

    allowed: AllowedInfo

    Capabilities and scope of the authorized key.

    apiUrl: string

    Base URL for B2 API calls.

    bucketId: BucketId | null

    Bucket ID this key is restricted to, or null if unrestricted.

    bucketName: string | null

    Bucket name this key is restricted to, or null if unrestricted.

    downloadUrl: string

    Base URL for file downloads.

    infoType: "storageApi"

    Discriminator indicating this is storage API info. Always 'storageApi'.

    namePrefix: string | null

    File name prefix this key is restricted to, or null if unrestricted.

    recommendedPartSize: number

    Recommended part size for large file uploads, in bytes.

    s3ApiUrl: string

    Base URL for the S3-compatible API.