Show / Hide Table of Contents

Class SupportedShapeSummary

Summary of the database system shape.

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

Properties

IsFlexible

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

Indicates if the shape is a flex shape.

Remarks

Required

MemoryOptions

Declaration
[JsonProperty(PropertyName = "memoryOptions")]
public ShapeMemoryOptions MemoryOptions { get; set; }
Property Value
Type Description
ShapeMemoryOptions

OcpuOptions

Declaration
[JsonProperty(PropertyName = "ocpuOptions")]
public ShapeOcpuOptions OcpuOptions { get; set; }
Property Value
Type Description
ShapeOcpuOptions

Shape

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

The name of the Compute VM shape. Example: VM.Standard.E4.Flex

Remarks

Required

In this article
Back to top