Show / Hide Table of Contents

Class ImageOcpuConstraints

OCPU options for an image and shape.

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

Properties

Max

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

The maximum number of OCPUs supported for this image and shape.

Min

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

The minimum number of OCPUs supported for this image and shape.

In this article
Back to top