package gapi-ocaml

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

    [Optional] The compression type to use for exported files. Possible values include GZIP and NONE. The default value is NONE.

    *)
  2. destinationFormat : string;
    (*

    [Optional] The exported file format. Possible values include CSV, NEWLINE_DELIMITED_JSON and AVRO. The default value is CSV. Tables with nested or repeated fields cannot be exported as CSV.

    *)
  3. destinationUri : string;
    (*

    [Pick one] DEPRECATED: Use destinationUris instead, passing only one URI as necessary. The fully-qualified Google Cloud Storage URI where the extracted table should be written.

    *)
  4. destinationUris : string list;
    (*

    [Pick one] A list of fully-qualified Google Cloud Storage URIs where the extracted table should be written.

    *)
  5. fieldDelimiter : string;
    (*

    [Optional] Delimiter to use between fields in the exported data. Default is ','

    *)
  6. printHeader : bool;
    (*

    [Optional] Whether to print out a header row in the results. Default is true.

    *)
  7. sourceTable : TableReference.t;
    (*

    [Required] A reference to the table being exported.

    *)
}
val compression : (t, string) GapiLens.t
val destinationFormat : (t, string) GapiLens.t
val destinationUri : (t, string) GapiLens.t
val destinationUris : (t, string list) GapiLens.t
val fieldDelimiter : (t, string) GapiLens.t
val printHeader : (t, bool) GapiLens.t
val sourceTable : (t, TableReference.t) 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