Show / Hide Table of Contents

Class ProjectedDataItem

The timestamp of the projected event and their corresponding resource value. highValue and lowValue are the uncertainty bounds of the corresponding value.

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

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

HighValue

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

Upper uncertainty bound of the current usage value.

Remarks

Required

LowValue

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

Lower uncertainty bound of the current usage value.

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