Show / Hide Table of Contents

Class InstanceConfigurationInstanceSourceViaImageDetails

Inheritance
object
InstanceConfigurationInstanceSourceDetails
InstanceConfigurationInstanceSourceViaImageDetails
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
public class InstanceConfigurationInstanceSourceViaImageDetails : InstanceConfigurationInstanceSourceDetails

Properties

BootVolumeSizeInGBs

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

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

BootVolumeVpusPerGB

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

The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See Block Volume Performance Levels for more information.
Allowed values:

  • 10: Represents Balanced option.
  • 20: Represents Higher Performance option.
  • 30-120: Represents the Ultra High Performance option.
    For performance autotune enabled volumes, it would be the Default(Minimum) VPUs/GB.

ImageId

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

The OCID of the image used to boot the instance.

InstanceSourceImageFilterDetails

Declaration
[JsonProperty(PropertyName = "instanceSourceImageFilterDetails")]
public InstanceConfigurationInstanceSourceImageFilterDetails InstanceSourceImageFilterDetails { get; set; }
Property Value
Type Description
InstanceConfigurationInstanceSourceImageFilterDetails

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