1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Core
  5. getImage
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.Core.getImage

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

This data source provides details about a specific Image resource in Oracle Cloud Infrastructure Core service.

Gets the specified image.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testImage = oci.Core.getImage({
    imageId: testImageOciCoreImage.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_image = oci.Core.get_image(image_id=test_image_oci_core_image["id"])
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/core"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := core.GetImage(ctx, &core.GetImageArgs{
			ImageId: testImageOciCoreImage.Id,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testImage = Oci.Core.GetImage.Invoke(new()
    {
        ImageId = testImageOciCoreImage.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.CoreFunctions;
import com.pulumi.oci.Core.inputs.GetImageArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var testImage = CoreFunctions.getImage(GetImageArgs.builder()
            .imageId(testImageOciCoreImage.id())
            .build());

    }
}
Copy
variables:
  testImage:
    fn::invoke:
      function: oci:Core:getImage
      arguments:
        imageId: ${testImageOciCoreImage.id}
Copy

Using getImage

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getImage(args: GetImageArgs, opts?: InvokeOptions): Promise<GetImageResult>
function getImageOutput(args: GetImageOutputArgs, opts?: InvokeOptions): Output<GetImageResult>
Copy
def get_image(image_id: Optional[str] = None,
              opts: Optional[InvokeOptions] = None) -> GetImageResult
def get_image_output(image_id: Optional[pulumi.Input[str]] = None,
              opts: Optional[InvokeOptions] = None) -> Output[GetImageResult]
Copy
func GetImage(ctx *Context, args *GetImageArgs, opts ...InvokeOption) (*GetImageResult, error)
func GetImageOutput(ctx *Context, args *GetImageOutputArgs, opts ...InvokeOption) GetImageResultOutput
Copy

> Note: This function is named GetImage in the Go SDK.

public static class GetImage 
{
    public static Task<GetImageResult> InvokeAsync(GetImageArgs args, InvokeOptions? opts = null)
    public static Output<GetImageResult> Invoke(GetImageInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetImageResult> getImage(GetImageArgs args, InvokeOptions options)
public static Output<GetImageResult> getImage(GetImageArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Core/getImage:getImage
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

ImageId This property is required. string
The OCID of the image.
ImageId This property is required. string
The OCID of the image.
imageId This property is required. String
The OCID of the image.
imageId This property is required. string
The OCID of the image.
image_id This property is required. str
The OCID of the image.
imageId This property is required. String
The OCID of the image.

getImage Result

The following output properties are available:

AgentFeatures List<GetImageAgentFeature>
Oracle Cloud Agent features supported on the image.
BaseImageId string
The OCID of the image originally used to launch the instance.
BillableSizeInGbs string
The size of the internal storage for this image that is subject to billing (1 GB = 1,073,741,824 bytes). Example: 100
CompartmentId string
The OCID of the compartment containing the instance you want to use as the basis for the image.
CreateImageAllowed bool
Whether instances launched with this image can be used to create new images. For example, you cannot create an image of an Oracle Database instance. Example: true
DefinedTags Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
DisplayName string
A user-friendly name for the image. It does not have to be unique, and it's changeable. Avoid entering confidential information.
FreeformTags Dictionary<string, string>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id string
The OCID of the image.
ImageId string
ImageSourceDetails List<GetImageImageSourceDetail>
InstanceId string
LaunchMode string
Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:

  • NATIVE - VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.
  • EMULATED - VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.
  • PARAVIRTUALIZED - VM instances launch with paravirtualized devices using VirtIO drivers.
  • CUSTOM - VM instances launch with custom configuration settings specified in the LaunchOptions parameter.
LaunchOptions List<GetImageLaunchOption>
Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
ListingType string
The listing type of the image. The default value is "NONE".
OperatingSystem string
The image's operating system. Example: Oracle Linux
OperatingSystemVersion string
The image's operating system version. Example: 7.2
SizeInMbs string
The boot volume size for an instance launched from this image (1 MB = 1,048,576 bytes). Note this is not the same as the size of the image when it was exported or the actual size of the image. Example: 47694
State string
The current state of the image.
TimeCreated string
The date and time the image was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
AgentFeatures []GetImageAgentFeature
Oracle Cloud Agent features supported on the image.
BaseImageId string
The OCID of the image originally used to launch the instance.
BillableSizeInGbs string
The size of the internal storage for this image that is subject to billing (1 GB = 1,073,741,824 bytes). Example: 100
CompartmentId string
The OCID of the compartment containing the instance you want to use as the basis for the image.
CreateImageAllowed bool
Whether instances launched with this image can be used to create new images. For example, you cannot create an image of an Oracle Database instance. Example: true
DefinedTags map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
DisplayName string
A user-friendly name for the image. It does not have to be unique, and it's changeable. Avoid entering confidential information.
FreeformTags map[string]string
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id string
The OCID of the image.
ImageId string
ImageSourceDetails []GetImageImageSourceDetail
InstanceId string
LaunchMode string
Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:

  • NATIVE - VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.
  • EMULATED - VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.
  • PARAVIRTUALIZED - VM instances launch with paravirtualized devices using VirtIO drivers.
  • CUSTOM - VM instances launch with custom configuration settings specified in the LaunchOptions parameter.
LaunchOptions []GetImageLaunchOption
Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
ListingType string
The listing type of the image. The default value is "NONE".
OperatingSystem string
The image's operating system. Example: Oracle Linux
OperatingSystemVersion string
The image's operating system version. Example: 7.2
SizeInMbs string
The boot volume size for an instance launched from this image (1 MB = 1,048,576 bytes). Note this is not the same as the size of the image when it was exported or the actual size of the image. Example: 47694
State string
The current state of the image.
TimeCreated string
The date and time the image was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
agentFeatures List<GetImageAgentFeature>
Oracle Cloud Agent features supported on the image.
baseImageId String
The OCID of the image originally used to launch the instance.
billableSizeInGbs String
The size of the internal storage for this image that is subject to billing (1 GB = 1,073,741,824 bytes). Example: 100
compartmentId String
The OCID of the compartment containing the instance you want to use as the basis for the image.
createImageAllowed Boolean
Whether instances launched with this image can be used to create new images. For example, you cannot create an image of an Oracle Database instance. Example: true
definedTags Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
displayName String
A user-friendly name for the image. It does not have to be unique, and it's changeable. Avoid entering confidential information.
freeformTags Map<String,String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id String
The OCID of the image.
imageId String
imageSourceDetails List<GetImageImageSourceDetail>
instanceId String
launchMode String
Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:

  • NATIVE - VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.
  • EMULATED - VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.
  • PARAVIRTUALIZED - VM instances launch with paravirtualized devices using VirtIO drivers.
  • CUSTOM - VM instances launch with custom configuration settings specified in the LaunchOptions parameter.
launchOptions List<GetImageLaunchOption>
Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
listingType String
The listing type of the image. The default value is "NONE".
operatingSystem String
The image's operating system. Example: Oracle Linux
operatingSystemVersion String
The image's operating system version. Example: 7.2
sizeInMbs String
The boot volume size for an instance launched from this image (1 MB = 1,048,576 bytes). Note this is not the same as the size of the image when it was exported or the actual size of the image. Example: 47694
state String
The current state of the image.
timeCreated String
The date and time the image was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
agentFeatures GetImageAgentFeature[]
Oracle Cloud Agent features supported on the image.
baseImageId string
The OCID of the image originally used to launch the instance.
billableSizeInGbs string
The size of the internal storage for this image that is subject to billing (1 GB = 1,073,741,824 bytes). Example: 100
compartmentId string
The OCID of the compartment containing the instance you want to use as the basis for the image.
createImageAllowed boolean
Whether instances launched with this image can be used to create new images. For example, you cannot create an image of an Oracle Database instance. Example: true
definedTags {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
displayName string
A user-friendly name for the image. It does not have to be unique, and it's changeable. Avoid entering confidential information.
freeformTags {[key: string]: string}
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id string
The OCID of the image.
imageId string
imageSourceDetails GetImageImageSourceDetail[]
instanceId string
launchMode string
Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:

  • NATIVE - VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.
  • EMULATED - VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.
  • PARAVIRTUALIZED - VM instances launch with paravirtualized devices using VirtIO drivers.
  • CUSTOM - VM instances launch with custom configuration settings specified in the LaunchOptions parameter.
launchOptions GetImageLaunchOption[]
Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
listingType string
The listing type of the image. The default value is "NONE".
operatingSystem string
The image's operating system. Example: Oracle Linux
operatingSystemVersion string
The image's operating system version. Example: 7.2
sizeInMbs string
The boot volume size for an instance launched from this image (1 MB = 1,048,576 bytes). Note this is not the same as the size of the image when it was exported or the actual size of the image. Example: 47694
state string
The current state of the image.
timeCreated string
The date and time the image was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
agent_features Sequence[core.GetImageAgentFeature]
Oracle Cloud Agent features supported on the image.
base_image_id str
The OCID of the image originally used to launch the instance.
billable_size_in_gbs str
The size of the internal storage for this image that is subject to billing (1 GB = 1,073,741,824 bytes). Example: 100
compartment_id str
The OCID of the compartment containing the instance you want to use as the basis for the image.
create_image_allowed bool
Whether instances launched with this image can be used to create new images. For example, you cannot create an image of an Oracle Database instance. Example: true
defined_tags Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
display_name str
A user-friendly name for the image. It does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags Mapping[str, str]
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id str
The OCID of the image.
image_id str
image_source_details Sequence[core.GetImageImageSourceDetail]
instance_id str
launch_mode str
Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:

  • NATIVE - VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.
  • EMULATED - VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.
  • PARAVIRTUALIZED - VM instances launch with paravirtualized devices using VirtIO drivers.
  • CUSTOM - VM instances launch with custom configuration settings specified in the LaunchOptions parameter.
launch_options Sequence[core.GetImageLaunchOption]
Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
listing_type str
The listing type of the image. The default value is "NONE".
operating_system str
The image's operating system. Example: Oracle Linux
operating_system_version str
The image's operating system version. Example: 7.2
size_in_mbs str
The boot volume size for an instance launched from this image (1 MB = 1,048,576 bytes). Note this is not the same as the size of the image when it was exported or the actual size of the image. Example: 47694
state str
The current state of the image.
time_created str
The date and time the image was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
agentFeatures List<Property Map>
Oracle Cloud Agent features supported on the image.
baseImageId String
The OCID of the image originally used to launch the instance.
billableSizeInGbs String
The size of the internal storage for this image that is subject to billing (1 GB = 1,073,741,824 bytes). Example: 100
compartmentId String
The OCID of the compartment containing the instance you want to use as the basis for the image.
createImageAllowed Boolean
Whether instances launched with this image can be used to create new images. For example, you cannot create an image of an Oracle Database instance. Example: true
definedTags Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
displayName String
A user-friendly name for the image. It does not have to be unique, and it's changeable. Avoid entering confidential information.
freeformTags Map<String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id String
The OCID of the image.
imageId String
imageSourceDetails List<Property Map>
instanceId String
launchMode String
Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:

  • NATIVE - VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.
  • EMULATED - VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.
  • PARAVIRTUALIZED - VM instances launch with paravirtualized devices using VirtIO drivers.
  • CUSTOM - VM instances launch with custom configuration settings specified in the LaunchOptions parameter.
launchOptions List<Property Map>
Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
listingType String
The listing type of the image. The default value is "NONE".
operatingSystem String
The image's operating system. Example: Oracle Linux
operatingSystemVersion String
The image's operating system version. Example: 7.2
sizeInMbs String
The boot volume size for an instance launched from this image (1 MB = 1,048,576 bytes). Note this is not the same as the size of the image when it was exported or the actual size of the image. Example: 47694
state String
The current state of the image.
timeCreated String
The date and time the image was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

Supporting Types

GetImageAgentFeature

IsManagementSupported This property is required. bool
This attribute is not used.
IsMonitoringSupported This property is required. bool
This attribute is not used.
IsManagementSupported This property is required. bool
This attribute is not used.
IsMonitoringSupported This property is required. bool
This attribute is not used.
isManagementSupported This property is required. Boolean
This attribute is not used.
isMonitoringSupported This property is required. Boolean
This attribute is not used.
isManagementSupported This property is required. boolean
This attribute is not used.
isMonitoringSupported This property is required. boolean
This attribute is not used.
is_management_supported This property is required. bool
This attribute is not used.
is_monitoring_supported This property is required. bool
This attribute is not used.
isManagementSupported This property is required. Boolean
This attribute is not used.
isMonitoringSupported This property is required. Boolean
This attribute is not used.

GetImageImageSourceDetail

BucketName This property is required. string
NamespaceName This property is required. string
ObjectName This property is required. string
OperatingSystem This property is required. string
The image's operating system. Example: Oracle Linux
OperatingSystemVersion This property is required. string
The image's operating system version. Example: 7.2
SourceImageType This property is required. string
SourceType This property is required. string
SourceUri This property is required. string
BucketName This property is required. string
NamespaceName This property is required. string
ObjectName This property is required. string
OperatingSystem This property is required. string
The image's operating system. Example: Oracle Linux
OperatingSystemVersion This property is required. string
The image's operating system version. Example: 7.2
SourceImageType This property is required. string
SourceType This property is required. string
SourceUri This property is required. string
bucketName This property is required. String
namespaceName This property is required. String
objectName This property is required. String
operatingSystem This property is required. String
The image's operating system. Example: Oracle Linux
operatingSystemVersion This property is required. String
The image's operating system version. Example: 7.2
sourceImageType This property is required. String
sourceType This property is required. String
sourceUri This property is required. String
bucketName This property is required. string
namespaceName This property is required. string
objectName This property is required. string
operatingSystem This property is required. string
The image's operating system. Example: Oracle Linux
operatingSystemVersion This property is required. string
The image's operating system version. Example: 7.2
sourceImageType This property is required. string
sourceType This property is required. string
sourceUri This property is required. string
bucket_name This property is required. str
namespace_name This property is required. str
object_name This property is required. str
operating_system This property is required. str
The image's operating system. Example: Oracle Linux
operating_system_version This property is required. str
The image's operating system version. Example: 7.2
source_image_type This property is required. str
source_type This property is required. str
source_uri This property is required. str
bucketName This property is required. String
namespaceName This property is required. String
objectName This property is required. String
operatingSystem This property is required. String
The image's operating system. Example: Oracle Linux
operatingSystemVersion This property is required. String
The image's operating system version. Example: 7.2
sourceImageType This property is required. String
sourceType This property is required. String
sourceUri This property is required. String

GetImageLaunchOption

BootVolumeType This property is required. string
Emulation type for the boot volume.

  • ISCSI - ISCSI attached block storage device.
  • SCSI - Emulated SCSI disk.
  • IDE - Emulated IDE disk.
  • VFIO - Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.
  • PARAVIRTUALIZED - Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
Firmware This property is required. string
Firmware used to boot VM. Select the option that matches your operating system.

  • BIOS - Boot VM using BIOS style firmware. This is compatible with both 32 bit and 64 bit operating systems that boot using MBR style bootloaders.
  • UEFI_64 - Boot VM using UEFI style firmware compatible with 64 bit operating systems. This is the default for platform images.
IsConsistentVolumeNamingEnabled This property is required. bool
Whether to enable consistent volume naming feature. Defaults to false.
IsPvEncryptionInTransitEnabled This property is required. bool
Deprecated. Instead use isPvEncryptionInTransitEnabled in LaunchInstanceDetails.
NetworkType This property is required. string
Emulation type for the physical network interface card (NIC).

  • E1000 - Emulated Gigabit ethernet controller. Compatible with Linux e1000 network driver.
  • VFIO - Direct attached Virtual Function network controller. This is the networking type when you launch an instance using hardware-assisted (SR-IOV) networking.
  • PARAVIRTUALIZED - VM instances launch with paravirtualized devices using VirtIO drivers.
RemoteDataVolumeType This property is required. string
Emulation type for volume.

  • ISCSI - ISCSI attached block storage device.
  • SCSI - Emulated SCSI disk.
  • IDE - Emulated IDE disk.
  • VFIO - Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.
  • PARAVIRTUALIZED - Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
BootVolumeType This property is required. string
Emulation type for the boot volume.

  • ISCSI - ISCSI attached block storage device.
  • SCSI - Emulated SCSI disk.
  • IDE - Emulated IDE disk.
  • VFIO - Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.
  • PARAVIRTUALIZED - Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
Firmware This property is required. string
Firmware used to boot VM. Select the option that matches your operating system.

  • BIOS - Boot VM using BIOS style firmware. This is compatible with both 32 bit and 64 bit operating systems that boot using MBR style bootloaders.
  • UEFI_64 - Boot VM using UEFI style firmware compatible with 64 bit operating systems. This is the default for platform images.
IsConsistentVolumeNamingEnabled This property is required. bool
Whether to enable consistent volume naming feature. Defaults to false.
IsPvEncryptionInTransitEnabled This property is required. bool
Deprecated. Instead use isPvEncryptionInTransitEnabled in LaunchInstanceDetails.
NetworkType This property is required. string
Emulation type for the physical network interface card (NIC).

  • E1000 - Emulated Gigabit ethernet controller. Compatible with Linux e1000 network driver.
  • VFIO - Direct attached Virtual Function network controller. This is the networking type when you launch an instance using hardware-assisted (SR-IOV) networking.
  • PARAVIRTUALIZED - VM instances launch with paravirtualized devices using VirtIO drivers.
RemoteDataVolumeType This property is required. string
Emulation type for volume.

  • ISCSI - ISCSI attached block storage device.
  • SCSI - Emulated SCSI disk.
  • IDE - Emulated IDE disk.
  • VFIO - Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.
  • PARAVIRTUALIZED - Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
bootVolumeType This property is required. String
Emulation type for the boot volume.

  • ISCSI - ISCSI attached block storage device.
  • SCSI - Emulated SCSI disk.
  • IDE - Emulated IDE disk.
  • VFIO - Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.
  • PARAVIRTUALIZED - Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
firmware This property is required. String
Firmware used to boot VM. Select the option that matches your operating system.

  • BIOS - Boot VM using BIOS style firmware. This is compatible with both 32 bit and 64 bit operating systems that boot using MBR style bootloaders.
  • UEFI_64 - Boot VM using UEFI style firmware compatible with 64 bit operating systems. This is the default for platform images.
isConsistentVolumeNamingEnabled This property is required. Boolean
Whether to enable consistent volume naming feature. Defaults to false.
isPvEncryptionInTransitEnabled This property is required. Boolean
Deprecated. Instead use isPvEncryptionInTransitEnabled in LaunchInstanceDetails.
networkType This property is required. String
Emulation type for the physical network interface card (NIC).

  • E1000 - Emulated Gigabit ethernet controller. Compatible with Linux e1000 network driver.
  • VFIO - Direct attached Virtual Function network controller. This is the networking type when you launch an instance using hardware-assisted (SR-IOV) networking.
  • PARAVIRTUALIZED - VM instances launch with paravirtualized devices using VirtIO drivers.
remoteDataVolumeType This property is required. String
Emulation type for volume.

  • ISCSI - ISCSI attached block storage device.
  • SCSI - Emulated SCSI disk.
  • IDE - Emulated IDE disk.
  • VFIO - Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.
  • PARAVIRTUALIZED - Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
bootVolumeType This property is required. string
Emulation type for the boot volume.

  • ISCSI - ISCSI attached block storage device.
  • SCSI - Emulated SCSI disk.
  • IDE - Emulated IDE disk.
  • VFIO - Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.
  • PARAVIRTUALIZED - Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
firmware This property is required. string
Firmware used to boot VM. Select the option that matches your operating system.

  • BIOS - Boot VM using BIOS style firmware. This is compatible with both 32 bit and 64 bit operating systems that boot using MBR style bootloaders.
  • UEFI_64 - Boot VM using UEFI style firmware compatible with 64 bit operating systems. This is the default for platform images.
isConsistentVolumeNamingEnabled This property is required. boolean
Whether to enable consistent volume naming feature. Defaults to false.
isPvEncryptionInTransitEnabled This property is required. boolean
Deprecated. Instead use isPvEncryptionInTransitEnabled in LaunchInstanceDetails.
networkType This property is required. string
Emulation type for the physical network interface card (NIC).

  • E1000 - Emulated Gigabit ethernet controller. Compatible with Linux e1000 network driver.
  • VFIO - Direct attached Virtual Function network controller. This is the networking type when you launch an instance using hardware-assisted (SR-IOV) networking.
  • PARAVIRTUALIZED - VM instances launch with paravirtualized devices using VirtIO drivers.
remoteDataVolumeType This property is required. string
Emulation type for volume.

  • ISCSI - ISCSI attached block storage device.
  • SCSI - Emulated SCSI disk.
  • IDE - Emulated IDE disk.
  • VFIO - Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.
  • PARAVIRTUALIZED - Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
boot_volume_type This property is required. str
Emulation type for the boot volume.

  • ISCSI - ISCSI attached block storage device.
  • SCSI - Emulated SCSI disk.
  • IDE - Emulated IDE disk.
  • VFIO - Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.
  • PARAVIRTUALIZED - Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
firmware This property is required. str
Firmware used to boot VM. Select the option that matches your operating system.

  • BIOS - Boot VM using BIOS style firmware. This is compatible with both 32 bit and 64 bit operating systems that boot using MBR style bootloaders.
  • UEFI_64 - Boot VM using UEFI style firmware compatible with 64 bit operating systems. This is the default for platform images.
is_consistent_volume_naming_enabled This property is required. bool
Whether to enable consistent volume naming feature. Defaults to false.
is_pv_encryption_in_transit_enabled This property is required. bool
Deprecated. Instead use isPvEncryptionInTransitEnabled in LaunchInstanceDetails.
network_type This property is required. str
Emulation type for the physical network interface card (NIC).

  • E1000 - Emulated Gigabit ethernet controller. Compatible with Linux e1000 network driver.
  • VFIO - Direct attached Virtual Function network controller. This is the networking type when you launch an instance using hardware-assisted (SR-IOV) networking.
  • PARAVIRTUALIZED - VM instances launch with paravirtualized devices using VirtIO drivers.
remote_data_volume_type This property is required. str
Emulation type for volume.

  • ISCSI - ISCSI attached block storage device.
  • SCSI - Emulated SCSI disk.
  • IDE - Emulated IDE disk.
  • VFIO - Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.
  • PARAVIRTUALIZED - Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
bootVolumeType This property is required. String
Emulation type for the boot volume.

  • ISCSI - ISCSI attached block storage device.
  • SCSI - Emulated SCSI disk.
  • IDE - Emulated IDE disk.
  • VFIO - Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.
  • PARAVIRTUALIZED - Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
firmware This property is required. String
Firmware used to boot VM. Select the option that matches your operating system.

  • BIOS - Boot VM using BIOS style firmware. This is compatible with both 32 bit and 64 bit operating systems that boot using MBR style bootloaders.
  • UEFI_64 - Boot VM using UEFI style firmware compatible with 64 bit operating systems. This is the default for platform images.
isConsistentVolumeNamingEnabled This property is required. Boolean
Whether to enable consistent volume naming feature. Defaults to false.
isPvEncryptionInTransitEnabled This property is required. Boolean
Deprecated. Instead use isPvEncryptionInTransitEnabled in LaunchInstanceDetails.
networkType This property is required. String
Emulation type for the physical network interface card (NIC).

  • E1000 - Emulated Gigabit ethernet controller. Compatible with Linux e1000 network driver.
  • VFIO - Direct attached Virtual Function network controller. This is the networking type when you launch an instance using hardware-assisted (SR-IOV) networking.
  • PARAVIRTUALIZED - VM instances launch with paravirtualized devices using VirtIO drivers.
remoteDataVolumeType This property is required. String
Emulation type for volume.

  • ISCSI - ISCSI attached block storage device.
  • SCSI - Emulated SCSI disk.
  • IDE - Emulated IDE disk.
  • VFIO - Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.
  • PARAVIRTUALIZED - Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi