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

    Interface CorsRuleInput

    CORS rule input accepted by create/update bucket tools.

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

    Request headers allowed by the CORS rule.

    allowedOperations: string[]

    B2/S3 operations allowed by the CORS rule.

    allowedOrigins: string[]

    Origins allowed to make matching browser requests.

    corsRuleName: string

    Unique rule name shown in B2 bucket metadata.

    exposeHeaders?: string[] | null

    Response headers browsers may expose to callers.

    maxAgeSeconds: number

    Browser preflight cache lifetime in seconds.