# coding: utf-8

"""
    seccenter20240508

    No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)  # noqa: E501

    OpenAPI spec version: common-version
    
    Generated by: https://github.com/swagger-api/swagger-codegen.git
"""


import pprint
import re  # noqa: F401

import six

from volcenginesdkcore.configuration import Configuration


class GetClusterStatisticsResponse(object):
    """NOTE: This class is auto generated by the swagger code generator program.

    Do not edit the class manually.
    """

    """
    Attributes:
      swagger_types (dict): The key is attribute name
                            and the value is attribute type.
      attribute_map (dict): The key is attribute name
                            and the value is json key in definition.
    """
    swagger_types = {
        'billing_center_url': 'str',
        'total_hardened_node_count': 'int',
        'update_time': 'str',
        'upgradable_version_count': 'int',
        'varmor_status_stats': 'list[VarmorStatusStatForGetClusterStatisticsOutput]'
    }

    attribute_map = {
        'billing_center_url': 'BillingCenterUrl',
        'total_hardened_node_count': 'TotalHardenedNodeCount',
        'update_time': 'UpdateTime',
        'upgradable_version_count': 'UpgradableVersionCount',
        'varmor_status_stats': 'VarmorStatusStats'
    }

    def __init__(self, billing_center_url=None, total_hardened_node_count=None, update_time=None, upgradable_version_count=None, varmor_status_stats=None, _configuration=None):  # noqa: E501
        """GetClusterStatisticsResponse - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._billing_center_url = None
        self._total_hardened_node_count = None
        self._update_time = None
        self._upgradable_version_count = None
        self._varmor_status_stats = None
        self.discriminator = None

        if billing_center_url is not None:
            self.billing_center_url = billing_center_url
        if total_hardened_node_count is not None:
            self.total_hardened_node_count = total_hardened_node_count
        if update_time is not None:
            self.update_time = update_time
        if upgradable_version_count is not None:
            self.upgradable_version_count = upgradable_version_count
        if varmor_status_stats is not None:
            self.varmor_status_stats = varmor_status_stats

    @property
    def billing_center_url(self):
        """Gets the billing_center_url of this GetClusterStatisticsResponse.  # noqa: E501


        :return: The billing_center_url of this GetClusterStatisticsResponse.  # noqa: E501
        :rtype: str
        """
        return self._billing_center_url

    @billing_center_url.setter
    def billing_center_url(self, billing_center_url):
        """Sets the billing_center_url of this GetClusterStatisticsResponse.


        :param billing_center_url: The billing_center_url of this GetClusterStatisticsResponse.  # noqa: E501
        :type: str
        """

        self._billing_center_url = billing_center_url

    @property
    def total_hardened_node_count(self):
        """Gets the total_hardened_node_count of this GetClusterStatisticsResponse.  # noqa: E501


        :return: The total_hardened_node_count of this GetClusterStatisticsResponse.  # noqa: E501
        :rtype: int
        """
        return self._total_hardened_node_count

    @total_hardened_node_count.setter
    def total_hardened_node_count(self, total_hardened_node_count):
        """Sets the total_hardened_node_count of this GetClusterStatisticsResponse.


        :param total_hardened_node_count: The total_hardened_node_count of this GetClusterStatisticsResponse.  # noqa: E501
        :type: int
        """

        self._total_hardened_node_count = total_hardened_node_count

    @property
    def update_time(self):
        """Gets the update_time of this GetClusterStatisticsResponse.  # noqa: E501


        :return: The update_time of this GetClusterStatisticsResponse.  # noqa: E501
        :rtype: str
        """
        return self._update_time

    @update_time.setter
    def update_time(self, update_time):
        """Sets the update_time of this GetClusterStatisticsResponse.


        :param update_time: The update_time of this GetClusterStatisticsResponse.  # noqa: E501
        :type: str
        """

        self._update_time = update_time

    @property
    def upgradable_version_count(self):
        """Gets the upgradable_version_count of this GetClusterStatisticsResponse.  # noqa: E501


        :return: The upgradable_version_count of this GetClusterStatisticsResponse.  # noqa: E501
        :rtype: int
        """
        return self._upgradable_version_count

    @upgradable_version_count.setter
    def upgradable_version_count(self, upgradable_version_count):
        """Sets the upgradable_version_count of this GetClusterStatisticsResponse.


        :param upgradable_version_count: The upgradable_version_count of this GetClusterStatisticsResponse.  # noqa: E501
        :type: int
        """

        self._upgradable_version_count = upgradable_version_count

    @property
    def varmor_status_stats(self):
        """Gets the varmor_status_stats of this GetClusterStatisticsResponse.  # noqa: E501


        :return: The varmor_status_stats of this GetClusterStatisticsResponse.  # noqa: E501
        :rtype: list[VarmorStatusStatForGetClusterStatisticsOutput]
        """
        return self._varmor_status_stats

    @varmor_status_stats.setter
    def varmor_status_stats(self, varmor_status_stats):
        """Sets the varmor_status_stats of this GetClusterStatisticsResponse.


        :param varmor_status_stats: The varmor_status_stats of this GetClusterStatisticsResponse.  # noqa: E501
        :type: list[VarmorStatusStatForGetClusterStatisticsOutput]
        """

        self._varmor_status_stats = varmor_status_stats

    def to_dict(self):
        """Returns the model properties as a dict"""
        result = {}

        for attr, _ in six.iteritems(self.swagger_types):
            value = getattr(self, attr)
            if isinstance(value, list):
                result[attr] = list(map(
                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
                    value
                ))
            elif hasattr(value, "to_dict"):
                result[attr] = value.to_dict()
            elif isinstance(value, dict):
                result[attr] = dict(map(
                    lambda item: (item[0], item[1].to_dict())
                    if hasattr(item[1], "to_dict") else item,
                    value.items()
                ))
            else:
                result[attr] = value
        if issubclass(GetClusterStatisticsResponse, dict):
            for key, value in self.items():
                result[key] = value

        return result

    def to_str(self):
        """Returns the string representation of the model"""
        return pprint.pformat(self.to_dict())

    def __repr__(self):
        """For `print` and `pprint`"""
        return self.to_str()

    def __eq__(self, other):
        """Returns true if both objects are equal"""
        if not isinstance(other, GetClusterStatisticsResponse):
            return False

        return self.to_dict() == other.to_dict()

    def __ne__(self, other):
        """Returns true if both objects are not equal"""
        if not isinstance(other, GetClusterStatisticsResponse):
            return True

        return self.to_dict() != other.to_dict()
