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

    Interface B2Bucket

    Legacy normalized B2 bucket shape retained for compatibility.

    interface B2Bucket {
        accountId: string;
        bucketId: string;
        bucketInfo: Record<string, string>;
        bucketName: string;
        bucketType: string;
        corsRules: B2CorsRule[];
        lifecycleRules: B2LifecycleRule[];
        options?: string[];
        revision: number;
    }
    Index
    accountId: string

    B2 account ID that owns the bucket.

    bucketId: string

    Stable B2 bucket ID.

    bucketInfo: Record<string, string>

    Custom bucket metadata key-value pairs.

    bucketName: string

    Human-readable B2 bucket name.

    bucketType: string

    B2 bucket type, such as allPrivate or allPublic.

    corsRules: B2CorsRule[]

    CORS rules configured on the bucket.

    lifecycleRules: B2LifecycleRule[]

    Lifecycle rules configured on the bucket.

    options?: string[]

    Additional provider-specific bucket options.

    revision: number

    B2 bucket revision number.