Show / Hide Table of Contents

Class Schedule

Schedule for scheduled task.

Inheritance
object
Schedule
AutoSchedule
CronSchedule
FixedFrequencySchedule
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoganalyticsService.Models
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
[JsonConverter(typeof(ScheduleModelConverter))]
public class Schedule

Properties

MisfirePolicy

Declaration
[JsonProperty(PropertyName = "misfirePolicy")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Schedule.MisfirePolicyEnum? MisfirePolicy { get; set; }
Property Value
Type Description
Schedule.MisfirePolicyEnum?

Schedule misfire retry policy.

TimeOfFirstExecution

Declaration
[JsonProperty(PropertyName = "timeOfFirstExecution")]
public DateTime? TimeOfFirstExecution { get; set; }
Property Value
Type Description
DateTime?

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.

In this article
Back to top