Class TriggerSchedule
Specifies a trigger schedule. Timing information for when to initiate automated syncs.
Inherited Members
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class TriggerSchedule
Properties
CustomSchedule
Declaration
[JsonProperty(PropertyName = "customSchedule")]
public string CustomSchedule { get; set; }
Property Value
Type | Description |
---|---|
string | Valid if type is CUSTOM. Following RFC 5545 recurrence rules, we can specify starting time, occurrence frequency, and interval size. Example for frequency could be DAILY/WEEKLY/HOURLY or any RFC 5545 supported frequency, which is followed by start time of this window. You can control the start time with BYHOUR, BYMINUTE and BYSECONDS. It is followed by the interval size. |
ScheduleType
Declaration
[Required(ErrorMessage = "ScheduleType is required.")]
[JsonProperty(PropertyName = "scheduleType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public TriggerSchedule.ScheduleTypeEnum? ScheduleType { get; set; }
Property Value
Type | Description |
---|---|
TriggerSchedule.ScheduleTypeEnum? | Different types of trigger schedule: NONE - No automated synchronization schedule. DEFAULT - Trigger schedule is every 30 minutes. CUSTOM - Custom triggering schedule. |
Remarks
Required