class Google::Apis::BigqueryV2::RowAccessPolicyReference
Attributes
dataset_id[RW]
- Required
-
The ID of the dataset containing this row access policy.
Corresponds to the JSON property `datasetId` @return [String]
policy_id[RW]
- Required
-
The ID of the row access policy. The ID must contain only letters (
a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 256 characters. Corresponds to the JSON property `policyId` @return [String]
project_id[RW]
- Required
-
The ID of the project containing this row access policy.
Corresponds to the JSON property `projectId` @return [String]
table_id[RW]
- Required
-
The ID of the table containing this row access policy.
Corresponds to the JSON property `tableId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 5821 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigquery_v2/classes.rb, line 5826 def update!(**args) @dataset_id = args[:dataset_id] if args.key?(:dataset_id) @policy_id = args[:policy_id] if args.key?(:policy_id) @project_id = args[:project_id] if args.key?(:project_id) @table_id = args[:table_id] if args.key?(:table_id) end