Module Values.SessionActionSummarySource

The details of a session action.

Sourcetype nonrec t = {
  1. sessionActionId : SessionActionId.t option;
    (*

    The session action ID.

    *)
  2. status : SessionActionStatus.t option;
    (*

    The status of the session action.

    *)
  3. startedAt : StartedAt.t option;
    (*

    The date and time the resource started running.

    *)
  4. endedAt : EndedAt.t option;
    (*

    The date and time the resource ended running.

    *)
  5. workerUpdatedAt : Timestamp.t option;
    (*

    The Linux timestamp of the last date and time that the session action was updated.

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

    The completion percentage for the session action.

    *)
  7. manifests : TaskRunManifestPropertiesListResponse.t option;
    (*

    The list of manifest properties that describe file attachments for the task run.

    *)
  8. definition : SessionActionDefinitionSummary.t option;
    (*

    The session action definition.

    *)
}
Sourceval make : ?sessionActionId:??? -> ?status:??? -> ?startedAt:??? -> ?endedAt:??? -> ?workerUpdatedAt:??? -> ?progressPercent:??? -> ?manifests:??? -> ?definition:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of SessionActionProgressPercent.t | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of SessionActionId.t | `Structure of (string * [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `Structure of (string * [> `String of IntString.t ]) list ]) list | `String of EnvironmentId.t ]) list ]) list | `Timestamp of StartedAt.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