# 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 GetPolicyStatisticsResponse(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 = {
        'cluster_hardening_stats': 'ClusterHardeningStatsForGetPolicyStatisticsOutput',
        'clusters_without_varmor_count': 'int',
        'policy_status_stats': 'list[PolicyStatusStatForGetPolicyStatisticsOutput]',
        'update_time': 'str'
    }

    attribute_map = {
        'cluster_hardening_stats': 'ClusterHardeningStats',
        'clusters_without_varmor_count': 'ClustersWithoutVarmorCount',
        'policy_status_stats': 'PolicyStatusStats',
        'update_time': 'UpdateTime'
    }

    def __init__(self, cluster_hardening_stats=None, clusters_without_varmor_count=None, policy_status_stats=None, update_time=None, _configuration=None):  # noqa: E501
        """GetPolicyStatisticsResponse - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._cluster_hardening_stats = None
        self._clusters_without_varmor_count = None
        self._policy_status_stats = None
        self._update_time = None
        self.discriminator = None

        if cluster_hardening_stats is not None:
            self.cluster_hardening_stats = cluster_hardening_stats
        if clusters_without_varmor_count is not None:
            self.clusters_without_varmor_count = clusters_without_varmor_count
        if policy_status_stats is not None:
            self.policy_status_stats = policy_status_stats
        if update_time is not None:
            self.update_time = update_time

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


        :return: The cluster_hardening_stats of this GetPolicyStatisticsResponse.  # noqa: E501
        :rtype: ClusterHardeningStatsForGetPolicyStatisticsOutput
        """
        return self._cluster_hardening_stats

    @cluster_hardening_stats.setter
    def cluster_hardening_stats(self, cluster_hardening_stats):
        """Sets the cluster_hardening_stats of this GetPolicyStatisticsResponse.


        :param cluster_hardening_stats: The cluster_hardening_stats of this GetPolicyStatisticsResponse.  # noqa: E501
        :type: ClusterHardeningStatsForGetPolicyStatisticsOutput
        """

        self._cluster_hardening_stats = cluster_hardening_stats

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


        :return: The clusters_without_varmor_count of this GetPolicyStatisticsResponse.  # noqa: E501
        :rtype: int
        """
        return self._clusters_without_varmor_count

    @clusters_without_varmor_count.setter
    def clusters_without_varmor_count(self, clusters_without_varmor_count):
        """Sets the clusters_without_varmor_count of this GetPolicyStatisticsResponse.


        :param clusters_without_varmor_count: The clusters_without_varmor_count of this GetPolicyStatisticsResponse.  # noqa: E501
        :type: int
        """

        self._clusters_without_varmor_count = clusters_without_varmor_count

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


        :return: The policy_status_stats of this GetPolicyStatisticsResponse.  # noqa: E501
        :rtype: list[PolicyStatusStatForGetPolicyStatisticsOutput]
        """
        return self._policy_status_stats

    @policy_status_stats.setter
    def policy_status_stats(self, policy_status_stats):
        """Sets the policy_status_stats of this GetPolicyStatisticsResponse.


        :param policy_status_stats: The policy_status_stats of this GetPolicyStatisticsResponse.  # noqa: E501
        :type: list[PolicyStatusStatForGetPolicyStatisticsOutput]
        """

        self._policy_status_stats = policy_status_stats

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


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

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


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

        self._update_time = update_time

    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(GetPolicyStatisticsResponse, 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, GetPolicyStatisticsResponse):
            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, GetPolicyStatisticsResponse):
            return True

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