Show / Hide Table of Contents

Class RequestUsage

The usage metrics for a request.

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

Properties

ReadUnitsConsumed

Declaration
[JsonProperty(PropertyName = "readUnitsConsumed")]
public int? ReadUnitsConsumed { get; set; }
Property Value
Type Description
int?

Read Units consumed by this operation.

WriteUnitsConsumed

Declaration
[JsonProperty(PropertyName = "writeUnitsConsumed")]
public int? WriteUnitsConsumed { get; set; }
Property Value
Type Description
int?

Write Units consumed by this operation.

In this article
Back to top