ruạṛ
a ���frF � @ 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 ZdZ dZd d� Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejd d� �Zed!d"� �Zejd#d"� �Zed$d%� �Zejd&d%� �Zed'd(� �Zejd)d(� �Zed*d+� �Zejd,d+� �Zed-d.� �Zejd/d.� �Zed0d1� �Zejd2d1� �Zed3d4� �Zejd5d4� �Zed6d7� �Zejd8d7� �Zd9d:� Z d;d<� Z!d=d>� Z"d?S )@�Jobz\ Results of a Database Connection search. Contains DatabaseConnectionSummary items. � EVALUATION� MIGRATION�ACCEPTED�IN_PROGRESS�UNKNOWN� TERMINATED�FAILED� SUCCEEDED�WAITING� CANCELING�CANCELEDc K s� ddddddddddddddd�| _ d d ddd dddddddddd�| _d| _d| _d| _d| _d| _d| _d| _d| _ d| _ d| _d| _d| _ d| _d| _dS )a Initializes a new Job 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 Job. :type id: str :param display_name: The value to assign to the display_name property of this Job. :type display_name: str :param migration_id: The value to assign to the migration_id property of this Job. :type migration_id: str :param type: The value to assign to the type property of this Job. Allowed values for this property are: "EVALUATION", "MIGRATION", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type type: str :param time_created: The value to assign to the time_created property of this Job. :type time_created: datetime :param time_updated: The value to assign to the time_updated property of this Job. :type time_updated: datetime :param progress: The value to assign to the progress property of this Job. :type progress: oci.database_migration.models.MigrationJobProgressResource :param unsupported_objects: The value to assign to the unsupported_objects property of this Job. :type unsupported_objects: list[oci.database_migration.models.UnsupportedDatabaseObject] :param lifecycle_state: The value to assign to the lifecycle_state property of this Job. Allowed values for this property are: "ACCEPTED", "IN_PROGRESS", "UNKNOWN", "TERMINATED", "FAILED", "SUCCEEDED", "WAITING", "CANCELING", "CANCELED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type lifecycle_state: str :param lifecycle_details: The value to assign to the lifecycle_details property of this Job. :type lifecycle_details: str :param parameter_file_versions: The value to assign to the parameter_file_versions property of this Job. :type parameter_file_versions: list[oci.database_migration.models.ParameterFileVersionSummary] :param freeform_tags: The value to assign to the freeform_tags property of this Job. :type freeform_tags: dict(str, str) :param defined_tags: The value to assign to the defined_tags property of this Job. :type defined_tags: dict(str, dict(str, object)) :param system_tags: The value to assign to the system_tags property of this Job. :type system_tags: dict(str, dict(str, object)) �strZdatetimeZMigrationJobProgressResourcezlist[UnsupportedDatabaseObject]z!list[ParameterFileVersionSummary]zdict(str, str)zdict(str, dict(str, object)))�id�display_name�migration_id�type�time_created�time_updated�progress�unsupported_objects�lifecycle_state�lifecycle_details�parameter_file_versions� freeform_tags�defined_tags�system_tagsr ZdisplayNameZmigrationIdr ZtimeCreatedZtimeUpdatedr ZunsupportedObjectsZlifecycleStateZlifecycleDetailsZparameterFileVersionsZfreeformTagsZdefinedTagsZ systemTagsN)Z swagger_typesZ attribute_map�_id� _display_name� _migration_id�_type� _time_created� _time_updated� _progress�_unsupported_objects�_lifecycle_state�_lifecycle_details�_parameter_file_versions�_freeform_tags� _defined_tags�_system_tags)�self�kwargs� r1 �E/usr/lib/python3.9/site-packages/oci/database_migration/models/job.py�__init__>