Show / Hide Table of Contents

Class ShapeMemoryOptions

Options for the the shape memory

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.PsqlService.Models
Assembly: OCI.DotNetSDK.Psql.dll
Syntax
public class ShapeMemoryOptions

Properties

DefaultPerOcpuInGBs

Declaration
[Required(ErrorMessage = "DefaultPerOcpuInGBs is required.")]
[JsonProperty(PropertyName = "defaultPerOcpuInGBs")]
public int? DefaultPerOcpuInGBs { get; set; }
Property Value
Type Description
int?

Default per OCPU configuration in GBs

Remarks

Required

MaxInGBs

Declaration
[Required(ErrorMessage = "MaxInGBs is required.")]
[JsonProperty(PropertyName = "maxInGBs")]
public int? MaxInGBs { get; set; }
Property Value
Type Description
int?

Maximum Memory configuration in GBs

Remarks

Required

MaxPerOcpuInGBs

Declaration
[Required(ErrorMessage = "MaxPerOcpuInGBs is required.")]
[JsonProperty(PropertyName = "maxPerOcpuInGBs")]
public int? MaxPerOcpuInGBs { get; set; }
Property Value
Type Description
int?

Maximum Memory configuration per OCPU in GBs

Remarks

Required

MinInGBs

Declaration
[Required(ErrorMessage = "MinInGBs is required.")]
[JsonProperty(PropertyName = "minInGBs")]
public int? MinInGBs { get; set; }
Property Value
Type Description
int?

Minimum Memory configuration in GBs

Remarks

Required

MinPerOcpuInGBs

Declaration
[Required(ErrorMessage = "MinPerOcpuInGBs is required.")]
[JsonProperty(PropertyName = "minPerOcpuInGBs")]
public int? MinPerOcpuInGBs { get; set; }
Property Value
Type Description
int?

Minimum Memory configuration per OCPU in GBs

Remarks

Required

In this article
Back to top