We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f46557 commit 136dbbaCopy full SHA for 136dbba
packages/clients/src/api/baremetal/v1/marshalling.gen.ts
@@ -92,6 +92,7 @@ export const unmarshalOS = (data: unknown): OS => {
92
93
return {
94
allowed: data.allowed,
95
+ customPartitioningSupported: data.custom_partitioning_supported,
96
enabled: data.enabled,
97
id: data.id,
98
licenseRequired: data.license_required,
packages/clients/src/api/baremetal/v1/types.gen.ts
@@ -243,6 +243,8 @@ export interface OS {
243
licenseRequired: boolean
244
/** Defines if a specific Organization is allowed to install this OS type. */
245
allowed: boolean
246
+ /** Defines if custom partitioning is supported by this OS. */
247
+ customPartitioningSupported: boolean
248
}
249
250
export interface Offer {
0 commit comments