package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiBigqueryV2Model.TableDataInsertAllRequestSource

Sourcemodule Rows : sig ... end
Sourcetype 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.

    *)
}
Sourceval ignoreUnknownValues : (t, bool) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval rows : (t, Rows.t list) GapiLens.t
Sourceval skipInvalidRows : (t, bool) GapiLens.t
Sourceval templateSuffix : (t, string) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t