Skip to content
Merged
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
12 changes: 11 additions & 1 deletion packages/clients/src/api/instance/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1174,12 +1174,22 @@ export type DeleteImageRequest = {
export type ListSnapshotsRequest = {
/** Zone to target. If none is passed will use default zone from the config. */
zone?: Zone
/** List snapshots only for this Organization ID. */
organization?: string
/** List snapshots only for this Project ID. */
project?: string
/**
* Number of snapshots returned per page (positive integer lower or equal to
* 100).
*/
perPage?: number
/** Page to be returned. */
page?: number
/** List snapshots of the requested name. */
name?: string
project?: string
/** List snapshots that have the requested tag. */
tags?: string
/** List snapshots originating only from this volume. */
baseVolumeId?: string
}

Expand Down