package gapi-ocaml

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

    [Output-only] Creation time of this job, in milliseconds since the epoch. This field will be present on all jobs.

    *)
  2. endTime : int64;
    (*

    [Output-only] End time of this job, in milliseconds since the epoch. This field will be present whenever a job is in the DONE state.

    *)
  3. extract : JobStatistics4.t;
    (*

    [Output-only] Statistics for an extract job.

    *)
  4. load : JobStatistics3.t;
    (*

    [Output-only] Statistics for a load job.

    *)
  5. query : JobStatistics2.t;
    (*

    [Output-only] Statistics for a query job.

    *)
  6. startTime : int64;
    (*

    [Output-only] Start time of this job, in milliseconds since the epoch. This field will be present when the job transitions from the PENDING state to either RUNNING or DONE.

    *)
  7. totalBytesProcessed : int64;
    (*

    [Output-only] [Deprecated] Use the bytes processed in the query statistics instead.

    *)
}
val creationTime : (t, int64) GapiLens.t
val endTime : (t, int64) GapiLens.t
val extract : (t, JobStatistics4.t) GapiLens.t
val startTime : (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