Show / Hide Table of Contents

Class TimeSeriesMetricDefinition

The response object representing time series metric details for a specific Managed Database at a particular time.

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

Properties

Datapoints

Declaration
[Required(ErrorMessage = "Datapoints is required.")]
[JsonProperty(PropertyName = "datapoints")]
public List<TimeSeriesMetricDataPoint> Datapoints { get; set; }
Property Value
Type Description
List<TimeSeriesMetricDataPoint>

The time series metric data for the given metric.

Remarks

Required

MetricName

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

The name of the metric the time series data corresponds to.

Remarks

Required

In this article
Back to top