Show / Hide Table of Contents

Class ShapeOcpuOptions

For a flexible shape, the number of OCPUs available for container instances that use this shape.

Inheritance
object
ShapeOcpuOptions
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ContainerinstancesService.Models
Assembly: OCI.DotNetSDK.Containerinstances.dll
Syntax
public class ShapeOcpuOptions

Properties

Max

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

The maximum number of OCPUs.

Remarks

Required

Min

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

The minimum number of OCPUs.

Remarks

Required

In this article
Back to top