Show / Hide Table of Contents

Class CccScheduleEvent

A period where upgrades may be applied to Compute Cloud@Customer infrastructures associated with the schedule. All upgrade windows may not be used.

Inheritance
object
CccScheduleEvent
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ComputecloudatcustomerService.Models
Assembly: OCI.DotNetSDK.Computecloudatcustomer.dll
Syntax
public class CccScheduleEvent

Properties

Description

Declaration
[Required(ErrorMessage = "Description is required.")]
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

A description of the Compute Cloud@Customer upgrade schedule time block.

Remarks

Required

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

Generated name associated with the event.

Remarks

Required

ScheduleEventDuration

Declaration
[Required(ErrorMessage = "ScheduleEventDuration is required.")]
[JsonProperty(PropertyName = "scheduleEventDuration")]
public string ScheduleEventDuration { get; set; }
Property Value
Type Description
string

The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.

Remarks

Required

ScheduleEventRecurrences

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

Frequency of recurrence of schedule block. When this field is not included, the event is assumed to be a one time occurrence. The frequency field is strictly parsed and must conform to RFC-5545 formatting for recurrences.

TimeStart

Declaration
[Required(ErrorMessage = "TimeStart is required.")]
[JsonProperty(PropertyName = "timeStart")]
public DateTime? TimeStart { get; set; }
Property Value
Type Description
DateTime?

The date and time when the Compute Cloud@Customer upgrade schedule event starts, inclusive. An RFC3339 formatted UTC datetime string. For an event with recurrences, this is the date that a recurrence can start being applied.

Remarks

Required

In this article
Back to top