@backblaze-labs/b2-mcp
    Preparing search index...

    Interface B2S3DownloadedObject

    Downloaded object metadata and optional body stream.

    interface B2S3DownloadedObject {
        body?: B2S3ObjectBody;
        contentLength?: number;
        contentType?: string;
        etag?: string;
        key: string;
        lastModified?: Date;
        metadata: Record<string, string>;
        versionId?: string;
    }
    Index

    Optional streaming response body.

    contentLength?: number

    Object content length in bytes.

    contentType?: string

    Object content type returned by S3.

    etag?: string

    Object ETag.

    key: string

    Object key requested by the caller.

    lastModified?: Date

    Object last-modified timestamp.

    metadata: Record<string, string>

    User metadata returned with the object.

    versionId?: string

    S3 version ID returned by the provider.