Show / Hide Table of Contents

Class 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.

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

Properties

AggregatedMetrics

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

The usage metrics for the Managed MySQL Databases in the fleet.

Remarks

Required

Inventory

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

A list of MySQL Databases in the fleet, grouped by database type.

Remarks

Required

In this article
Back to top