diff --git a/packages_generated/baremetal/src/v1/marshalling.gen.ts b/packages_generated/baremetal/src/v1/marshalling.gen.ts index 6c256b316..c0e2af008 100644 --- a/packages_generated/baremetal/src/v1/marshalling.gen.ts +++ b/packages_generated/baremetal/src/v1/marshalling.gen.ts @@ -367,6 +367,8 @@ export const unmarshalOS = (data: unknown): OS => { return { allowed: data.allowed, + cloudInitSupported: data.cloud_init_supported, + cloudInitVersion: data.cloud_init_version, customPartitioningSupported: data.custom_partitioning_supported, enabled: data.enabled, id: data.id, diff --git a/packages_generated/baremetal/src/v1/types.gen.ts b/packages_generated/baremetal/src/v1/types.gen.ts index 127396458..20e6b2038 100644 --- a/packages_generated/baremetal/src/v1/types.gen.ts +++ b/packages_generated/baremetal/src/v1/types.gen.ts @@ -671,6 +671,14 @@ export interface OS { * Defines if custom partitioning is supported by this OS. */ customPartitioningSupported: boolean + /** + * Defines if cloud-init is supported by this OS. + */ + cloudInitSupported: boolean + /** + * Defines the cloud-init API version used by this OS. + */ + cloudInitVersion?: string /** * Zone in which is the OS is available. */