Interface ListRequestObject

Options for a list operation, mirroring the Durable Object storage.list API.

interface ListRequestObject {
    limit?: null | number;
    noCache?: boolean;
    prefix?: string;
    reverse?: boolean;
}

Properties

limit?: null | number

Maximum number of entries to return.

noCache?: boolean

Bypass any read cache for this listing.

prefix?: string

Only return keys starting with this prefix.

reverse?: boolean

Return entries in descending key order.

Generated using TypeDoc