Class PoolSchedule
Definition of when pool auto start or stop for a given day of a week.
Inherited Members
Namespace: Oci.DataflowService.Models
Assembly: OCI.DotNetSDK.Dataflow.dll
Syntax
public class PoolSchedule
Properties
DayOfWeek
Declaration
[JsonProperty(PropertyName = "dayOfWeek")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DayOfWeek? DayOfWeek { get; set; }
Property Value
Type | Description |
---|---|
DayOfWeek? | Day of the week SUN-SAT |
StartTime
Declaration
[JsonProperty(PropertyName = "startTime")]
public int? StartTime { get; set; }
Property Value
Type | Description |
---|---|
int? | Hour of the day to start or stop pool. |
StopTime
Declaration
[JsonProperty(PropertyName = "stopTime")]
public int? StopTime { get; set; }
Property Value
Type | Description |
---|---|
int? | Hour of the day to stop the pool. |