# coding: utf-8

"""
    aidap

    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 CreateAccessControlListRequest(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 = {
        'access_control_list_name': 'str',
        'acl_type': 'str',
        'ip_list': 'list[str]',
        'workspace_id': 'str'
    }

    attribute_map = {
        'access_control_list_name': 'AccessControlListName',
        'acl_type': 'AclType',
        'ip_list': 'IPList',
        'workspace_id': 'WorkspaceId'
    }

    def __init__(self, access_control_list_name=None, acl_type=None, ip_list=None, workspace_id=None, _configuration=None):  # noqa: E501
        """CreateAccessControlListRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._access_control_list_name = None
        self._acl_type = None
        self._ip_list = None
        self._workspace_id = None
        self.discriminator = None

        self.access_control_list_name = access_control_list_name
        self.acl_type = acl_type
        if ip_list is not None:
            self.ip_list = ip_list
        self.workspace_id = workspace_id

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


        :return: The access_control_list_name of this CreateAccessControlListRequest.  # noqa: E501
        :rtype: str
        """
        return self._access_control_list_name

    @access_control_list_name.setter
    def access_control_list_name(self, access_control_list_name):
        """Sets the access_control_list_name of this CreateAccessControlListRequest.


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

        self._access_control_list_name = access_control_list_name

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


        :return: The acl_type of this CreateAccessControlListRequest.  # noqa: E501
        :rtype: str
        """
        return self._acl_type

    @acl_type.setter
    def acl_type(self, acl_type):
        """Sets the acl_type of this CreateAccessControlListRequest.


        :param acl_type: The acl_type of this CreateAccessControlListRequest.  # noqa: E501
        :type: str
        """
        if self._configuration.client_side_validation and acl_type is None:
            raise ValueError("Invalid value for `acl_type`, must not be `None`")  # noqa: E501
        allowed_values = ["Allow", "Deny"]  # noqa: E501
        if (self._configuration.client_side_validation and
                acl_type not in allowed_values):
            raise ValueError(
                "Invalid value for `acl_type` ({0}), must be one of {1}"  # noqa: E501
                .format(acl_type, allowed_values)
            )

        self._acl_type = acl_type

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


        :return: The ip_list of this CreateAccessControlListRequest.  # noqa: E501
        :rtype: list[str]
        """
        return self._ip_list

    @ip_list.setter
    def ip_list(self, ip_list):
        """Sets the ip_list of this CreateAccessControlListRequest.


        :param ip_list: The ip_list of this CreateAccessControlListRequest.  # noqa: E501
        :type: list[str]
        """

        self._ip_list = ip_list

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


        :return: The workspace_id of this CreateAccessControlListRequest.  # noqa: E501
        :rtype: str
        """
        return self._workspace_id

    @workspace_id.setter
    def workspace_id(self, workspace_id):
        """Sets the workspace_id of this CreateAccessControlListRequest.


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

        self._workspace_id = workspace_id

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

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