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

    Interface AccountGrowth

    Stored-data growth aggregate for one account.

    interface AccountGrowth {
        accountId: string;
        egressBytes: number;
        firstBytes: number;
        growthBytes: number;
        growthPct: number | null;
        lastBytes: number;
    }
    Index
    accountId: string

    B2 account ID.

    egressBytes: number

    Total egress bytes across rows for the account.

    firstBytes: number

    First stored-bytes snapshot in the selected range.

    growthBytes: number

    Difference between last and first stored bytes.

    growthPct: number | null

    Percentage growth from the first snapshot, or null when no baseline exists.

    lastBytes: number

    Last stored-bytes snapshot in the selected range.