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
2 changes: 2 additions & 0 deletions packages_generated/baremetal/src/v1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
8 changes: 8 additions & 0 deletions packages_generated/baremetal/src/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down
Loading