Show / Hide Table of Contents

Class ExportImageDetails

The destination details for the image export.
Set destinationType to objectStorageTuple and use {@link #exportImageViaObjectStorageTupleDetails(ExportImageViaObjectStorageTupleDetailsRequest) exportImageViaObjectStorageTupleDetails} when specifying the namespace, bucket name, and object name.
Set destinationType to objectStorageUri and use {@link #exportImageViaObjectStorageUriDetails(ExportImageViaObjectStorageUriDetailsRequest) exportImageViaObjectStorageUriDetails} when specifying the Object Storage URL.

Inheritance
object
ExportImageDetails
ExportImageViaObjectStorageTupleDetails
ExportImageViaObjectStorageUriDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
[JsonConverter(typeof(ExportImageDetailsModelConverter))]
public class ExportImageDetails

Properties

ExportFormat

Declaration
[JsonProperty(PropertyName = "exportFormat")]
[JsonConverter(typeof(StringEnumConverter))]
public ExportImageDetails.ExportFormatEnum? ExportFormat { get; set; }
Property Value
Type Description
ExportImageDetails.ExportFormatEnum?

The format to export the image to. The default value is OCI.
The following image formats are available:

  • OCI - Oracle Cloud Infrastructure file with a QCOW2 image and Oracle Cloud Infrastructure metadata (.oci). Use this format to export a custom image that you want to import into other tenancies or regions.
  • QCOW2 - QEMU Copy On Write (.qcow2)
  • VDI - Virtual Disk Image (.vdi) for Oracle VM VirtualBox
  • VHD - Virtual Hard Disk (.vhd) for Hyper-V
  • VMDK - Virtual Machine Disk (.vmdk)
In this article
Back to top