Show / Hide Table of Contents

Class DiskPerformanceDetails

Representation of disk performance detail parameters.

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

Properties

DiskIops

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

Disk IOPS in thousands.

Remarks

Required

DiskThroughputInMbps

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

Disk Throughput in Mbps.

Remarks

Required

In this article
Back to top