Interface ListBackupsOptions

The options for listing backups.

interface ListBackupsOptions {
    indexName?: string;
    limit?: number;
    paginationToken?: string;
}

Properties

indexName?: string

The index name to list backups for. If not provided, all project backups will be listed.

limit?: number

Maximum number of backups to return.

paginationToken?: string

Token used for pagination to retrieve the next page of results.