Module Values.ProtectedQueryStatisticsSource

Contains statistics about the execution of the protected query.

Sourcetype nonrec t = {
  1. totalDurationInMillis : Long.t option;
    (*

    The duration of the protected query, from creation until query completion, in milliseconds.

    *)
  2. billedResourceUtilization : BilledResourceUtilization.t option;
    (*

    The billed resource utilization.

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