module JobStatus:sig..end
type t = {
|
errorResult : |
(* |
[Output-only] Final error result of the job. If present, indicates that the job has completed and was unsuccessful.
| *) |
|
errors : |
(* |
[Output-only] All errors encountered during the running of the job. Errors here do not necessarily mean that the job has completed or was unsuccessful.
| *) |
|
state : |
(* |
[Output-only] Running state of the job.
| *) |
val errorResult : (t, GapiBigqueryV2Model.ErrorProto.t)
GapiLens.t
val errors : (t, GapiBigqueryV2Model.ErrorProto.t list)
GapiLens.t
val state : (t, string) 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