View Source GoogleApi.BigQuery.V2.Model.DatasetAccess (google_api_big_query v0.79.0)

An object that defines dataset access for an entity.

Attributes

  • dataset (type: GoogleApi.BigQuery.V2.Model.DatasetAccessEntry.t, default: nil) - [Pick one] A grant authorizing all resources of a particular type in a particular dataset access to this dataset. Only views are supported for now. The role field is not required when this field is set. If that dataset is deleted and re-created, its access needs to be granted again via an update operation.
  • domain (type: String.t, default: nil) - [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". Maps to IAM policy member "domain:DOMAIN".
  • groupByEmail (type: String.t, default: nil) - [Pick one] An email address of a Google Group to grant access to. Maps to IAM policy member "group:GROUP".
  • iamMember (type: String.t, default: nil) - [Pick one] Some other type of member that appears in the IAM Policy but isn't a user, group, domain, or special group.
  • role (type: String.t, default: nil) - An IAM role ID that should be granted to the user, group, or domain specified in this access entry. The following legacy mappings will be applied: OWNER <=> roles/bigquery.dataOwner WRITER <=> roles/bigquery.dataEditor READER <=> roles/bigquery.dataViewer This field will accept any of the above formats, but will return only the legacy format. For example, if you set this field to "roles/bigquery.dataOwner", it will be returned back as "OWNER".
  • routine (type: GoogleApi.BigQuery.V2.Model.RoutineReference.t, default: nil) - [Pick one] A routine from a different dataset to grant access to. Queries executed against that routine will have read access to views/tables/routines in this dataset. Only UDF is supported for now. The role field is not required when this field is set. If that routine is updated by any user, access to the routine needs to be granted again via an update operation.
  • specialGroup (type: String.t, default: nil) - [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. Maps to similarly-named IAM members.
  • userByEmail (type: String.t, default: nil) - [Pick one] An email address of a user to grant access to. For example: fred@example.com. Maps to IAM policy member "user:EMAIL" or "serviceAccount:EMAIL".
  • view (type: GoogleApi.BigQuery.V2.Model.TableReference.t, default: nil) - [Pick one] A view from a different dataset to grant access to. Queries executed against that view will have read access to views/tables/routines 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.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.BigQuery.V2.Model.DatasetAccess{
  dataset: GoogleApi.BigQuery.V2.Model.DatasetAccessEntry.t() | nil,
  domain: String.t() | nil,
  groupByEmail: String.t() | nil,
  iamMember: String.t() | nil,
  role: String.t() | nil,
  routine: GoogleApi.BigQuery.V2.Model.RoutineReference.t() | nil,
  specialGroup: String.t() | nil,
  userByEmail: String.t() | nil,
  view: GoogleApi.BigQuery.V2.Model.TableReference.t() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.