Module Values.ApplicationOperationInfoSource

A description of the aplication operation that provides information about the updates that were made to the application.

Sourcetype nonrec t = {
  1. operation : Operation.t option;
  2. operationId : OperationId.t option;
  3. startTime : Timestamp.t option;
    (*

    The timestamp that indicates when the operation was created.

    *)
  4. endTime : Timestamp.t option;
    (*

    The timestamp that indicates when the operation finished.

    *)
  5. operationStatus : OperationStatus.t option;
}
Sourceval make : ?operation:??? -> ?operationId:??? -> ?startTime:??? -> ?endTime:??? -> ?operationStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Operation.t | `Timestamp of Timestamp.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