ruạṛ
a ���fY � @ 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� �Zed9d:� �Z e jd;d:� �Z ed<d=� �Z!e!jd>d=� �Z!d?d@� Z"dAdB� Z#dCdD� Z$dES )F�SchedulingPlanz' Details of a Scheduling Plan. �CREATING�NEEDS_ATTENTION� AVAILABLE�UPDATING�FAILED�DELETING�DELETED�+EXADATA_INFRASTRUCTURE_FULL_SOFTWARE_UPDATE�EXACC�EXACS�FPPPCSc K s� ddddddddddddddddd�| _ dd d ddd ddddddddddd�| _d| _d| _d| _d| _d| _d| _d| _d| _ d| _ d| _d| _d| _ d| _d| _d| _d| _dS )ab Initializes a new SchedulingPlan 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 SchedulingPlan. :type id: str :param compartment_id: The value to assign to the compartment_id property of this SchedulingPlan. :type compartment_id: str :param scheduling_policy_id: The value to assign to the scheduling_policy_id property of this SchedulingPlan. :type scheduling_policy_id: str :param resource_id: The value to assign to the resource_id property of this SchedulingPlan. :type resource_id: str :param display_name: The value to assign to the display_name property of this SchedulingPlan. :type display_name: str :param lifecycle_state: The value to assign to the lifecycle_state property of this SchedulingPlan. Allowed values for this property are: "CREATING", "NEEDS_ATTENTION", "AVAILABLE", "UPDATING", "FAILED", "DELETING", "DELETED", '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 SchedulingPlan. :type lifecycle_details: str :param is_using_recommended_scheduled_actions: The value to assign to the is_using_recommended_scheduled_actions property of this SchedulingPlan. :type is_using_recommended_scheduled_actions: bool :param plan_intent: The value to assign to the plan_intent property of this SchedulingPlan. Allowed values for this property are: "EXADATA_INFRASTRUCTURE_FULL_SOFTWARE_UPDATE", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type plan_intent: str :param estimated_time_in_mins: The value to assign to the estimated_time_in_mins property of this SchedulingPlan. :type estimated_time_in_mins: int :param service_type: The value to assign to the service_type property of this SchedulingPlan. Allowed values for this property are: "EXACC", "EXACS", "FPPPCS", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type service_type: str :param time_created: The value to assign to the time_created property of this SchedulingPlan. :type time_created: datetime :param time_updated: The value to assign to the time_updated property of this SchedulingPlan. :type time_updated: datetime :param freeform_tags: The value to assign to the freeform_tags property of this SchedulingPlan. :type freeform_tags: dict(str, str) :param defined_tags: The value to assign to the defined_tags property of this SchedulingPlan. :type defined_tags: dict(str, dict(str, object)) :param system_tags: The value to assign to the system_tags property of this SchedulingPlan. :type system_tags: dict(str, dict(str, object)) �str�bool�intZdatetimezdict(str, str)zdict(str, dict(str, object)))�id�compartment_id�scheduling_policy_id�resource_id�display_name�lifecycle_state�lifecycle_details�&is_using_recommended_scheduled_actions�plan_intent�estimated_time_in_mins�service_type�time_created�time_updated� freeform_tags�defined_tags�system_tagsr Z compartmentIdZschedulingPolicyIdZ resourceIdZdisplayNameZlifecycleStateZlifecycleDetailsZ"isUsingRecommendedScheduledActionsZ planIntentZestimatedTimeInMinsZserviceTypeZtimeCreatedZtimeUpdatedZfreeformTagsZdefinedTagsZ systemTagsN)Z swagger_typesZ attribute_map�_id�_compartment_id�_scheduling_policy_id�_resource_id� _display_name�_lifecycle_state�_lifecycle_details�'_is_using_recommended_scheduled_actions�_plan_intent�_estimated_time_in_mins� _service_type� _time_created� _time_updated�_freeform_tags� _defined_tags�_system_tags)�self�kwargs� r7 �G/usr/lib/python3.9/site-packages/oci/database/models/scheduling_plan.py�__init__>