Class ProjectedDataItem
The timestamp of the projected event and their corresponding resource value.
highValue
and lowValue
are the uncertainty bounds of the corresponding value.
Inherited Members
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