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

Properties

MaxInGBs

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

Maximum Memory configuration in GBs

Remarks

Required

MinInGBs

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

Minimum Memory configuration in GBs

Remarks

Required

In this article
Back to top