docs/ImageProperties.md in ionoscloud-6.0.0.beta.1 vs docs/ImageProperties.md in ionoscloud-6.0.0.beta.2

- old
+ new

@@ -19,10 +19,12 @@ | **disc_scsi_hot_plug** | **Boolean** | Is capable of SCSI drive hot plug (no reboot required) | [optional] | | **disc_scsi_hot_unplug** | **Boolean** | Is capable of SCSI drive hot unplug (no reboot required). This works only for non-Windows virtual Machines. | [optional] | | **licence_type** | **String** | OS type of this Image | | | **image_type** | **String** | This indicates the type of image | [optional][readonly] | | **public** | **Boolean** | Indicates if the image is part of the public repository or not | [optional][readonly] | +| **image_aliases** | **Array<String>** | List of image aliases mapped for this Image | [optional][readonly] | +| **cloud_init** | **String** | Cloud init compatibility | [optional] | ## Example ```ruby require 'ionoscloud' @@ -42,9 +44,11 @@ disc_virtio_hot_unplug: true, disc_scsi_hot_plug: true, disc_scsi_hot_unplug: true, licence_type: LINUX, image_type: HDD, - public: true + public: true, + image_aliases: null, + cloud_init: V1 ) ```