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

    Interface B2S3PresignObjectUrlOptions

    Options for generating a presigned GetObject or PutObject URL.

    interface B2S3PresignObjectUrlOptions {
        bucket: string;
        contentType?: string;
        expiresIn: number;
        key: string;
        operation: "PutObject" | "GetObject";
        versionId?: string;
    }
    Index
    bucket: string

    Bucket name for the presigned request.

    contentType?: string

    Required content type for PutObject URLs.

    expiresIn: number

    Expiry duration in seconds.

    key: string

    Object key for the presigned request.

    operation: "PutObject" | "GetObject"

    S3 operation to presign.

    versionId?: string

    Optional version ID for GetObject URLs.