Show / Hide Table of Contents

Class MetricsAggregationRangeCollection

The collection of metrics.

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

Properties

EndTime

Declaration
[JsonProperty(PropertyName = "endTime")]
public string EndTime { get; set; }
Property Value
Type Description
string

The end of the metric data query time range. Expressed in UTC in ISO-8601 format, which is yyyy-MM-dd'T'hh:mm:ss.sss'Z'.

Items

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

The metric data.

Remarks

Required

StartTime

Declaration
[JsonProperty(PropertyName = "startTime")]
public string StartTime { get; set; }
Property Value
Type Description
string

The beginning of the metric data query time range. Expressed in UTC in ISO-8601 format, which is yyyy-MM-dd'T'hh:mm:ss.sss'Z'.

In this article
Back to top