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.

QueryOffsetSecs

Declaration
[JsonProperty(PropertyName = "queryOffsetSecs")]
public int? QueryOffsetSecs { get; set; }
Property Value
Type Description
int?

Number of seconds to offset the query time window by to accommodate capture late arriving data. For example, a schedule run at 12:00 with a 10 minute interval and queryOffsetSecs=120 will use the query time window of 11:48-11:58 rather than 11:50-12:00 without queryOffsetSecs.

TimeEnd

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

End time for the schedule, even if the schedule would otherwise have remaining executions.

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