Show / Hide Table of Contents

Class ShapeOcpuOptions

For a flexible shape, the number of OCPUs available for instances that use this shape.
If this field is null, then this shape has a fixed number of OCPUs equal to ocpus.

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

Properties

Max

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

The maximum number of OCPUs.

MaxPerNumaNode

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

The maximum number of cores available per NUMA node.

Min

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

The minimum number of OCPUs.

In this article
Back to top