module JobStatistics2:sig..end
type t = {
|
billingTier : |
(* |
[Output-only] Billing tier for the job.
| *) |
|
cacheHit : |
(* |
[Output-only] Whether the query result was fetched from the query cache.
| *) |
|
queryPlan : |
(* |
[Output-only, Experimental] Describes execution plan for the query as a list of stages.
| *) |
|
totalBytesBilled : |
(* |
[Output-only] Total bytes billed for the job.
| *) |
|
totalBytesProcessed : |
(* |
[Output-only] Total bytes processed for the job.
| *) |
val billingTier : (t, int) GapiLens.t
val cacheHit : (t, bool) GapiLens.t
val queryPlan : (t,
GapiBigqueryV2Model.ExplainQueryStage.t list)
GapiLens.t
val totalBytesBilled : (t, int64) GapiLens.t
val totalBytesProcessed : (t, int64) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t