# coding: utf-8

"""
    vke

    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 ClusterConfigForCreateClusterInput(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 = {
        'api_server_public_access_config': 'ApiServerPublicAccessConfigForCreateClusterInput',
        'api_server_public_access_enabled': 'bool',
        'resource_public_access_default_enabled': 'bool',
        'subnet_ids': 'list[str]'
    }

    attribute_map = {
        'api_server_public_access_config': 'ApiServerPublicAccessConfig',
        'api_server_public_access_enabled': 'ApiServerPublicAccessEnabled',
        'resource_public_access_default_enabled': 'ResourcePublicAccessDefaultEnabled',
        'subnet_ids': 'SubnetIds'
    }

    def __init__(self, api_server_public_access_config=None, api_server_public_access_enabled=None, resource_public_access_default_enabled=None, subnet_ids=None, _configuration=None):  # noqa: E501
        """ClusterConfigForCreateClusterInput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._api_server_public_access_config = None
        self._api_server_public_access_enabled = None
        self._resource_public_access_default_enabled = None
        self._subnet_ids = None
        self.discriminator = None

        if api_server_public_access_config is not None:
            self.api_server_public_access_config = api_server_public_access_config
        if api_server_public_access_enabled is not None:
            self.api_server_public_access_enabled = api_server_public_access_enabled
        if resource_public_access_default_enabled is not None:
            self.resource_public_access_default_enabled = resource_public_access_default_enabled
        if subnet_ids is not None:
            self.subnet_ids = subnet_ids

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


        :return: The api_server_public_access_config of this ClusterConfigForCreateClusterInput.  # noqa: E501
        :rtype: ApiServerPublicAccessConfigForCreateClusterInput
        """
        return self._api_server_public_access_config

    @api_server_public_access_config.setter
    def api_server_public_access_config(self, api_server_public_access_config):
        """Sets the api_server_public_access_config of this ClusterConfigForCreateClusterInput.


        :param api_server_public_access_config: The api_server_public_access_config of this ClusterConfigForCreateClusterInput.  # noqa: E501
        :type: ApiServerPublicAccessConfigForCreateClusterInput
        """

        self._api_server_public_access_config = api_server_public_access_config

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


        :return: The api_server_public_access_enabled of this ClusterConfigForCreateClusterInput.  # noqa: E501
        :rtype: bool
        """
        return self._api_server_public_access_enabled

    @api_server_public_access_enabled.setter
    def api_server_public_access_enabled(self, api_server_public_access_enabled):
        """Sets the api_server_public_access_enabled of this ClusterConfigForCreateClusterInput.


        :param api_server_public_access_enabled: The api_server_public_access_enabled of this ClusterConfigForCreateClusterInput.  # noqa: E501
        :type: bool
        """

        self._api_server_public_access_enabled = api_server_public_access_enabled

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


        :return: The resource_public_access_default_enabled of this ClusterConfigForCreateClusterInput.  # noqa: E501
        :rtype: bool
        """
        return self._resource_public_access_default_enabled

    @resource_public_access_default_enabled.setter
    def resource_public_access_default_enabled(self, resource_public_access_default_enabled):
        """Sets the resource_public_access_default_enabled of this ClusterConfigForCreateClusterInput.


        :param resource_public_access_default_enabled: The resource_public_access_default_enabled of this ClusterConfigForCreateClusterInput.  # noqa: E501
        :type: bool
        """

        self._resource_public_access_default_enabled = resource_public_access_default_enabled

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


        :return: The subnet_ids of this ClusterConfigForCreateClusterInput.  # noqa: E501
        :rtype: list[str]
        """
        return self._subnet_ids

    @subnet_ids.setter
    def subnet_ids(self, subnet_ids):
        """Sets the subnet_ids of this ClusterConfigForCreateClusterInput.


        :param subnet_ids: The subnet_ids of this ClusterConfigForCreateClusterInput.  # noqa: E501
        :type: list[str]
        """

        self._subnet_ids = subnet_ids

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

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