Module Values.ServiceJobCapacityUsageSummarySource

The capacity usage for a service job, including the unit of measure and quantity of resources being used.

Sourcetype nonrec t = {
  1. capacityUnit : String_.t option;
    (*

    The unit of measure for the service job capacity usage. For service jobs, this is the instance type.

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

    The quantity of capacity being used by the service job, measured in the units specified by capacityUnit.

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