o
    ëÉ¶dÛ  ã                   @   s8   d dl mZmZmZ d dlmZ eG dd„ deƒƒZdS )é    )Úformatted_flat_dictÚNONE_SENTINELÚ#value_allowed_none_or_none_sentinel)Úinit_model_state_from_kwargsc                   @   s²   e Zd ZdZdd„ Zedd„ ƒZejdd„ ƒZedd„ ƒZejd	d„ ƒZed
d„ ƒZ	e	jdd„ ƒZ	edd„ ƒZ
e
jdd„ ƒZ
edd„ ƒZejdd„ ƒZdd„ Zdd„ Zdd„ ZdS )ÚUsersa'  
    The SCIM protocol defines a standard set of query parameters that can be used to filter, sort, and paginate to return zero or more resources in a query response. Queries MAY be made against a single resource or a resource type endpoint (e.g., /Users), or the service provider Base URI.
    c                 K   sF   ddddddœ| _ ddddd	dœ| _d
| _d
| _d
| _d
| _d
| _d
S )aŠ  
        Initializes a new Users object with values from keyword arguments.
        The following keyword arguments are supported (corresponding to the getters/setters of this class):

        :param schemas:
            The value to assign to the schemas property of this Users.
        :type schemas: list[str]

        :param total_results:
            The value to assign to the total_results property of this Users.
        :type total_results: int

        :param resources:
            The value to assign to the resources property of this Users.
        :type resources: list[oci.identity_domains.models.User]

        :param start_index:
            The value to assign to the start_index property of this Users.
        :type start_index: int

        :param items_per_page:
            The value to assign to the items_per_page property of this Users.
        :type items_per_page: int

        z	list[str]Úintz
list[User])ÚschemasÚtotal_resultsÚ	resourcesÚstart_indexÚitems_per_pager   ZtotalResultsZ	ResourcesZ
startIndexZitemsPerPageN)Zswagger_typesZattribute_mapÚ_schemasÚ_total_resultsÚ
_resourcesÚ_start_indexÚ_items_per_page)ÚselfÚkwargs© r   úEusr/lib/python3.10/site-packages/oci/identity_domains/models/users.pyÚ__init__   s"   û	û
zUsers.__init__c                 C   ó   | j S )ai  
        **[Required]** Gets the schemas of this Users.
        The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.


        :return: The schemas of this Users.
        :rtype: list[str]
        ©r   ©r   r   r   r   r   B   ó   
zUsers.schemasc                 C   ó
   || _ dS )a`  
        Sets the schemas of this Users.
        The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.


        :param schemas: The schemas of this Users.
        :type: list[str]
        Nr   )r   r   r   r   r   r   N   ó   

c                 C   r   )ax  
        **[Required]** Gets the total_results of this Users.
        The total number of results returned by the list or query operation.  The value may be larger than the number of resources returned such as when returning a single page of results where multiple pages are available. REQUIRED.


        :return: The total_results of this Users.
        :rtype: int
        ©r   r   r   r   r   r	   Z   r   zUsers.total_resultsc                 C   r   )au  
        Sets the total_results of this Users.
        The total number of results returned by the list or query operation.  The value may be larger than the number of resources returned such as when returning a single page of results where multiple pages are available. REQUIRED.


        :param total_results: The total_results of this Users.
        :type: int
        Nr   )r   r	   r   r   r   r	   f   r   c                 C   r   )ar  
        **[Required]** Gets the resources of this Users.
        A multi-valued list of complex objects containing the requested resources. This MAY be a subset of the full set of resources if pagination is requested. REQUIRED if "totalResults" is non-zero.


        :return: The resources of this Users.
        :rtype: list[oci.identity_domains.models.User]
        ©r   r   r   r   r   r
   r   r   zUsers.resourcesc                 C   r   )ak  
        Sets the resources of this Users.
        A multi-valued list of complex objects containing the requested resources. This MAY be a subset of the full set of resources if pagination is requested. REQUIRED if "totalResults" is non-zero.


        :param resources: The resources of this Users.
        :type: list[oci.identity_domains.models.User]
        Nr   )r   r
   r   r   r   r
   ~   r   c                 C   r   )a  
        **[Required]** Gets the start_index of this Users.
        The 1-based index of the first result in the current set of list results.  REQUIRED when partial results returned due to pagination.


        :return: The start_index of this Users.
        :rtype: int
        ©r   r   r   r   r   r   Š   r   zUsers.start_indexc                 C   r   )a  
        Sets the start_index of this Users.
        The 1-based index of the first result in the current set of list results.  REQUIRED when partial results returned due to pagination.


        :param start_index: The start_index of this Users.
        :type: int
        Nr   )r   r   r   r   r   r   –   r   c                 C   r   )a  
        **[Required]** Gets the items_per_page of this Users.
        The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.


        :return: The items_per_page of this Users.
        :rtype: int
        ©r   r   r   r   r   r   ¢   r   zUsers.items_per_pagec                 C   r   )a
  
        Sets the items_per_page of this Users.
        The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.


        :param items_per_page: The items_per_page of this Users.
        :type: int
        Nr    )r   r   r   r   r   r   ®   r   c                 C   s   t | ƒS ©N)r   r   r   r   r   Ú__repr__º   s   zUsers.__repr__c                 C   s   |d u rdS | j |j kS )NF)Ú__dict__©r   Úotherr   r   r   Ú__eq__½   s   zUsers.__eq__c                 C   s
   | |k S r!   r   r$   r   r   r   Ú__ne__Ã   s   
zUsers.__ne__N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   Úpropertyr   Úsetterr	   r
   r   r   r"   r&   r'   r   r   r   r   r      s4    0









r   N)Zoci.utilr   r   r   Zoci.decoratorsr   Úobjectr   r   r   r   r   Ú<module>   s   