Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions packages/clients/src/api/baremetal/v1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ export const unmarshalOffer = (data: unknown): Offer => {
fee: data.fee ? unmarshalMoney(data.fee) : undefined,
id: data.id,
incompatibleOsIds: data.incompatible_os_ids,
maxBandwidth: data.max_bandwidth,
memories: unmarshalArrayOfObject(data.memories, unmarshalMemory),
name: data.name,
operationPath: data.operation_path,
Expand Down
5 changes: 5 additions & 0 deletions packages/clients/src/api/baremetal/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,11 @@ export interface Offer {
stock: OfferStock
/** Public bandwidth available (in bits/s) with the offer. */
bandwidth: number
/**
* Maximum public bandwidth available (in bits/s) depending on available
* options.
*/
maxBandwidth: number
/** Commercial range of the offer. */
commercialRange: string
/**
Expand Down