@@ -16,6 +16,7 @@ The following attributes are exported:
1616* ` launch_mode ` - Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
1717 * `NATIVE` - VM instances launch with iSCSI boot and VFIO devices. The default value for Oracle-provided images.
1818 * `EMULATED` - VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.
19+ * `PARAVIRTUALIZED` - VM instances launch with paravirtualized devices using virtio drivers.
1920 * `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
2021* ` launch_options ` -
2122 * `boot_volume_type` - Emulation type for volume.
@@ -29,7 +30,8 @@ The following attributes are exported:
2930 * `UEFI_64` - Boot VM using UEFI style firmware compatible with 64 bit operating systems. This is the default for Oracle provided images.
3031 * `network_type` - Emulation type for NIC.
3132 * `E1000` - Emulated Gigabit ethernet controller. Compatible with Linux e1000 network driver.
32- * `VFIO` - Direct attached Virtual Function network controller. Default for Oracle provided images.
33+ * `VFIO` - Direct attached Virtual Function network controller. Default for Oracle provided images.
34+ * `PARAVIRTUALIZED` - VM instances launch with paravirtualized devices using virtio drivers.
3335 * `remote_data_volume_type` - Emulation type for volume.
3436 * `ISCSI` - ISCSI attached block storage device. This is the default for Boot Volumes and Remote Block Storage volumes on Oracle provided images.
3537 * `SCSI` - Emulated SCSI disk.
@@ -79,6 +81,7 @@ The following arguments are supported:
7981* ` launch_mode ` - (Optional) Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
8082 * `NATIVE` - VM instances launch with iSCSI boot and VFIO devices. The default value for Oracle-provided images.
8183 * `EMULATED` - VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.
84+ * `PARAVIRTUALIZED` - VM instances launch with paravirtualized devices using virtio drivers.
8285 * `CUSTOM` - VM instances launch with custom configuration settings specified in the `LaunchOptions` parameter.
8386
8487
@@ -164,11 +167,13 @@ resource "oci_core_image" "test_image" {
164167Gets a list of images.
165168
166169### List Operation
167- Lists the available images in the specified compartment.
168- If you specify a value for the ` sortBy ` parameter, Oracle-provided images appear first in the list, followed by custom images.
169- For more
170- information about images, see
171- [ Managing Custom Images] ( https://docs.us-phoenix-1.oraclecloud.com/Content/Compute/Tasks/managingcustomimages.htm ) .
170+ Lists the available images in the specified compartment, including both
171+ [ Oracle-provided images] ( https://docs.us-phoenix-1.oraclecloud.com/Content/Compute/References/images.htm ) and
172+ [ custom images] ( https://docs.us-phoenix-1.oraclecloud.com/Content/Compute/Tasks/managingcustomimages.htm ) that have
173+ been created. The list of images returned is ordered to first show all
174+ Oracle-provided images, then all custom images.
175+
176+ The order of images returned may change when new images are released.
172177
173178The following arguments are supported:
174179
0 commit comments