Show / Hide Table of Contents

Class HistoricalMetric

Metric details.

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

Properties

Aggregation

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

Aggregation time interval.

Remarks

Required

Name

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

Metric name.

Remarks

Required

Value

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

Aggregation value.

Remarks

Required

In this article
Back to top