Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export class API extends ParentAPI {
/**
* List your Serverless SQL Database backups. List all Serverless SQL Database
* backups for a given Scaleway Project or Database. By default, the backups
* returned in the list are ordered by creation date in ascending order,
* returned in the list are ordered by creation date in descending order,
* though this can be modified via the order_by field.
*
* @param request - The request {@link ListDatabaseBackupsRequest}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export type DatabaseStatus =
| 'locked'

export type ListDatabaseBackupsRequestOrderBy =
| 'created_at_asc'
| 'created_at_desc'
| 'created_at_asc'

export type ListDatabasesRequestOrderBy =
| 'created_at_asc'
Expand Down