diff --git a/packages/clients/src/api/instance/v1/types.gen.ts b/packages/clients/src/api/instance/v1/types.gen.ts index 02b61f92b..eb37b8a0a 100644 --- a/packages/clients/src/api/instance/v1/types.gen.ts +++ b/packages/clients/src/api/instance/v1/types.gen.ts @@ -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 }