# coding: utf-8

"""
    filenas

    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 CreateAccessPointRequest(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 = {
        'access_point_name': 'str',
        'file_system_id': 'str',
        'permission_group_id': 'str',
        'posix_user': 'PosixUserForCreateAccessPointInput',
        'root_path': 'str',
        'root_path_permission': 'RootPathPermissionForCreateAccessPointInput',
        'subnet_id': 'str',
        'vpc_id': 'str'
    }

    attribute_map = {
        'access_point_name': 'AccessPointName',
        'file_system_id': 'FileSystemId',
        'permission_group_id': 'PermissionGroupId',
        'posix_user': 'PosixUser',
        'root_path': 'RootPath',
        'root_path_permission': 'RootPathPermission',
        'subnet_id': 'SubnetId',
        'vpc_id': 'VpcId'
    }

    def __init__(self, access_point_name=None, file_system_id=None, permission_group_id=None, posix_user=None, root_path=None, root_path_permission=None, subnet_id=None, vpc_id=None, _configuration=None):  # noqa: E501
        """CreateAccessPointRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._access_point_name = None
        self._file_system_id = None
        self._permission_group_id = None
        self._posix_user = None
        self._root_path = None
        self._root_path_permission = None
        self._subnet_id = None
        self._vpc_id = None
        self.discriminator = None

        self.access_point_name = access_point_name
        self.file_system_id = file_system_id
        self.permission_group_id = permission_group_id
        if posix_user is not None:
            self.posix_user = posix_user
        if root_path is not None:
            self.root_path = root_path
        if root_path_permission is not None:
            self.root_path_permission = root_path_permission
        if subnet_id is not None:
            self.subnet_id = subnet_id
        self.vpc_id = vpc_id

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


        :return: The access_point_name of this CreateAccessPointRequest.  # noqa: E501
        :rtype: str
        """
        return self._access_point_name

    @access_point_name.setter
    def access_point_name(self, access_point_name):
        """Sets the access_point_name of this CreateAccessPointRequest.


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

        self._access_point_name = access_point_name

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


        :return: The file_system_id of this CreateAccessPointRequest.  # noqa: E501
        :rtype: str
        """
        return self._file_system_id

    @file_system_id.setter
    def file_system_id(self, file_system_id):
        """Sets the file_system_id of this CreateAccessPointRequest.


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

        self._file_system_id = file_system_id

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


        :return: The permission_group_id of this CreateAccessPointRequest.  # noqa: E501
        :rtype: str
        """
        return self._permission_group_id

    @permission_group_id.setter
    def permission_group_id(self, permission_group_id):
        """Sets the permission_group_id of this CreateAccessPointRequest.


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

        self._permission_group_id = permission_group_id

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


        :return: The posix_user of this CreateAccessPointRequest.  # noqa: E501
        :rtype: PosixUserForCreateAccessPointInput
        """
        return self._posix_user

    @posix_user.setter
    def posix_user(self, posix_user):
        """Sets the posix_user of this CreateAccessPointRequest.


        :param posix_user: The posix_user of this CreateAccessPointRequest.  # noqa: E501
        :type: PosixUserForCreateAccessPointInput
        """

        self._posix_user = posix_user

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


        :return: The root_path of this CreateAccessPointRequest.  # noqa: E501
        :rtype: str
        """
        return self._root_path

    @root_path.setter
    def root_path(self, root_path):
        """Sets the root_path of this CreateAccessPointRequest.


        :param root_path: The root_path of this CreateAccessPointRequest.  # noqa: E501
        :type: str
        """

        self._root_path = root_path

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


        :return: The root_path_permission of this CreateAccessPointRequest.  # noqa: E501
        :rtype: RootPathPermissionForCreateAccessPointInput
        """
        return self._root_path_permission

    @root_path_permission.setter
    def root_path_permission(self, root_path_permission):
        """Sets the root_path_permission of this CreateAccessPointRequest.


        :param root_path_permission: The root_path_permission of this CreateAccessPointRequest.  # noqa: E501
        :type: RootPathPermissionForCreateAccessPointInput
        """

        self._root_path_permission = root_path_permission

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


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

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


        :param subnet_id: The subnet_id of this CreateAccessPointRequest.  # noqa: E501
        :type: str
        """

        self._subnet_id = subnet_id

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


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

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


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

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