Class FixedFrequencySchedule
Fixed frequency schedule for a scheduled task.
Inherited Members
Namespace: Oci.LoganalyticsService.Models
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
public class FixedFrequencySchedule : Schedule
Properties
RecurringInterval
Declaration
[Required(ErrorMessage = "RecurringInterval is required.")]
[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). |
Remarks
Required
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. |