# 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 GetArmorProfileResponse(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 = {
        'armor_profile_name': 'str',
        'armor_profile_yaml': 'str',
        'current_number': 'int',
        'desired_number': 'int',
        'enforcer': 'str'
    }

    attribute_map = {
        'armor_profile_name': 'ArmorProfileName',
        'armor_profile_yaml': 'ArmorProfileYaml',
        'current_number': 'CurrentNumber',
        'desired_number': 'DesiredNumber',
        'enforcer': 'Enforcer'
    }

    def __init__(self, armor_profile_name=None, armor_profile_yaml=None, current_number=None, desired_number=None, enforcer=None, _configuration=None):  # noqa: E501
        """GetArmorProfileResponse - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._armor_profile_name = None
        self._armor_profile_yaml = None
        self._current_number = None
        self._desired_number = None
        self._enforcer = None
        self.discriminator = None

        if armor_profile_name is not None:
            self.armor_profile_name = armor_profile_name
        if armor_profile_yaml is not None:
            self.armor_profile_yaml = armor_profile_yaml
        if current_number is not None:
            self.current_number = current_number
        if desired_number is not None:
            self.desired_number = desired_number
        if enforcer is not None:
            self.enforcer = enforcer

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


        :return: The armor_profile_name of this GetArmorProfileResponse.  # noqa: E501
        :rtype: str
        """
        return self._armor_profile_name

    @armor_profile_name.setter
    def armor_profile_name(self, armor_profile_name):
        """Sets the armor_profile_name of this GetArmorProfileResponse.


        :param armor_profile_name: The armor_profile_name of this GetArmorProfileResponse.  # noqa: E501
        :type: str
        """

        self._armor_profile_name = armor_profile_name

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


        :return: The armor_profile_yaml of this GetArmorProfileResponse.  # noqa: E501
        :rtype: str
        """
        return self._armor_profile_yaml

    @armor_profile_yaml.setter
    def armor_profile_yaml(self, armor_profile_yaml):
        """Sets the armor_profile_yaml of this GetArmorProfileResponse.


        :param armor_profile_yaml: The armor_profile_yaml of this GetArmorProfileResponse.  # noqa: E501
        :type: str
        """

        self._armor_profile_yaml = armor_profile_yaml

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


        :return: The current_number of this GetArmorProfileResponse.  # noqa: E501
        :rtype: int
        """
        return self._current_number

    @current_number.setter
    def current_number(self, current_number):
        """Sets the current_number of this GetArmorProfileResponse.


        :param current_number: The current_number of this GetArmorProfileResponse.  # noqa: E501
        :type: int
        """

        self._current_number = current_number

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


        :return: The desired_number of this GetArmorProfileResponse.  # noqa: E501
        :rtype: int
        """
        return self._desired_number

    @desired_number.setter
    def desired_number(self, desired_number):
        """Sets the desired_number of this GetArmorProfileResponse.


        :param desired_number: The desired_number of this GetArmorProfileResponse.  # noqa: E501
        :type: int
        """

        self._desired_number = desired_number

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


        :return: The enforcer of this GetArmorProfileResponse.  # noqa: E501
        :rtype: str
        """
        return self._enforcer

    @enforcer.setter
    def enforcer(self, enforcer):
        """Sets the enforcer of this GetArmorProfileResponse.


        :param enforcer: The enforcer of this GetArmorProfileResponse.  # noqa: E501
        :type: str
        """

        self._enforcer = enforcer

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

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