Show / Hide Table of Contents

Class NodeSourceViaImageDetails

Details of the image running on the node.

Inheritance
object
NodeSourceDetails
NodeSourceViaImageDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ContainerengineService.Models
Assembly: OCI.DotNetSDK.Containerengine.dll
Syntax
public class NodeSourceViaImageDetails : NodeSourceDetails

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. See here for max custom boot volume sizing and OS-specific requirements.

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 node.

Remarks

Required

In this article
Back to top