Show / Hide Table of Contents

Class FixedFrequencySchedule

Fixed frequency schedule for a scheduled task.

Inheritance
object
Schedule
FixedFrequencySchedule
Inherited Members
Schedule.MisfirePolicy
Schedule.TimeOfFirstExecution
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
public class FixedFrequencySchedule : Schedule

Properties

RecurringInterval

Declaration
[JsonProperty(PropertyName = "recurringInterval")]
public string RecurringInterval { get; set; }
Property Value
Type Description
string

Recurring interval in ISO 8601 extended format as described in https://en.wikipedia.org/wiki/ISO_8601#Durations. The largest supported unit is D, e.g. P14D (not P2W). The value must be at least 5 minutes (PT5M) and at most 3 weeks (P21D or PT30240M).

RepeatCount

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

Number of times (0-based) to execute until auto-stop. Default value -1 will execute indefinitely. Value 0 will execute once.

In this article
Back to top