Module Values.RollbackServiceSoftwareOptionsSource

Details about the rollback options for a service software update.

Sourcetype nonrec t = {
  1. currentVersion : String_.t option;
    (*

    The current service software version on the domain.

    *)
  2. newVersion : String_.t option;
    (*

    The service software version that the domain will roll back to.

    *)
  3. rollbackAvailable : Boolean.t option;
    (*

    Whether a service software rollback is available for the domain.

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

    A description of the rollback status.

    *)
}
Sourceval make : ?currentVersion:??? -> ?newVersion:??? -> ?rollbackAvailable:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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