AutoSchedule

class oci.log_analytics.models.AutoSchedule(**kwargs)

Bases: oci.log_analytics.models.schedule.Schedule

Auto Fixed frequency schedule for a scheduled task.

Attributes

MISFIRE_POLICY_RETRY_INDEFINITELY str(object=’’) -> str
MISFIRE_POLICY_RETRY_ONCE str(object=’’) -> str
MISFIRE_POLICY_SKIP str(object=’’) -> str
TYPE_AUTO str(object=’’) -> str
TYPE_CRON str(object=’’) -> str
TYPE_FIXED_FREQUENCY str(object=’’) -> str
misfire_policy Gets the misfire_policy of this Schedule.
time_of_first_execution Gets the time_of_first_execution of this Schedule.
type [Required] Gets the type of this Schedule.

Methods

__init__(**kwargs) Initializes a new AutoSchedule object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
MISFIRE_POLICY_RETRY_INDEFINITELY = 'RETRY_INDEFINITELY'
MISFIRE_POLICY_RETRY_ONCE = 'RETRY_ONCE'
MISFIRE_POLICY_SKIP = 'SKIP'
TYPE_AUTO = 'AUTO'
TYPE_CRON = 'CRON'
TYPE_FIXED_FREQUENCY = 'FIXED_FREQUENCY'
__init__(**kwargs)

Initializes a new AutoSchedule object with values from keyword arguments. The default value of the type attribute of this class is AUTO and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • type (str) – The value to assign to the type property of this AutoSchedule. Allowed values for this property are: “FIXED_FREQUENCY”, “CRON”, “AUTO”
  • misfire_policy (str) – The value to assign to the misfire_policy property of this AutoSchedule. Allowed values for this property are: “RETRY_ONCE”, “RETRY_INDEFINITELY”, “SKIP”
  • time_of_first_execution (datetime) – The value to assign to the time_of_first_execution property of this AutoSchedule.
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

misfire_policy

Gets the misfire_policy of this Schedule. Schedule misfire retry policy.

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’.

Returns:The misfire_policy of this Schedule.
Return type:str
time_of_first_execution

Gets the time_of_first_execution of this Schedule. The date and time the scheduled task should execute first time after create or update; thereafter the task will execute as specified in the schedule.

Returns:The time_of_first_execution of this Schedule.
Return type:datetime
type

[Required] Gets the type of this Schedule. Schedule type discriminator.

Allowed values for this property are: “FIXED_FREQUENCY”, “CRON”, “AUTO”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The type of this Schedule.
Return type:str