Show / Hide Table of Contents

Class InstanceReservationShapeConfigDetails

The shape configuration requested when launching instances in a compute capacity reservation.
If the parameter is provided, the reservation is created with the resources that you specify. If some properties are missing or the parameter is not provided, the reservation is created with the default configuration values for the shape that you specify.
Each shape only supports certain configurable values. If the values that you provide are not valid for the specified shape, an error is returned.
For more information about customizing the resources that are allocated to flexible shapes, see Flexible Shapes.

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

Properties

MemoryInGBs

Declaration
[JsonProperty(PropertyName = "memoryInGBs")]
public float? MemoryInGBs { get; set; }
Property Value
Type Description
float?

The total amount of memory available to the instance, in gigabytes.

Ocpus

Declaration
[JsonProperty(PropertyName = "ocpus")]
public float? Ocpus { get; set; }
Property Value
Type Description
float?

The total number of OCPUs available to the instance.

In this article
Back to top