# coding: utf-8

"""
    vedbm

    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 NodeForDescribeDBInstancesOutput(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 = {
        'failover_priority': 'int',
        'memory': 'int',
        'node_id': 'str',
        'node_spec': 'str',
        'node_type': 'str',
        'zone_id': 'str',
        'v_cpu': 'int'
    }

    attribute_map = {
        'failover_priority': 'FailoverPriority',
        'memory': 'Memory',
        'node_id': 'NodeId',
        'node_spec': 'NodeSpec',
        'node_type': 'NodeType',
        'zone_id': 'ZoneId',
        'v_cpu': 'vCPU'
    }

    def __init__(self, failover_priority=None, memory=None, node_id=None, node_spec=None, node_type=None, zone_id=None, v_cpu=None, _configuration=None):  # noqa: E501
        """NodeForDescribeDBInstancesOutput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._failover_priority = None
        self._memory = None
        self._node_id = None
        self._node_spec = None
        self._node_type = None
        self._zone_id = None
        self._v_cpu = None
        self.discriminator = None

        if failover_priority is not None:
            self.failover_priority = failover_priority
        if memory is not None:
            self.memory = memory
        if node_id is not None:
            self.node_id = node_id
        if node_spec is not None:
            self.node_spec = node_spec
        if node_type is not None:
            self.node_type = node_type
        if zone_id is not None:
            self.zone_id = zone_id
        if v_cpu is not None:
            self.v_cpu = v_cpu

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


        :return: The failover_priority of this NodeForDescribeDBInstancesOutput.  # noqa: E501
        :rtype: int
        """
        return self._failover_priority

    @failover_priority.setter
    def failover_priority(self, failover_priority):
        """Sets the failover_priority of this NodeForDescribeDBInstancesOutput.


        :param failover_priority: The failover_priority of this NodeForDescribeDBInstancesOutput.  # noqa: E501
        :type: int
        """

        self._failover_priority = failover_priority

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


        :return: The memory of this NodeForDescribeDBInstancesOutput.  # noqa: E501
        :rtype: int
        """
        return self._memory

    @memory.setter
    def memory(self, memory):
        """Sets the memory of this NodeForDescribeDBInstancesOutput.


        :param memory: The memory of this NodeForDescribeDBInstancesOutput.  # noqa: E501
        :type: int
        """

        self._memory = memory

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


        :return: The node_id of this NodeForDescribeDBInstancesOutput.  # noqa: E501
        :rtype: str
        """
        return self._node_id

    @node_id.setter
    def node_id(self, node_id):
        """Sets the node_id of this NodeForDescribeDBInstancesOutput.


        :param node_id: The node_id of this NodeForDescribeDBInstancesOutput.  # noqa: E501
        :type: str
        """

        self._node_id = node_id

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


        :return: The node_spec of this NodeForDescribeDBInstancesOutput.  # noqa: E501
        :rtype: str
        """
        return self._node_spec

    @node_spec.setter
    def node_spec(self, node_spec):
        """Sets the node_spec of this NodeForDescribeDBInstancesOutput.


        :param node_spec: The node_spec of this NodeForDescribeDBInstancesOutput.  # noqa: E501
        :type: str
        """

        self._node_spec = node_spec

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


        :return: The node_type of this NodeForDescribeDBInstancesOutput.  # noqa: E501
        :rtype: str
        """
        return self._node_type

    @node_type.setter
    def node_type(self, node_type):
        """Sets the node_type of this NodeForDescribeDBInstancesOutput.


        :param node_type: The node_type of this NodeForDescribeDBInstancesOutput.  # noqa: E501
        :type: str
        """

        self._node_type = node_type

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


        :return: The zone_id of this NodeForDescribeDBInstancesOutput.  # noqa: E501
        :rtype: str
        """
        return self._zone_id

    @zone_id.setter
    def zone_id(self, zone_id):
        """Sets the zone_id of this NodeForDescribeDBInstancesOutput.


        :param zone_id: The zone_id of this NodeForDescribeDBInstancesOutput.  # noqa: E501
        :type: str
        """

        self._zone_id = zone_id

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


        :return: The v_cpu of this NodeForDescribeDBInstancesOutput.  # noqa: E501
        :rtype: int
        """
        return self._v_cpu

    @v_cpu.setter
    def v_cpu(self, v_cpu):
        """Sets the v_cpu of this NodeForDescribeDBInstancesOutput.


        :param v_cpu: The v_cpu of this NodeForDescribeDBInstancesOutput.  # noqa: E501
        :type: int
        """

        self._v_cpu = v_cpu

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

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