Show / Hide Table of Contents

Class AvailableMaintenanceScheduleStartTimeSummary

Information about the list of available start times on a particular day of the week. User can choose their preferred day of the week and start time for creating request/input for Create or Update LustreFileSystem operation.

Inheritance
object
AvailableMaintenanceScheduleStartTimeSummary
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 AvailableMaintenanceScheduleStartTimeSummary

Properties

DayOfWeek

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

Day of the week

Remarks

Required

StartTimes

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

List of available start times. Each array item is of the format HH:mm

Remarks

Required

In this article
Back to top