Show / Hide Table of Contents

Class DbSystemStoragePerformanceSummary

Representation of storage performance summary per shapeType .

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

Properties

DataStoragePerformanceList

Declaration
[Required(ErrorMessage = "DataStoragePerformanceList is required.")]
[JsonProperty(PropertyName = "dataStoragePerformanceList")]
public List<StoragePerformanceDetails> DataStoragePerformanceList { get; set; }
Property Value
Type Description
List<StoragePerformanceDetails>

List of storage performance for the DATA disks

Remarks

Required

RecoStoragePerformanceList

Declaration
[Required(ErrorMessage = "RecoStoragePerformanceList is required.")]
[JsonProperty(PropertyName = "recoStoragePerformanceList")]
public List<StoragePerformanceDetails> RecoStoragePerformanceList { get; set; }
Property Value
Type Description
List<StoragePerformanceDetails>

List of storage performance for the RECO disks

Remarks

Required

ShapeType

Declaration
[Required(ErrorMessage = "ShapeType is required.")]
[JsonProperty(PropertyName = "shapeType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DbSystemStoragePerformanceSummary.ShapeTypeEnum? ShapeType { get; set; }
Property Value
Type Description
DbSystemStoragePerformanceSummary.ShapeTypeEnum?

ShapeType of the DbSystems INTEL , AMD, INTEL_FLEX_X9 or AMPERE_FLEX_A1

Remarks

Required

In this article
Back to top