Show / Hide Table of Contents

Class MaintenanceWindow

The preferred day and time to perform maintenance.

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

Properties

DayOfWeek

Declaration
[JsonProperty(PropertyName = "dayOfWeek")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MaintenanceWindow.DayOfWeekEnum? DayOfWeek { get; set; }
Property Value
Type Description
MaintenanceWindow.DayOfWeekEnum?

Day of the week when the maintainence window starts.

TimeStart

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

The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC.
Example: 22:00

In this article
Back to top