From 348b53648f8274c71e5f3ab871cc5f360ef7ad7e Mon Sep 17 00:00:00 2001 From: Scaleway Bot Date: Mon, 16 Dec 2024 11:51:00 +0100 Subject: [PATCH] feat(marketplace): add description for the label field (#1662) Co-authored-by: Jonathan R. --- packages/clients/src/api/marketplace/v2/types.gen.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/clients/src/api/marketplace/v2/types.gen.ts b/packages/clients/src/api/marketplace/v2/types.gen.ts index 10a3c772f..593e52442 100644 --- a/packages/clients/src/api/marketplace/v2/types.gen.ts +++ b/packages/clients/src/api/marketplace/v2/types.gen.ts @@ -43,7 +43,10 @@ export interface Image { updatedAt?: Date /** Expiration date of this image. */ validUntil?: Date - /** Typically an identifier for a distribution (ex. "ubuntu_focal"). */ + /** + * Typically an identifier for a distribution (ex. "ubuntu_focal"). This label + * can be used in the image field of the server creation request. + */ label: string } @@ -56,7 +59,7 @@ export interface LocalImage { arch: string /** Availability Zone where this local image is available. */ zone: Zone - /** Image label this image belongs to. */ + /** This label can be used in the image field of the server creation request. */ label: string /** Type of this local image. */ type: LocalImageType