Module Values_0.MaintenanceWindowSource

An optional configuration within the SchedulingConfig to setup a recurring maintenance window with a predetermined start time and duration for the rollout of a job document to all devices in a target group for a job.

Sourcetype nonrec t = {
  1. startTime : CronExpression.t;
    (*

    Displays the start time of the next maintenance window.

    *)
  2. durationInMinutes : DurationInMinutes.t;
    (*

    Displays the duration of the next maintenance window.

    *)
}
Sourceval context_ : string
Sourceval make : startTime:CronExpression.t -> durationInMinutes:DurationInMinutes.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DurationInMinutes.t | `String of CronExpression.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t