ruạṛ
a ���f�9 � @ s8 d dl mZmZmZ d dlmZ eG dd� de��ZdS )� )�formatted_flat_dict� NONE_SENTINEL�#value_allowed_none_or_none_sentinel)�init_model_state_from_kwargsc @ s$ e Zd ZdZdZdZdZdZdZdZ dZ d Zd Zdd� Z ed d� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd � �Zejd!d � �Zed"d#� �Zejd$d#� �Zd%d&� Zd'd(� Zd)d*� Zd+S ),� ClientOptionsa NFS export options applied to a specified set of clients. Only governs access through the associated export. Access to the same file system through a different export (on the same or different mount target) will be governed by that export's export options. � READ_WRITE� READ_ONLY�NONE�ROOT�ALL�SYS�KRB5�KRB5I�KRB5Pc K sd ddddddddd�| _ dddd d ddd d�| _d| _d| _d| _d| _d| _d| _d| _d| _ dS )a Initializes a new ClientOptions object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param source: The value to assign to the source property of this ClientOptions. :type source: str :param require_privileged_source_port: The value to assign to the require_privileged_source_port property of this ClientOptions. :type require_privileged_source_port: bool :param access: The value to assign to the access property of this ClientOptions. Allowed values for this property are: "READ_WRITE", "READ_ONLY", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type access: str :param identity_squash: The value to assign to the identity_squash property of this ClientOptions. Allowed values for this property are: "NONE", "ROOT", "ALL", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type identity_squash: str :param anonymous_uid: The value to assign to the anonymous_uid property of this ClientOptions. :type anonymous_uid: int :param anonymous_gid: The value to assign to the anonymous_gid property of this ClientOptions. :type anonymous_gid: int :param is_anonymous_access_allowed: The value to assign to the is_anonymous_access_allowed property of this ClientOptions. :type is_anonymous_access_allowed: bool :param allowed_auth: The value to assign to the allowed_auth property of this ClientOptions. Allowed values for items in this list are: "SYS", "KRB5", "KRB5I", "KRB5P", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type allowed_auth: list[str] �str�bool�intz list[str])�source�require_privileged_source_port�access�identity_squash� anonymous_uid� anonymous_gid�is_anonymous_access_allowed�allowed_authr ZrequirePrivilegedSourcePortr ZidentitySquashZanonymousUidZanonymousGidZisAnonymousAccessAllowedZallowedAuthN) Z swagger_typesZ attribute_map�_source�_require_privileged_source_port�_access�_identity_squash�_anonymous_uid�_anonymous_gid�_is_anonymous_access_allowed� _allowed_auth)�self�kwargs� r% �J/usr/lib/python3.9/site-packages/oci/file_storage/models/client_options.py�__init__: s4 -��zClientOptions.__init__c C s | j S )a� **[Required]** Gets the source of this ClientOptions. Clients these options should apply to. Must be a either single IPv4 address or single IPv4 CIDR block. **Note:** Access will also be limited by any applicable VCN security rules and the ability to route IP packets to the mount target. Mount targets do not have Internet-routable IP addresses. :return: The source of this ClientOptions. :rtype: str �r �r# r% r% r&