Show / Hide Table of Contents

Class ExadataInfrastructureFleetHealthMetrics

The details of the fleet health metrics.

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

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.

ExadataInfrastructureFleetSummary

Declaration
[JsonProperty(PropertyName = "exadataInfrastructureFleetSummary")]
public ExadataInfrastructureFleetSummary ExadataInfrastructureFleetSummary { get; set; }
Property Value
Type Description
ExadataInfrastructureFleetSummary

FleetExadataInfrastructures

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

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

Remarks

Required

In this article
Back to top