ruạṛ
a ���fR � @ 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 ZdZdZdZdZdZdd� Ze dd � �Z e jd d � �Z e dd� �Zejd d� �Ze dd� �Z e jdd� �Z e dd� �Zejdd� �Ze dd� �Zejdd� �Ze dd� �Zejdd� �Ze dd� �Zejdd� �Ze dd� �Zejdd� �Ze d d!� �Zejd"d!� �Ze d#d$� �Zejd%d$� �Ze d&d'� �Zejd(d'� �Ze d)d*� �Zejd+d*� �Ze d,d-� �Zejd.d-� �Ze d/d0� �Zejd1d0� �Ze d2d3� �Zejd4d3� �Ze d5d6� �Zejd7d6� �Ze d8d9� �Zejd:d9� �Ze d;d<� �Zejd=d<� �Zd>d?� Zd@dA� ZdBdC� ZdDS )E�Modelz� Models are mathematical representations of the relationships between data. Models are represented by their associated metadata and artifacts. �ACTIVE�DELETED�FAILED�INACTIVEc K s� ddddddddddddddddddd�| _ dd d ddd ddddddddddddd�| _d| _d| _d| _d| _d| _d| _d| _d| _ d| _ d| _d| _d| _ d| _d| _d| _d| _d| _d| _dS )a Initializes a new Model object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param id: The value to assign to the id property of this Model. :type id: str :param compartment_id: The value to assign to the compartment_id property of this Model. :type compartment_id: str :param project_id: The value to assign to the project_id property of this Model. :type project_id: str :param display_name: The value to assign to the display_name property of this Model. :type display_name: str :param description: The value to assign to the description property of this Model. :type description: str :param lifecycle_state: The value to assign to the lifecycle_state property of this Model. Allowed values for this property are: "ACTIVE", "DELETED", "FAILED", "INACTIVE", '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 Model. :type time_created: datetime :param created_by: The value to assign to the created_by property of this Model. :type created_by: str :param freeform_tags: The value to assign to the freeform_tags property of this Model. :type freeform_tags: dict(str, str) :param defined_tags: The value to assign to the defined_tags property of this Model. :type defined_tags: dict(str, dict(str, object)) :param custom_metadata_list: The value to assign to the custom_metadata_list property of this Model. :type custom_metadata_list: list[oci.data_science.models.Metadata] :param defined_metadata_list: The value to assign to the defined_metadata_list property of this Model. :type defined_metadata_list: list[oci.data_science.models.Metadata] :param input_schema: The value to assign to the input_schema property of this Model. :type input_schema: str :param output_schema: The value to assign to the output_schema property of this Model. :type output_schema: str :param model_version_set_id: The value to assign to the model_version_set_id property of this Model. :type model_version_set_id: str :param model_version_set_name: The value to assign to the model_version_set_name property of this Model. :type model_version_set_name: str :param version_id: The value to assign to the version_id property of this Model. :type version_id: int :param version_label: The value to assign to the version_label property of this Model. :type version_label: str �strZdatetimezdict(str, str)zdict(str, dict(str, object))zlist[Metadata]�int)�id�compartment_id� project_id�display_name�description�lifecycle_state�time_created� created_by� freeform_tags�defined_tags�custom_metadata_list�defined_metadata_list�input_schema� output_schema�model_version_set_id�model_version_set_name� version_id� version_labelr Z compartmentIdZ projectIdZdisplayNamer ZlifecycleStateZtimeCreatedZ createdByZfreeformTagsZdefinedTagsZcustomMetadataListZdefinedMetadataListZinputSchemaZoutputSchemaZmodelVersionSetIdZmodelVersionSetNameZ versionIdZversionLabelN)Z swagger_typesZ attribute_map�_id�_compartment_id�_project_id� _display_name�_description�_lifecycle_state� _time_created�_created_by�_freeform_tags� _defined_tags�_custom_metadata_list�_defined_metadata_list� _input_schema�_output_schema�_model_version_set_id�_model_version_set_name�_version_id�_version_label)�self�kwargs� r3 �A/usr/lib/python3.9/site-packages/oci/data_science/models/model.py�__init__"