# coding: utf-8

"""
    rds_postgresql

    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 RestoreToNewInstanceRequest(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 = {
        'allow_list_ids': 'list[str]',
        'backup_id': 'str',
        'charge_info': 'ChargeInfoForRestoreToNewInstanceInput',
        'instance_name': 'str',
        'maintenance_window': 'MaintenanceWindowForRestoreToNewInstanceInput',
        'node_info': 'list[NodeInfoForRestoreToNewInstanceInput]',
        'project_name': 'str',
        'restore_time': 'str',
        'src_instance_id': 'str',
        'storage_space': 'int',
        'storage_type': 'str',
        'subnet_id': 'str',
        'tags': 'list[TagForRestoreToNewInstanceInput]',
        'vpc_id': 'str'
    }

    attribute_map = {
        'allow_list_ids': 'AllowListIds',
        'backup_id': 'BackupId',
        'charge_info': 'ChargeInfo',
        'instance_name': 'InstanceName',
        'maintenance_window': 'MaintenanceWindow',
        'node_info': 'NodeInfo',
        'project_name': 'ProjectName',
        'restore_time': 'RestoreTime',
        'src_instance_id': 'SrcInstanceId',
        'storage_space': 'StorageSpace',
        'storage_type': 'StorageType',
        'subnet_id': 'SubnetId',
        'tags': 'Tags',
        'vpc_id': 'VpcId'
    }

    def __init__(self, allow_list_ids=None, backup_id=None, charge_info=None, instance_name=None, maintenance_window=None, node_info=None, project_name=None, restore_time=None, src_instance_id=None, storage_space=None, storage_type=None, subnet_id=None, tags=None, vpc_id=None, _configuration=None):  # noqa: E501
        """RestoreToNewInstanceRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._allow_list_ids = None
        self._backup_id = None
        self._charge_info = None
        self._instance_name = None
        self._maintenance_window = None
        self._node_info = None
        self._project_name = None
        self._restore_time = None
        self._src_instance_id = None
        self._storage_space = None
        self._storage_type = None
        self._subnet_id = None
        self._tags = None
        self._vpc_id = None
        self.discriminator = None

        if allow_list_ids is not None:
            self.allow_list_ids = allow_list_ids
        if backup_id is not None:
            self.backup_id = backup_id
        if charge_info is not None:
            self.charge_info = charge_info
        if instance_name is not None:
            self.instance_name = instance_name
        if maintenance_window is not None:
            self.maintenance_window = maintenance_window
        if node_info is not None:
            self.node_info = node_info
        if project_name is not None:
            self.project_name = project_name
        if restore_time is not None:
            self.restore_time = restore_time
        self.src_instance_id = src_instance_id
        if storage_space is not None:
            self.storage_space = storage_space
        self.storage_type = storage_type
        self.subnet_id = subnet_id
        if tags is not None:
            self.tags = tags
        self.vpc_id = vpc_id

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


        :return: The allow_list_ids of this RestoreToNewInstanceRequest.  # noqa: E501
        :rtype: list[str]
        """
        return self._allow_list_ids

    @allow_list_ids.setter
    def allow_list_ids(self, allow_list_ids):
        """Sets the allow_list_ids of this RestoreToNewInstanceRequest.


        :param allow_list_ids: The allow_list_ids of this RestoreToNewInstanceRequest.  # noqa: E501
        :type: list[str]
        """

        self._allow_list_ids = allow_list_ids

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


        :return: The backup_id of this RestoreToNewInstanceRequest.  # noqa: E501
        :rtype: str
        """
        return self._backup_id

    @backup_id.setter
    def backup_id(self, backup_id):
        """Sets the backup_id of this RestoreToNewInstanceRequest.


        :param backup_id: The backup_id of this RestoreToNewInstanceRequest.  # noqa: E501
        :type: str
        """

        self._backup_id = backup_id

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


        :return: The charge_info of this RestoreToNewInstanceRequest.  # noqa: E501
        :rtype: ChargeInfoForRestoreToNewInstanceInput
        """
        return self._charge_info

    @charge_info.setter
    def charge_info(self, charge_info):
        """Sets the charge_info of this RestoreToNewInstanceRequest.


        :param charge_info: The charge_info of this RestoreToNewInstanceRequest.  # noqa: E501
        :type: ChargeInfoForRestoreToNewInstanceInput
        """

        self._charge_info = charge_info

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


        :return: The instance_name of this RestoreToNewInstanceRequest.  # noqa: E501
        :rtype: str
        """
        return self._instance_name

    @instance_name.setter
    def instance_name(self, instance_name):
        """Sets the instance_name of this RestoreToNewInstanceRequest.


        :param instance_name: The instance_name of this RestoreToNewInstanceRequest.  # noqa: E501
        :type: str
        """

        self._instance_name = instance_name

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


        :return: The maintenance_window of this RestoreToNewInstanceRequest.  # noqa: E501
        :rtype: MaintenanceWindowForRestoreToNewInstanceInput
        """
        return self._maintenance_window

    @maintenance_window.setter
    def maintenance_window(self, maintenance_window):
        """Sets the maintenance_window of this RestoreToNewInstanceRequest.


        :param maintenance_window: The maintenance_window of this RestoreToNewInstanceRequest.  # noqa: E501
        :type: MaintenanceWindowForRestoreToNewInstanceInput
        """

        self._maintenance_window = maintenance_window

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


        :return: The node_info of this RestoreToNewInstanceRequest.  # noqa: E501
        :rtype: list[NodeInfoForRestoreToNewInstanceInput]
        """
        return self._node_info

    @node_info.setter
    def node_info(self, node_info):
        """Sets the node_info of this RestoreToNewInstanceRequest.


        :param node_info: The node_info of this RestoreToNewInstanceRequest.  # noqa: E501
        :type: list[NodeInfoForRestoreToNewInstanceInput]
        """

        self._node_info = node_info

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


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

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


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

        self._project_name = project_name

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


        :return: The restore_time of this RestoreToNewInstanceRequest.  # noqa: E501
        :rtype: str
        """
        return self._restore_time

    @restore_time.setter
    def restore_time(self, restore_time):
        """Sets the restore_time of this RestoreToNewInstanceRequest.


        :param restore_time: The restore_time of this RestoreToNewInstanceRequest.  # noqa: E501
        :type: str
        """

        self._restore_time = restore_time

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


        :return: The src_instance_id of this RestoreToNewInstanceRequest.  # noqa: E501
        :rtype: str
        """
        return self._src_instance_id

    @src_instance_id.setter
    def src_instance_id(self, src_instance_id):
        """Sets the src_instance_id of this RestoreToNewInstanceRequest.


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

        self._src_instance_id = src_instance_id

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


        :return: The storage_space of this RestoreToNewInstanceRequest.  # noqa: E501
        :rtype: int
        """
        return self._storage_space

    @storage_space.setter
    def storage_space(self, storage_space):
        """Sets the storage_space of this RestoreToNewInstanceRequest.


        :param storage_space: The storage_space of this RestoreToNewInstanceRequest.  # noqa: E501
        :type: int
        """

        self._storage_space = storage_space

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


        :return: The storage_type of this RestoreToNewInstanceRequest.  # noqa: E501
        :rtype: str
        """
        return self._storage_type

    @storage_type.setter
    def storage_type(self, storage_type):
        """Sets the storage_type of this RestoreToNewInstanceRequest.


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

        self._storage_type = storage_type

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


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

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


        :param subnet_id: The subnet_id of this RestoreToNewInstanceRequest.  # 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 tags(self):
        """Gets the tags of this RestoreToNewInstanceRequest.  # noqa: E501


        :return: The tags of this RestoreToNewInstanceRequest.  # noqa: E501
        :rtype: list[TagForRestoreToNewInstanceInput]
        """
        return self._tags

    @tags.setter
    def tags(self, tags):
        """Sets the tags of this RestoreToNewInstanceRequest.


        :param tags: The tags of this RestoreToNewInstanceRequest.  # noqa: E501
        :type: list[TagForRestoreToNewInstanceInput]
        """

        self._tags = tags

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


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

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


        :param vpc_id: The vpc_id of this RestoreToNewInstanceRequest.  # 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

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

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