# coding: utf-8

"""
    id

    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 CreateServiceRequest(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 = {
        'backend': 'BackendForCreateServiceInput',
        'description': 'str',
        'permission_space_id': 'str',
        'permission_space_name': 'str',
        'project_name': 'str',
        'routes': 'list[RouteForCreateServiceInput]',
        'service_name': 'str',
        'tags': 'list[TagForCreateServiceInput]'
    }

    attribute_map = {
        'backend': 'Backend',
        'description': 'Description',
        'permission_space_id': 'PermissionSpaceId',
        'permission_space_name': 'PermissionSpaceName',
        'project_name': 'ProjectName',
        'routes': 'Routes',
        'service_name': 'ServiceName',
        'tags': 'Tags'
    }

    def __init__(self, backend=None, description=None, permission_space_id=None, permission_space_name=None, project_name=None, routes=None, service_name=None, tags=None, _configuration=None):  # noqa: E501
        """CreateServiceRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._backend = None
        self._description = None
        self._permission_space_id = None
        self._permission_space_name = None
        self._project_name = None
        self._routes = None
        self._service_name = None
        self._tags = None
        self.discriminator = None

        if backend is not None:
            self.backend = backend
        if description is not None:
            self.description = description
        self.permission_space_id = permission_space_id
        if permission_space_name is not None:
            self.permission_space_name = permission_space_name
        if project_name is not None:
            self.project_name = project_name
        if routes is not None:
            self.routes = routes
        self.service_name = service_name
        if tags is not None:
            self.tags = tags

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


        :return: The backend of this CreateServiceRequest.  # noqa: E501
        :rtype: BackendForCreateServiceInput
        """
        return self._backend

    @backend.setter
    def backend(self, backend):
        """Sets the backend of this CreateServiceRequest.


        :param backend: The backend of this CreateServiceRequest.  # noqa: E501
        :type: BackendForCreateServiceInput
        """

        self._backend = backend

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


        :return: The description of this CreateServiceRequest.  # noqa: E501
        :rtype: str
        """
        return self._description

    @description.setter
    def description(self, description):
        """Sets the description of this CreateServiceRequest.


        :param description: The description of this CreateServiceRequest.  # noqa: E501
        :type: str
        """

        self._description = description

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


        :return: The permission_space_id of this CreateServiceRequest.  # noqa: E501
        :rtype: str
        """
        return self._permission_space_id

    @permission_space_id.setter
    def permission_space_id(self, permission_space_id):
        """Sets the permission_space_id of this CreateServiceRequest.


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

        self._permission_space_id = permission_space_id

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


        :return: The permission_space_name of this CreateServiceRequest.  # noqa: E501
        :rtype: str
        """
        return self._permission_space_name

    @permission_space_name.setter
    def permission_space_name(self, permission_space_name):
        """Sets the permission_space_name of this CreateServiceRequest.


        :param permission_space_name: The permission_space_name of this CreateServiceRequest.  # noqa: E501
        :type: str
        """

        self._permission_space_name = permission_space_name

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


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

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


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

        self._project_name = project_name

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


        :return: The routes of this CreateServiceRequest.  # noqa: E501
        :rtype: list[RouteForCreateServiceInput]
        """
        return self._routes

    @routes.setter
    def routes(self, routes):
        """Sets the routes of this CreateServiceRequest.


        :param routes: The routes of this CreateServiceRequest.  # noqa: E501
        :type: list[RouteForCreateServiceInput]
        """

        self._routes = routes

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


        :return: The service_name of this CreateServiceRequest.  # noqa: E501
        :rtype: str
        """
        return self._service_name

    @service_name.setter
    def service_name(self, service_name):
        """Sets the service_name of this CreateServiceRequest.


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

        self._service_name = service_name

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


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

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


        :param tags: The tags of this CreateServiceRequest.  # noqa: E501
        :type: list[TagForCreateServiceInput]
        """

        self._tags = tags

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

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