package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. billingTier : int;
    (*

    [Output-only] Billing tier for the job.

    *)
  2. cacheHit : bool;
    (*

    [Output-only] Whether the query result was fetched from the query cache.

    *)
  3. queryPlan : ExplainQueryStage.t list;
    (*

    [Output-only, Experimental] Describes execution plan for the query as a list of stages.

    *)
  4. totalBytesBilled : int64;
    (*

    [Output-only] Total bytes billed for the job.

    *)
  5. totalBytesProcessed : int64;
    (*

    [Output-only] Total bytes processed for the job.

    *)
}
val billingTier : (t, int) GapiLens.t
val cacheHit : (t, bool) GapiLens.t
val queryPlan : (t, 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