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
7 changes: 5 additions & 2 deletions packages/clients/src/api/marketplace/v2/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand All @@ -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
Expand Down
Loading