ruạṛ
a ���f�0 � @ 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 @ sH e Zd ZdZdZdZdZdZdZdd� Z e d d � �Zejdd � �Ze dd � �Z e jdd � �Z e dd� �Zejdd� �Ze dd� �Zejdd� �Ze dd� �Zejdd� �Ze dd� �Zejdd� �Ze dd� �Zejdd� �Ze dd� �Zejd d� �Ze d!d"� �Zejd#d"� �Ze d$d%� �Zejd&d%� �Zd'd(� Zd)d*� Zd+d,� Zd-S ).�OAuth2ClientCredentialzq User can define Oauth clients in IAM, then use it to generate a token to grant access to app resources. �CREATING�ACTIVE�INACTIVE�DELETING�DELETEDc K sx ddddddddddd� | _ ddddd d ddd dd� | _d| _d| _d| _d| _d| _d| _d| _d| _ d| _ d| _dS )a� Initializes a new OAuth2ClientCredential object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param scopes: The value to assign to the scopes property of this OAuth2ClientCredential. :type scopes: list[oci.identity.models.FullyQualifiedScope] :param password: The value to assign to the password property of this OAuth2ClientCredential. :type password: str :param user_id: The value to assign to the user_id property of this OAuth2ClientCredential. :type user_id: str :param expires_on: The value to assign to the expires_on property of this OAuth2ClientCredential. :type expires_on: datetime :param id: The value to assign to the id property of this OAuth2ClientCredential. :type id: str :param compartment_id: The value to assign to the compartment_id property of this OAuth2ClientCredential. :type compartment_id: str :param name: The value to assign to the name property of this OAuth2ClientCredential. :type name: str :param description: The value to assign to the description property of this OAuth2ClientCredential. :type description: str :param lifecycle_state: The value to assign to the lifecycle_state property of this OAuth2ClientCredential. Allowed values for this property are: "CREATING", "ACTIVE", "INACTIVE", "DELETING", "DELETED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type lifecycle_state: str :param time_created: The value to assign to the time_created property of this OAuth2ClientCredential. :type time_created: datetime zlist[FullyQualifiedScope]�strZdatetime) �scopes�password�user_id� expires_on�id�compartment_id�name�description�lifecycle_state�time_createdr r ZuserIdZ expiresOnr Z compartmentIdr r ZlifecycleStateZtimeCreatedN)Z swagger_typesZ attribute_map�_scopes� _password�_user_id�_expires_on�_id�_compartment_id�_name�_description�_lifecycle_state� _time_created)�self�kwargs� r# �Q/usr/lib/python3.9/site-packages/oci/identity/models/o_auth2_client_credential.py�__init__&