Module Values.UpdatedSessionActionInfoSource

The updated session action information as it relates to completion and progress of the session.

Sourcetype nonrec t = {
  1. completedStatus : CompletedStatus.t option;
    (*

    The status of the session upon completion.

    *)
  2. processExitCode : ProcessExitCode.t option;
    (*

    The process exit code. The default Deadline Cloud worker agent converts unsigned 32-bit exit codes to signed 32-bit exit codes.

    *)
  3. progressMessage : SessionActionProgressMessage.t option;
    (*

    A message to indicate the progress of the updated session action.

    *)
  4. startedAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the resource started running.

    *)
  5. endedAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the resource ended running.

    *)
  6. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The updated time.

    *)
  7. progressPercent : SessionActionProgressPercent.t option;
    (*

    The percentage completed.

    *)
  8. manifests : TaskRunManifestPropertiesListRequest.t option;
    (*

    A list of output manifest properties reported by the worker agent, with each entry corresponding to a manifest property in the job.

    *)
}
Sourceval make : ?completedStatus:??? -> ?processExitCode:??? -> ?progressMessage:??? -> ?startedAt:??? -> ?endedAt:??? -> ?updatedAt:??? -> ?progressPercent:??? -> ?manifests:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of SessionActionProgressPercent.t | `Integer of ProcessExitCode.t | `List of [> `Structure of (string * [> `String of TaskRunManifestPropertiesRequestOutputManifestPathString.t ]) list ] list | `String of SessionActionProgressMessage.t | `Timestamp of SyntheticTimestamp_date_time.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