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 )ÚGroupsa'  
    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 Groups 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 Groups.
        :type schemas: list[str]

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

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

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

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

        z	list[str]Úintzlist[Group])Ú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   úFusr/lib/python3.10/site-packages/oci/identity_domains/models/groups.pyÚ__init__   s"   û	û
zGroups.__init__c                 C   ó   | j S )ak  
        **[Required]** Gets the schemas of this Groups.
        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 Groups.
        :rtype: list[str]
        ©r   ©r   r   r   r   r   B   ó   
zGroups.schemasc                 C   ó
   || _ dS )ab  
        Sets the schemas of this Groups.
        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 Groups.
        :type: list[str]
        Nr   )r   r   r   r   r   r   N   ó   

c                 C   r   )az  
        **[Required]** Gets the total_results of this Groups.
        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 Groups.
        :rtype: int
        ©r   r   r   r   r   r	   Z   r   zGroups.total_resultsc                 C   r   )aw  
        Sets the total_results of this Groups.
        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 Groups.
        :type: int
        Nr   )r   r	   r   r   r   r	   f   r   c                 C   r   )au  
        **[Required]** Gets the resources of this Groups.
        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 Groups.
        :rtype: list[oci.identity_domains.models.Group]
        ©r   r   r   r   r   r
   r   r   zGroups.resourcesc                 C   r   )an  
        Sets the resources of this Groups.
        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 Groups.
        :type: list[oci.identity_domains.models.Group]
        Nr   )r   r
   r   r   r   r
   ~   r   c                 C   r   )a  
        **[Required]** Gets the start_index of this Groups.
        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 Groups.
        :rtype: int
        ©r   r   r   r   r   r   Š   r   zGroups.start_indexc                 C   r   )a  
        Sets the start_index of this Groups.
        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 Groups.
        :type: int
        Nr   )r   r   r   r   r   r   –   r   c                 C   r   )a  
        **[Required]** Gets the items_per_page of this Groups.
        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 Groups.
        :rtype: int
        ©r   r   r   r   r   r   ¢   r   zGroups.items_per_pagec                 C   r   )a  
        Sets the items_per_page of this Groups.
        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 Groups.
        :type: int
        Nr    )r   r   r   r   r   r   ®   r   c                 C   s   t | ƒS ©N)r   r   r   r   r   Ú__repr__º   s   zGroups.__repr__c                 C   s   |d u rdS | j |j kS )NF)Ú__dict__©r   Úotherr   r   r   Ú__eq__½   s   zGroups.__eq__c                 C   s
   | |k S r!   r   r$   r   r   r   Ú__ne__Ã   s   
zGroups.__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   