Show / Hide Table of Contents

Class ShapeSummary

The shape of the DB System. The shape determines resources to allocate to the DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. For a description of shapes, see DB System Shape Options.

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

Properties

CpuCoreCount

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

The number of CPU Cores the Instance provides. These are "OCPU"s.

Remarks

Required

IsSupportedFor

Declaration
[JsonProperty(PropertyName = "isSupportedFor", ItemConverterType = typeof(ResponseEnumConverter))]
public List<ShapeSummary.IsSupportedForEnum> IsSupportedFor { get; set; }
Property Value
Type Description
List<ShapeSummary.IsSupportedForEnum>

What service features the shape is supported for.

MemorySizeInGBs

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

The amount of RAM the Instance provides. This is an IEC base-2 number.

Remarks

Required

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

The name of the shape used for the DB System.

Remarks

Required

In this article
Back to top