Show / Hide Table of Contents

Class HistoricalDataItem

The historical timestamp and the corresponding resource value.

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

Properties

EndTimestamp

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

The timestamp in which the current sampling period ends in RFC 3339 format.

Remarks

Required

Usage

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

Total amount used of the resource metric type (CPU, STORAGE).

Remarks

Required

In this article
Back to top