Class: Google::Apis::BigtableadminV2::ListMaterializedViewsResponse

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

Overview

Response message for BigtableInstanceAdmin.ListMaterializedViews.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListMaterializedViewsResponse

Returns a new instance of ListMaterializedViewsResponse.



3077
3078
3079
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3077

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

Instance Attribute Details

#materialized_viewsArray<Google::Apis::BigtableadminV2::MaterializedView>

The list of requested materialized views. Corresponds to the JSON property materializedViews



3069
3070
3071
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3069

def materialized_views
  @materialized_views
end

#next_page_tokenString

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


3075
3076
3077
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3075

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3082
3083
3084
3085
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3082

def update!(**args)
  @materialized_views = args[:materialized_views] if args.key?(:materialized_views)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end