Show / Hide Table of Contents

Class DatabaseFleetHealthMetrics

The details of the fleet health metrics.

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

Properties

CompareBaselineTime

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

The baseline date and time in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'". This is the date and time against which percentage change is calculated.

Remarks

Required

CompareTargetTime

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

The target date and time in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'". All the metrics are returned for the target date and time and the percentage change is calculated against the baseline date and time.

Remarks

Required

CompareType

Declaration
[JsonProperty(PropertyName = "compareType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CompareType? CompareType { get; set; }
Property Value
Type Description
CompareType?

The time window used for metrics comparison.

FleetDatabases

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

A list of the databases present in the fleet and their usage metrics.

Remarks

Required

FleetSummary

Declaration
[JsonProperty(PropertyName = "fleetSummary")]
public FleetSummary FleetSummary { get; set; }
Property Value
Type Description
FleetSummary
In this article
Back to top