File: //lib/mysqlsh/lib/python3.8/site-packages/oci/database_management/models/my_sql_fleet_summary.py
# coding: utf-8
# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101
from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
from oci.decorators import init_model_state_from_kwargs
@init_model_state_from_kwargs
class MySqlFleetSummary(object):
"""
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.
"""
def __init__(self, **kwargs):
"""
Initializes a new MySqlFleetSummary object with values from keyword arguments.
The following keyword arguments are supported (corresponding to the getters/setters of this class):
:param aggregated_metrics:
The value to assign to the aggregated_metrics property of this MySqlFleetSummary.
:type aggregated_metrics: list[oci.database_management.models.MySqlFleetMetricSummaryDefinition]
:param inventory:
The value to assign to the inventory property of this MySqlFleetSummary.
:type inventory: list[oci.database_management.models.MySqlFleetByCategory]
"""
self.swagger_types = {
'aggregated_metrics': 'list[MySqlFleetMetricSummaryDefinition]',
'inventory': 'list[MySqlFleetByCategory]'
}
self.attribute_map = {
'aggregated_metrics': 'aggregatedMetrics',
'inventory': 'inventory'
}
self._aggregated_metrics = None
self._inventory = None
@property
def aggregated_metrics(self):
"""
**[Required]** Gets the aggregated_metrics of this MySqlFleetSummary.
The usage metrics for the Managed MySQL Databases in the fleet.
:return: The aggregated_metrics of this MySqlFleetSummary.
:rtype: list[oci.database_management.models.MySqlFleetMetricSummaryDefinition]
"""
return self._aggregated_metrics
@aggregated_metrics.setter
def aggregated_metrics(self, aggregated_metrics):
"""
Sets the aggregated_metrics of this MySqlFleetSummary.
The usage metrics for the Managed MySQL Databases in the fleet.
:param aggregated_metrics: The aggregated_metrics of this MySqlFleetSummary.
:type: list[oci.database_management.models.MySqlFleetMetricSummaryDefinition]
"""
self._aggregated_metrics = aggregated_metrics
@property
def inventory(self):
"""
**[Required]** Gets the inventory of this MySqlFleetSummary.
A list of MySQL Databases in the fleet, grouped by database type.
:return: The inventory of this MySqlFleetSummary.
:rtype: list[oci.database_management.models.MySqlFleetByCategory]
"""
return self._inventory
@inventory.setter
def inventory(self, inventory):
"""
Sets the inventory of this MySqlFleetSummary.
A list of MySQL Databases in the fleet, grouped by database type.
:param inventory: The inventory of this MySqlFleetSummary.
:type: list[oci.database_management.models.MySqlFleetByCategory]
"""
self._inventory = inventory
def __repr__(self):
return formatted_flat_dict(self)
def __eq__(self, other):
if other is None:
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
return not self == other