package gapi-ocaml

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

    [Full-projection-only] Specifies the job configuration.

    *)
  2. errorResult : ErrorProto.t;
    (*

    A result object that will be present only if the job has failed.

    *)
  3. id : string;
    (*

    Unique opaque ID of the job.

    *)
  4. jobReference : JobReference.t;
    (*

    Job reference uniquely identifying the job.

    *)
  5. kind : string;
    (*

    The resource type.

    *)
  6. state : string;
    (*

    Running state of the job. When the state is DONE, errorResult can be checked to determine whether the job succeeded or failed.

    *)
  7. statistics : JobStatistics.t;
    (*

    [Output-only] Information about the job, including starting time and ending time of the job.

    *)
  8. status : JobStatus.t;
    (*

    [Full-projection-only] Describes the state of the job.

    *)
  9. user_email : string;
    (*

    [Full-projection-only] Email address of the user who ran the job.

    *)
}
val configuration : (t, JobConfiguration.t) GapiLens.t
val errorResult : (t, ErrorProto.t) GapiLens.t
val id : (t, string) GapiLens.t
val jobReference : (t, JobReference.t) GapiLens.t
val kind : (t, string) GapiLens.t
val state : (t, string) GapiLens.t
val statistics : (t, JobStatistics.t) GapiLens.t
val status : (t, JobStatus.t) GapiLens.t
val user_email : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t