Show / Hide Table of Contents

Class ScheduledOperationDetails

Details of scheduled operation.

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

Properties

DayOfWeek

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

Required

ScheduledStartTime

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

auto start time. value must be of ISO-8601 format "HH:mm"

ScheduledStopTime

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

auto stop time. value must be of ISO-8601 format "HH:mm"

In this article
Back to top