Show / Hide Table of Contents

Class StoragePerformanceDetails

Representation of storage performance detail parameters.

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

Properties

BalancedDiskPerformance

Declaration
[Required(ErrorMessage = "BalancedDiskPerformance is required.")]
[JsonProperty(PropertyName = "balancedDiskPerformance")]
public DiskPerformanceDetails BalancedDiskPerformance { get; set; }
Property Value
Type Description
DiskPerformanceDetails
Remarks

Required

HighDiskPerformance

Declaration
[Required(ErrorMessage = "HighDiskPerformance is required.")]
[JsonProperty(PropertyName = "highDiskPerformance")]
public DiskPerformanceDetails HighDiskPerformance { get; set; }
Property Value
Type Description
DiskPerformanceDetails
Remarks

Required

SizeInGBs

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

Size in GBs.

Remarks

Required

In this article
Back to top