module JobStatistics:sig..end
type t = {
|
creationTime : |
(* |
[Output-only] Creation time of this job, in milliseconds since the epoch. This field will be present on all jobs.
| *) |
|
endTime : |
(* |
[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.
| *) |
|
extract : |
(* |
[Output-only] Statistics for an extract job.
| *) |
|
load : |
(* |
[Output-only] Statistics for a load job.
| *) |
|
query : |
(* |
[Output-only] Statistics for a query job.
| *) |
|
startTime : |
(* |
[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.
| *) |
|
totalBytesProcessed : |
(* |
[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, GapiBigqueryV2Model.JobStatistics4.t)
GapiLens.t
val load : (t, GapiBigqueryV2Model.JobStatistics3.t)
GapiLens.t
val query : (t, GapiBigqueryV2Model.JobStatistics2.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