Module Values.DbServerPatchingDetailsSource

The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

Sourcetype nonrec t = {
  1. estimatedPatchDuration : Integer.t option;
    (*

    Estimated time, in minutes, to patch one database server.

    *)
  2. patchingStatus : DbServerPatchingStatus.t option;
    (*

    The status of the patching operation. Possible values are SCHEDULED, MAINTENANCE_IN_PROGRESS, FAILED, and COMPLETE.

    *)
  3. timePatchingEnded : String_.t option;
    (*

    The time when the patching operation ended.

    *)
  4. timePatchingStarted : String_.t option;
    (*

    The time when the patching operation started.

    *)
}
Sourceval make : ?estimatedPatchDuration:??? -> ?patchingStatus:??? -> ?timePatchingEnded:??? -> ?timePatchingStarted:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of String_.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