# 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 ModifyComputeSettingsRequest(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 = {
        'auto_scaling_limit_max_cu': 'float',
        'auto_scaling_limit_min_cu': 'float',
        'suspend_timeout_seconds': 'int',
        'workspace_id': 'str'
    }

    attribute_map = {
        'auto_scaling_limit_max_cu': 'AutoScalingLimitMaxCU',
        'auto_scaling_limit_min_cu': 'AutoScalingLimitMinCU',
        'suspend_timeout_seconds': 'SuspendTimeoutSeconds',
        'workspace_id': 'WorkspaceId'
    }

    def __init__(self, auto_scaling_limit_max_cu=None, auto_scaling_limit_min_cu=None, suspend_timeout_seconds=None, workspace_id=None, _configuration=None):  # noqa: E501
        """ModifyComputeSettingsRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._auto_scaling_limit_max_cu = None
        self._auto_scaling_limit_min_cu = None
        self._suspend_timeout_seconds = None
        self._workspace_id = None
        self.discriminator = None

        self.auto_scaling_limit_max_cu = auto_scaling_limit_max_cu
        self.auto_scaling_limit_min_cu = auto_scaling_limit_min_cu
        if suspend_timeout_seconds is not None:
            self.suspend_timeout_seconds = suspend_timeout_seconds
        self.workspace_id = workspace_id

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


        :return: The auto_scaling_limit_max_cu of this ModifyComputeSettingsRequest.  # noqa: E501
        :rtype: float
        """
        return self._auto_scaling_limit_max_cu

    @auto_scaling_limit_max_cu.setter
    def auto_scaling_limit_max_cu(self, auto_scaling_limit_max_cu):
        """Sets the auto_scaling_limit_max_cu of this ModifyComputeSettingsRequest.


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

        self._auto_scaling_limit_max_cu = auto_scaling_limit_max_cu

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


        :return: The auto_scaling_limit_min_cu of this ModifyComputeSettingsRequest.  # noqa: E501
        :rtype: float
        """
        return self._auto_scaling_limit_min_cu

    @auto_scaling_limit_min_cu.setter
    def auto_scaling_limit_min_cu(self, auto_scaling_limit_min_cu):
        """Sets the auto_scaling_limit_min_cu of this ModifyComputeSettingsRequest.


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

        self._auto_scaling_limit_min_cu = auto_scaling_limit_min_cu

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


        :return: The suspend_timeout_seconds of this ModifyComputeSettingsRequest.  # noqa: E501
        :rtype: int
        """
        return self._suspend_timeout_seconds

    @suspend_timeout_seconds.setter
    def suspend_timeout_seconds(self, suspend_timeout_seconds):
        """Sets the suspend_timeout_seconds of this ModifyComputeSettingsRequest.


        :param suspend_timeout_seconds: The suspend_timeout_seconds of this ModifyComputeSettingsRequest.  # noqa: E501
        :type: int
        """

        self._suspend_timeout_seconds = suspend_timeout_seconds

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


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

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


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

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