Module Values.ResourceUtilizationSource

The resource utilization for memory, storage, and vCPU for jobs.

Sourcetype nonrec t = {
  1. vCPUHour : Double.t option;
    (*

    The aggregated vCPU used per hour from the time the job starts executing until the job is terminated.

    *)
  2. memoryGBHour : Double.t option;
    (*

    The aggregated memory used per hour from the time the job starts executing until the job is terminated.

    *)
  3. storageGBHour : Double.t option;
    (*

    The aggregated storage used per hour from the time the job starts executing until the job is terminated.

    *)
}
Sourceval make : ?vCPUHour:??? -> ?memoryGBHour:??? -> ?storageGBHour:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.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