package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Rows : sig ... end
type t = {
  1. ignoreUnknownValues : bool;
    (*

    [Optional] Accept rows that contain values that do not match the schema. The unknown values are ignored. Default is false, which treats unknown values as errors.

    *)
  2. kind : string;
    (*

    The resource type of the response.

    *)
  3. rows : Rows.t list;
    (*

    The rows to insert.

    *)
  4. skipInvalidRows : bool;
    (*

    [Optional] Insert all valid rows of a request, even if invalid rows exist. The default value is false, which causes the entire request to fail if any invalid rows exist.

    *)
  5. templateSuffix : string;
    (*

    [Experimental] If specified, treats the destination table as a base template, and inserts the rows into an instance table named "". BigQuery will manage creation of the instance table, using the schema of the base template table.

    *)
}
val ignoreUnknownValues : (t, bool) GapiLens.t
val kind : (t, string) GapiLens.t
val rows : (t, Rows.t list) GapiLens.t
val skipInvalidRows : (t, bool) GapiLens.t
val templateSuffix : (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