Module Values.ExecutionSummarySource

Contains the execution summary of the computation model.

Sourcetype nonrec t = {
  1. executionId : ID.t option;
    (*

    The ID of the execution.

    *)
  2. actionType : Name.t option;
    (*

    The type of action exectued.

    *)
  3. targetResource : TargetResource.t option;
  4. targetResourceVersion : Version.t option;
    (*

    The version of the target resource.

    *)
  5. resolveTo : ResolveTo.t option;
    (*

    The detailed resource this execution resolves to.

    *)
  6. executionStartTime : Timestamp.t option;
    (*

    The time the process started.

    *)
  7. executionEndTime : Timestamp.t option;
    (*

    The time the process ended.

    *)
  8. executionStatus : ExecutionStatus.t option;
    (*

    The status of the execution process.

    *)
  9. executionEntityVersion : Version.t option;
    (*

    The execution entity version associated with the summary.

    *)
}
Sourceval make : ?executionId:??? -> ?actionType:??? -> ?targetResource:??? -> ?targetResourceVersion:??? -> ?resolveTo:??? -> ?executionStartTime:??? -> ?executionEndTime:??? -> ?executionStatus:??? -> ?executionEntityVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ID.t | `Structure of (string * [> `Enum of string | `String of ID.t ]) list | `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