Class: Google::Apis::BigqueryV2::ListRowAccessPoliciesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/bigquery_v2/classes.rb,
generated/google/apis/bigquery_v2/representations.rb,
generated/google/apis/bigquery_v2/representations.rb

Overview

Response message for the ListRowAccessPolicies method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListRowAccessPoliciesResponse

Returns a new instance of ListRowAccessPoliciesResponse.



4156
4157
4158
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4156

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

A token to request the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


4149
4150
4151
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4149

def next_page_token
  @next_page_token
end

#row_access_policiesArray<Google::Apis::BigqueryV2::RowAccessPolicy>

Row access policies on the requested table. Corresponds to the JSON property rowAccessPolicies



4154
4155
4156
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4154

def row_access_policies
  @row_access_policies
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4161
4162
4163
4164
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4161

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