Show / Hide Table of Contents

Class UpdateInstanceSourceViaImageDetails

The details for updating the instance source from an image.

Inheritance
object
UpdateInstanceSourceDetails
UpdateInstanceSourceViaImageDetails
Inherited Members
UpdateInstanceSourceDetails.IsPreserveBootVolumeEnabled
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
public class UpdateInstanceSourceViaImageDetails : UpdateInstanceSourceDetails

Properties

BootVolumeSizeInGBs

Declaration
[JsonProperty(PropertyName = "bootVolumeSizeInGBs")]
public long? BootVolumeSizeInGBs { get; set; }
Property Value
Type Description
long?

The size of the boot volume in GBs. Minimum value is 50 GB and maximum value is 32,768 GB (32 TB).

ImageId

Declaration
[Required(ErrorMessage = "ImageId is required.")]
[JsonProperty(PropertyName = "imageId")]
public string ImageId { get; set; }
Property Value
Type Description
string

The OCID of the image used to boot the instance.

Remarks

Required

KmsKeyId

Declaration
[JsonProperty(PropertyName = "kmsKeyId")]
public string KmsKeyId { get; set; }
Property Value
Type Description
string

The OCID of the Vault service key to assign as the master encryption key for the boot volume.

In this article
Back to top