# 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 ModifyVpcSettingsRequest(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 = {
        'branch_id': 'str',
        'internet_protocol': 'str',
        'subnet_id': 'str',
        'vpc_id': 'str',
        'workspace_id': 'str'
    }

    attribute_map = {
        'branch_id': 'BranchId',
        'internet_protocol': 'InternetProtocol',
        'subnet_id': 'SubnetId',
        'vpc_id': 'VpcId',
        'workspace_id': 'WorkspaceId'
    }

    def __init__(self, branch_id=None, internet_protocol=None, subnet_id=None, vpc_id=None, workspace_id=None, _configuration=None):  # noqa: E501
        """ModifyVpcSettingsRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._branch_id = None
        self._internet_protocol = None
        self._subnet_id = None
        self._vpc_id = None
        self._workspace_id = None
        self.discriminator = None

        if branch_id is not None:
            self.branch_id = branch_id
        self.internet_protocol = internet_protocol
        self.subnet_id = subnet_id
        self.vpc_id = vpc_id
        self.workspace_id = workspace_id

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


        :return: The branch_id of this ModifyVpcSettingsRequest.  # noqa: E501
        :rtype: str
        """
        return self._branch_id

    @branch_id.setter
    def branch_id(self, branch_id):
        """Sets the branch_id of this ModifyVpcSettingsRequest.


        :param branch_id: The branch_id of this ModifyVpcSettingsRequest.  # noqa: E501
        :type: str
        """

        self._branch_id = branch_id

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


        :return: The internet_protocol of this ModifyVpcSettingsRequest.  # noqa: E501
        :rtype: str
        """
        return self._internet_protocol

    @internet_protocol.setter
    def internet_protocol(self, internet_protocol):
        """Sets the internet_protocol of this ModifyVpcSettingsRequest.


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

        self._internet_protocol = internet_protocol

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


        :return: The subnet_id of this ModifyVpcSettingsRequest.  # noqa: E501
        :rtype: str
        """
        return self._subnet_id

    @subnet_id.setter
    def subnet_id(self, subnet_id):
        """Sets the subnet_id of this ModifyVpcSettingsRequest.


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

        self._subnet_id = subnet_id

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


        :return: The vpc_id of this ModifyVpcSettingsRequest.  # noqa: E501
        :rtype: str
        """
        return self._vpc_id

    @vpc_id.setter
    def vpc_id(self, vpc_id):
        """Sets the vpc_id of this ModifyVpcSettingsRequest.


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

        self._vpc_id = vpc_id

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


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

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


        :param workspace_id: The workspace_id of this ModifyVpcSettingsRequest.  # 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(ModifyVpcSettingsRequest, 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, ModifyVpcSettingsRequest):
            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, ModifyVpcSettingsRequest):
            return True

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