package gapi-ocaml

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

    [Pick one] A domain to grant access to. Any users signed in with the domain specified will be granted the specified access. Example: "example.com".

    *)
  2. groupByEmail : string;
    (*

    [Pick one] An email address of a Google Group to grant access to.

    *)
  3. role : string;
    (*

    [Required] Describes the rights granted to the user specified by the other member of the access object. The following string values are supported: READER, WRITER, OWNER.

    *)
  4. specialGroup : string;
    (*

    [Pick one] A special group to grant access to. Possible values include: projectOwners: Owners of the enclosing project. projectReaders: Readers of the enclosing project. projectWriters: Writers of the enclosing project. allAuthenticatedUsers: All authenticated BigQuery users.

    *)
  5. userByEmail : string;
    (*

    [Pick one] An email address of a user to grant access to. For example: fred@example.com.

    *)
  6. view : TableReference.t;
    (*

    [Pick one] A view from a different dataset to grant access to. Queries executed against that view will have read access to tables in this dataset. The role field is not required when this field is set. If that view is updated by any user, access to the view needs to be granted again via an update operation.

    *)
}
val domain : (t, string) GapiLens.t
val groupByEmail : (t, string) GapiLens.t
val role : (t, string) GapiLens.t
val specialGroup : (t, string) GapiLens.t
val userByEmail : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t