Show / Hide Table of Contents

Class ShapeMemoryOptions

For a flexible shape, the amount of memory available for instances that use this shape.
If this field is null, then this shape has a fixed amount of memory equivalent to memoryInGBs.

Inheritance
object
ShapeMemoryOptions
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 ShapeMemoryOptions

Properties

DefaultPerOcpuInGBs

Declaration
[JsonProperty(PropertyName = "defaultPerOcpuInGBs")]
public float? DefaultPerOcpuInGBs { get; set; }
Property Value
Type Description
float?

The default amount of memory per OCPU available for this shape, in gigabytes.

MaxInGBs

Declaration
[JsonProperty(PropertyName = "maxInGBs")]
public float? MaxInGBs { get; set; }
Property Value
Type Description
float?

The maximum amount of memory, in gigabytes.

MaxPerNumaNodeInGBs

Declaration
[JsonProperty(PropertyName = "maxPerNumaNodeInGBs")]
public float? MaxPerNumaNodeInGBs { get; set; }
Property Value
Type Description
float?

The maximum amount of memory per NUMA node, in gigabytes.

MaxPerOcpuInGBs

Declaration
[JsonProperty(PropertyName = "maxPerOcpuInGBs")]
public float? MaxPerOcpuInGBs { get; set; }
Property Value
Type Description
float?

The maximum amount of memory per OCPU available for this shape, in gigabytes.

MinInGBs

Declaration
[JsonProperty(PropertyName = "minInGBs")]
public float? MinInGBs { get; set; }
Property Value
Type Description
float?

The minimum amount of memory, in gigabytes.

MinPerOcpuInGBs

Declaration
[JsonProperty(PropertyName = "minPerOcpuInGBs")]
public float? MinPerOcpuInGBs { get; set; }
Property Value
Type Description
float?

The minimum amount of memory per OCPU available for this shape, in gigabytes.

In this article
Back to top