module TableDataInsertAllRequest:sig..end
module Rows:sig..end
type t = {
|
ignoreUnknownValues : |
(* |
[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.
| *) |
|
kind : |
(* |
The resource type of the response.
| *) |
|
rows : |
(* |
The rows to insert.
| *) |
|
skipInvalidRows : |
(* |
[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.
| *) |
|
templateSuffix : |
(* |
[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