Module Values.ServiceJobPreemptionSummarySource

Summarizes the preemptions of the service job. This field appears on a service job when it has been preempted.

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

    The total number of times the service job has been preempted.

    *)
  2. recentPreemptedAttempts : ServiceJobRecentPreemptedAttemptList.t option;
    (*

    A list of the most recent preemption attempts for the service job.

    *)
}
Sourceval make : ?preemptedAttemptCount:??? -> ?recentPreemptedAttempts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `Long of Long.t | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) list ] list ]) 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