Class: Google::Apis::BigqueryV2::Dataset::Access
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::Dataset::Access
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb
Instance Attribute Summary collapse
-
#dataset ⇒ Google::Apis::BigqueryV2::DatasetAccessEntry
[Pick one] A grant authorizing all resources of a particular type in a particular dataset access to this dataset.
-
#domain ⇒ String
[Pick one] A domain to grant access to.
-
#group_by_email ⇒ String
[Pick one] An email address of a Google Group to grant access to.
-
#iam_member ⇒ String
[Pick one] Some other type of member that appears in the IAM Policy but isn't a user, group, domain, or special group.
-
#role ⇒ String
[Required] An IAM role ID that should be granted to the user, group, or domain specified in this access entry.
-
#routine ⇒ Google::Apis::BigqueryV2::RoutineReference
[Pick one] A routine from a different dataset to grant access to.
-
#special_group ⇒ String
[Pick one] A special group to grant access to.
-
#user_by_email ⇒ String
[Pick one] An email address of a user to grant access to.
-
#view ⇒ Google::Apis::BigqueryV2::TableReference
[Pick one] A view from a different dataset to grant access to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Access
constructor
A new instance of Access.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Access
Returns a new instance of Access.
1557 1558 1559 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1557 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset ⇒ Google::Apis::BigqueryV2::DatasetAccessEntry
[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.
Corresponds to the JSON property dataset
1493 1494 1495 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1493 def dataset @dataset end |
#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". Maps
to IAM policy member "domain:DOMAIN".
Corresponds to the JSON property domain
1500 1501 1502 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1500 def domain @domain end |
#group_by_email ⇒ String
[Pick one] An email address of a Google Group to grant access to. Maps to IAM
policy member "group:GROUP".
Corresponds to the JSON property groupByEmail
1506 1507 1508 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1506 def group_by_email @group_by_email end |
#iam_member ⇒ String
[Pick one] Some other type of member that appears in the IAM Policy but isn't
a user, group, domain, or special group.
Corresponds to the JSON property iamMember
1512 1513 1514 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1512 def iam_member @iam_member end |
#role ⇒ String
[Required] 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".
Corresponds to the JSON property role
1522 1523 1524 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1522 def role @role end |
#routine ⇒ Google::Apis::BigqueryV2::RoutineReference
[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.
Corresponds to the JSON property routine
1531 1532 1533 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1531 def routine @routine end |
#special_group ⇒ 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. Maps to similarly-
named IAM members.
Corresponds to the JSON property specialGroup
1540 1541 1542 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1540 def special_group @special_group end |
#user_by_email ⇒ String
[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".
Corresponds to the JSON property userByEmail
1546 1547 1548 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1546 def user_by_email @user_by_email end |
#view ⇒ Google::Apis::BigqueryV2::TableReference
[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.
Corresponds to the JSON property view
1555 1556 1557 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1555 def view @view end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1562 def update!(**args) @dataset = args[:dataset] if args.key?(:dataset) @domain = args[:domain] if args.key?(:domain) @group_by_email = args[:group_by_email] if args.key?(:group_by_email) @iam_member = args[:iam_member] if args.key?(:iam_member) @role = args[:role] if args.key?(:role) @routine = args[:routine] if args.key?(:routine) @special_group = args[:special_group] if args.key?(:special_group) @user_by_email = args[:user_by_email] if args.key?(:user_by_email) @view = args[:view] if args.key?(:view) end |