Module Values.CoverageHoursSource

How long a running instance either used a reservation or was On-Demand.

Sourcetype nonrec t = {
  1. onDemandHours : OnDemandHours.t option;
    (*

    The number of instance running hours that On-Demand Instances covered.

    *)
  2. reservedHours : ReservedHours.t option;
    (*

    The number of instance running hours that reservations covered.

    *)
  3. totalRunningHours : TotalRunningHours.t option;
    (*

    The total instance usage, in hours.

    *)
  4. coverageHoursPercentage : CoverageHoursPercentage.t option;
    (*

    The percentage of instance hours that a reservation covered.

    *)
}
Sourceval make : ?onDemandHours:??? -> ?reservedHours:??? -> ?totalRunningHours:??? -> ?coverageHoursPercentage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of OnDemandHours.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