package gapi-ocaml

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

Module GapiBigqueryV2Model.UserDefinedFunctionResourceSource

Sourcetype t = {
  1. inlineCode : string;
    (*

    [Pick one] An inline resource that contains code for a user-defined function (UDF). Providing a inline code resource is equivalent to providing a URI for a file containing the same code.

    *)
  2. resourceUri : string;
    (*

    [Pick one] A code resource to load from a Google Cloud Storage URI (gs://bucket/path).

    *)
}
Sourceval inlineCode : (t, string) GapiLens.t
Sourceval resourceUri : (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