Module Values.ContainerSummarySource

An object that represents summary details of a container within a job.

Sourcetype nonrec t = {
  1. exitCode : Integer.t option;
    (*

    The exit code to return upon completion.

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

    A short (255 max characters) human-readable string to provide additional details for a running or stopped container.

    *)
}
Sourceval make : ?exitCode:??? -> ?reason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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