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

    Interface B2NotificationRule

    Legacy normalized B2 event notification rule shape.

    interface B2NotificationRule {
        eventTypes: string[];
        isEnabled: boolean;
        isSuspended?: boolean;
        name: string;
        suspensionReason?: string;
        targetConfiguration: B2NotificationTargetConfiguration;
    }
    Index
    eventTypes: string[]

    B2 event types that trigger the rule.

    isEnabled: boolean

    Whether the notification rule is enabled.

    isSuspended?: boolean

    Whether B2 has suspended delivery for the rule.

    name: string

    Unique notification rule name.

    suspensionReason?: string

    Provider-supplied suspension reason, when present.

    Webhook target configuration for the rule.