From b791ee80c02600ed4710ec8351fc97bf4b423b3e Mon Sep 17 00:00:00 2001 From: scaleway-bot Date: Wed, 20 Sep 2023 14:02:25 +0000 Subject: [PATCH] feat: update generated APIs --- packages/clients/src/api/instance/v1/types.gen.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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 }