Class MySqlFleetMetrics
The details of the MySQL Database fleet health metrics.
Inherited Members
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class MySqlFleetMetrics
Properties
EndTime
Declaration
[Required(ErrorMessage = "EndTime is required.")]
[JsonProperty(PropertyName = "endTime")]
public string EndTime { get; set; }
Property Value
Type | Description |
---|---|
string | The end of the time range during which metric data is retrieved. |
Remarks
Required
FleetDatabases
Declaration
[Required(ErrorMessage = "FleetDatabases is required.")]
[JsonProperty(PropertyName = "fleetDatabases")]
public List<MySqlDatabaseUsageMetrics> FleetDatabases { get; set; }
Property Value
Type | Description |
---|---|
List<MySqlDatabaseUsageMetrics> | The list of MySQL Databases in the fleet and their usage metrics. |
Remarks
Required
FleetSummary
Declaration
[Required(ErrorMessage = "FleetSummary is required.")]
[JsonProperty(PropertyName = "fleetSummary")]
public List<MySqlFleetSummary> FleetSummary { get; set; }
Property Value
Type | Description |
---|---|
List<MySqlFleetSummary> | A summary of the inventory count and the metrics that describe the aggregated usage of CPU, storage, and so on of all the MySQL Databases in the fleet. |
Remarks
Required
StartTime
Declaration
[Required(ErrorMessage = "StartTime is required.")]
[JsonProperty(PropertyName = "startTime")]
public string StartTime { get; set; }
Property Value
Type | Description |
---|---|
string | The beginning of the time range during which metric data is retrieved. |
Remarks
Required