Skip to content

Commit 136dbba

Browse files
authored
feat: add field custom_partitioning_supported to OS (#1419)
1 parent 6f46557 commit 136dbba

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/clients/src/api/baremetal/v1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ export const unmarshalOS = (data: unknown): OS => {
9292

9393
return {
9494
allowed: data.allowed,
95+
customPartitioningSupported: data.custom_partitioning_supported,
9596
enabled: data.enabled,
9697
id: data.id,
9798
licenseRequired: data.license_required,

packages/clients/src/api/baremetal/v1/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,8 @@ export interface OS {
243243
licenseRequired: boolean
244244
/** Defines if a specific Organization is allowed to install this OS type. */
245245
allowed: boolean
246+
/** Defines if custom partitioning is supported by this OS. */
247+
customPartitioningSupported: boolean
246248
}
247249

248250
export interface Offer {

0 commit comments

Comments
 (0)