ruạṛ
a ���f � @ 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 ZdZdZdZdZdZdZdd� Z e d d � �Zedd� �Z e jd d� �Z edd� �Zejdd� �Zedd� �Zejdd� �Zdd� Zdd� Zdd� ZdS )�Schedulez& Schedule for scheduled task. �FIXED_FREQUENCY�CRON� RETRY_ONCE�RETRY_INDEFINITELY�SKIPc K s2 dddd�| _ dddd�| _d| _d| _d| _dS )aG Initializes a new Schedule object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class: * :class:`~oci.log_analytics.models.CronSchedule` * :class:`~oci.log_analytics.models.FixedFrequencySchedule` The following keyword arguments are supported (corresponding to the getters/setters of this class): :param type: The value to assign to the type property of this Schedule. Allowed values for this property are: "FIXED_FREQUENCY", "CRON", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type type: str :param misfire_policy: The value to assign to the misfire_policy property of this Schedule. Allowed values for this property are: "RETRY_ONCE", "RETRY_INDEFINITELY", "SKIP", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type misfire_policy: str :param time_of_first_execution: The value to assign to the time_of_first_execution property of this Schedule. :type time_of_first_execution: datetime �strZdatetime)�type�misfire_policy�time_of_first_executionr Z misfirePolicyZtimeOfFirstExecutionN)Z swagger_typesZ attribute_map�_type�_misfire_policy�_time_of_first_execution)�self�kwargs� r �E/usr/lib/python3.9/site-packages/oci/log_analytics/models/schedule.py�__init__&