class Google::Apis::BigqueryV2::ListRowAccessPoliciesResponse
Response message for the ListRowAccessPolicies method.
Attributes
next_page_token[RW]
A token to request the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
row_access_policies[RW]
Row
access policies on the requested table. Corresponds to the JSON property `rowAccessPolicies` @return [Array<Google::Apis::BigqueryV2::RowAccessPolicy>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 4436 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 4441 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @row_access_policies = args[:row_access_policies] if args.key?(:row_access_policies) end