Show / Hide Table of Contents

Class ImageMemoryConstraints

For a flexible image and shape, the amount of memory supported for instances that use this image.

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

Properties

MaxInGBs

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

The maximum amount of memory, in gigabytes.

MinInGBs

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

The minimum amount of memory, in gigabytes.

In this article
Back to top