# coding: utf-8

"""
    waf

    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 UpdateAllowRuleRequest(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 = {
        'accurate': 'AccurateForUpdateAllowRuleInput',
        'advanced': 'int',
        'client_ip': 'str',
        'description': 'str',
        'enable': 'int',
        'host': 'str',
        'id': 'int',
        'ip_add_type': 'int',
        'ip_group_id': 'list[int]',
        'name': 'str',
        'project_name': 'str',
        'url': 'str'
    }

    attribute_map = {
        'accurate': 'Accurate',
        'advanced': 'Advanced',
        'client_ip': 'ClientIp',
        'description': 'Description',
        'enable': 'Enable',
        'host': 'Host',
        'id': 'Id',
        'ip_add_type': 'IpAddType',
        'ip_group_id': 'IpGroupId',
        'name': 'Name',
        'project_name': 'ProjectName',
        'url': 'Url'
    }

    def __init__(self, accurate=None, advanced=None, client_ip=None, description=None, enable=None, host=None, id=None, ip_add_type=None, ip_group_id=None, name=None, project_name=None, url=None, _configuration=None):  # noqa: E501
        """UpdateAllowRuleRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._accurate = None
        self._advanced = None
        self._client_ip = None
        self._description = None
        self._enable = None
        self._host = None
        self._id = None
        self._ip_add_type = None
        self._ip_group_id = None
        self._name = None
        self._project_name = None
        self._url = None
        self.discriminator = None

        if accurate is not None:
            self.accurate = accurate
        self.advanced = advanced
        if client_ip is not None:
            self.client_ip = client_ip
        if description is not None:
            self.description = description
        if enable is not None:
            self.enable = enable
        self.host = host
        self.id = id
        if ip_add_type is not None:
            self.ip_add_type = ip_add_type
        if ip_group_id is not None:
            self.ip_group_id = ip_group_id
        if name is not None:
            self.name = name
        if project_name is not None:
            self.project_name = project_name
        self.url = url

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


        :return: The accurate of this UpdateAllowRuleRequest.  # noqa: E501
        :rtype: AccurateForUpdateAllowRuleInput
        """
        return self._accurate

    @accurate.setter
    def accurate(self, accurate):
        """Sets the accurate of this UpdateAllowRuleRequest.


        :param accurate: The accurate of this UpdateAllowRuleRequest.  # noqa: E501
        :type: AccurateForUpdateAllowRuleInput
        """

        self._accurate = accurate

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


        :return: The advanced of this UpdateAllowRuleRequest.  # noqa: E501
        :rtype: int
        """
        return self._advanced

    @advanced.setter
    def advanced(self, advanced):
        """Sets the advanced of this UpdateAllowRuleRequest.


        :param advanced: The advanced of this UpdateAllowRuleRequest.  # noqa: E501
        :type: int
        """
        if self._configuration.client_side_validation and advanced is None:
            raise ValueError("Invalid value for `advanced`, must not be `None`")  # noqa: E501

        self._advanced = advanced

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


        :return: The client_ip of this UpdateAllowRuleRequest.  # noqa: E501
        :rtype: str
        """
        return self._client_ip

    @client_ip.setter
    def client_ip(self, client_ip):
        """Sets the client_ip of this UpdateAllowRuleRequest.


        :param client_ip: The client_ip of this UpdateAllowRuleRequest.  # noqa: E501
        :type: str
        """

        self._client_ip = client_ip

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


        :return: The description of this UpdateAllowRuleRequest.  # noqa: E501
        :rtype: str
        """
        return self._description

    @description.setter
    def description(self, description):
        """Sets the description of this UpdateAllowRuleRequest.


        :param description: The description of this UpdateAllowRuleRequest.  # noqa: E501
        :type: str
        """

        self._description = description

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


        :return: The enable of this UpdateAllowRuleRequest.  # noqa: E501
        :rtype: int
        """
        return self._enable

    @enable.setter
    def enable(self, enable):
        """Sets the enable of this UpdateAllowRuleRequest.


        :param enable: The enable of this UpdateAllowRuleRequest.  # noqa: E501
        :type: int
        """

        self._enable = enable

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


        :return: The host of this UpdateAllowRuleRequest.  # noqa: E501
        :rtype: str
        """
        return self._host

    @host.setter
    def host(self, host):
        """Sets the host of this UpdateAllowRuleRequest.


        :param host: The host of this UpdateAllowRuleRequest.  # noqa: E501
        :type: str
        """
        if self._configuration.client_side_validation and host is None:
            raise ValueError("Invalid value for `host`, must not be `None`")  # noqa: E501

        self._host = host

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


        :return: The id of this UpdateAllowRuleRequest.  # noqa: E501
        :rtype: int
        """
        return self._id

    @id.setter
    def id(self, id):
        """Sets the id of this UpdateAllowRuleRequest.


        :param id: The id of this UpdateAllowRuleRequest.  # noqa: E501
        :type: int
        """
        if self._configuration.client_side_validation and id is None:
            raise ValueError("Invalid value for `id`, must not be `None`")  # noqa: E501

        self._id = id

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


        :return: The ip_add_type of this UpdateAllowRuleRequest.  # noqa: E501
        :rtype: int
        """
        return self._ip_add_type

    @ip_add_type.setter
    def ip_add_type(self, ip_add_type):
        """Sets the ip_add_type of this UpdateAllowRuleRequest.


        :param ip_add_type: The ip_add_type of this UpdateAllowRuleRequest.  # noqa: E501
        :type: int
        """

        self._ip_add_type = ip_add_type

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


        :return: The ip_group_id of this UpdateAllowRuleRequest.  # noqa: E501
        :rtype: list[int]
        """
        return self._ip_group_id

    @ip_group_id.setter
    def ip_group_id(self, ip_group_id):
        """Sets the ip_group_id of this UpdateAllowRuleRequest.


        :param ip_group_id: The ip_group_id of this UpdateAllowRuleRequest.  # noqa: E501
        :type: list[int]
        """

        self._ip_group_id = ip_group_id

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


        :return: The name of this UpdateAllowRuleRequest.  # noqa: E501
        :rtype: str
        """
        return self._name

    @name.setter
    def name(self, name):
        """Sets the name of this UpdateAllowRuleRequest.


        :param name: The name of this UpdateAllowRuleRequest.  # noqa: E501
        :type: str
        """

        self._name = name

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


        :return: The project_name of this UpdateAllowRuleRequest.  # noqa: E501
        :rtype: str
        """
        return self._project_name

    @project_name.setter
    def project_name(self, project_name):
        """Sets the project_name of this UpdateAllowRuleRequest.


        :param project_name: The project_name of this UpdateAllowRuleRequest.  # noqa: E501
        :type: str
        """

        self._project_name = project_name

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


        :return: The url of this UpdateAllowRuleRequest.  # noqa: E501
        :rtype: str
        """
        return self._url

    @url.setter
    def url(self, url):
        """Sets the url of this UpdateAllowRuleRequest.


        :param url: The url of this UpdateAllowRuleRequest.  # noqa: E501
        :type: str
        """
        if self._configuration.client_side_validation and url is None:
            raise ValueError("Invalid value for `url`, must not be `None`")  # noqa: E501

        self._url = url

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

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