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

    Interface B2CorsRule

    Legacy normalized B2 CORS rule shape retained for compatibility.

    interface B2CorsRule {
        allowedHeaders: string[];
        allowedOperations: string[];
        allowedOrigins: string[];
        corsRuleName: string;
        exposeHeaders?: string[];
        maxAgeSeconds: number;
    }
    Index
    allowedHeaders: string[]

    Request headers allowed by the rule.

    allowedOperations: string[]

    B2 operations allowed by the rule.

    allowedOrigins: string[]

    Origins allowed by the rule.

    corsRuleName: string

    Unique CORS rule name.

    exposeHeaders?: string[]

    Response headers exposed to browsers by the rule.

    maxAgeSeconds: number

    Browser preflight cache lifetime in seconds.