Show / Hide Table of Contents

Class ShapeMemoryOptions

Memory properties.

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.ContainerengineService.Models
Assembly: OCI.DotNetSDK.Containerengine.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.

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