Class UpdateTaskScheduleDetails
Attributes to update a task schedule.
Inherited Members
Namespace: Oci.JmsService.Models
Assembly: OCI.DotNetSDK.Jms.dll
Syntax
public class UpdateTaskScheduleDetails
Properties
ExecutionRecurrences
Declaration
[Required(ErrorMessage = "ExecutionRecurrences is required.")]
[JsonProperty(PropertyName = "executionRecurrences")]
public string ExecutionRecurrences { get; set; }
Property Value
Type | Description |
---|---|
string | Recurrence specification for the task schedule execution (formatted according to RFC-5545). To run daily for 10 occurrences starts on September 2, 2024 09:00 EDT, it should be 'DTSTART;TZID=America/New_York:20240902T090000 RRULE:FREQ=DAILY;COUNT=10'. To run every 3 hours from 9:00 AM to 5:00 PM on August 5, 2024 EDT, it should be 'DTSTART;TZID=America/New_York:20240805T090000 RRULE:FREQ=HOURLY;INTERVAL=3;UNTIL=20240805T170000Z'. |
Remarks
Required
FleetId
Declaration
[Required(ErrorMessage = "FleetId is required.")]
[JsonProperty(PropertyName = "fleetId")]
public string FleetId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the Fleet. |
Remarks
Required
TaskDetails
Declaration
[Required(ErrorMessage = "TaskDetails is required.")]
[JsonProperty(PropertyName = "taskDetails")]
public TaskDetails TaskDetails { get; set; }
Property Value
Type | Description |
---|---|
TaskDetails |
Remarks
Required