Show / Hide Table of Contents

Class ShapeConfigDetails

The shape configuration requested for the node.

Inheritance
object
ShapeConfigDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BdsService.Models
Assembly: OCI.DotNetSDK.Bds.dll
Syntax
public class ShapeConfigDetails

Properties

MemoryInGBs

Declaration
[JsonProperty(PropertyName = "memoryInGBs")]
public int? MemoryInGBs { get; set; }
Property Value
Type Description
int?

The total amount of memory available to the node, in gigabytes.

Nvmes

Declaration
[JsonProperty(PropertyName = "nvmes")]
public int? Nvmes { get; set; }
Property Value
Type Description
int?

The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.

Ocpus

Declaration
[JsonProperty(PropertyName = "ocpus")]
public int? Ocpus { get; set; }
Property Value
Type Description
int?

The total number of OCPUs available to the node.

In this article
Back to top