Class: Google::Apis::BigtableadminV2::ListLogicalViewsResponse
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV2::ListLogicalViewsResponse
- 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.ListLogicalViews.
Instance Attribute Summary collapse
-
#logical_views ⇒ Array<Google::Apis::BigtableadminV2::LogicalView>
The list of requested logical views.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListLogicalViewsResponse
constructor
A new instance of ListLogicalViewsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListLogicalViewsResponse
Returns a new instance of ListLogicalViewsResponse.
3051 3052 3053 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3051 def initialize(**args) update!(**args) end |
Instance Attribute Details
#logical_views ⇒ Array<Google::Apis::BigtableadminV2::LogicalView>
The list of requested logical views.
Corresponds to the JSON property logicalViews
3043 3044 3045 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3043 def logical_views @logical_views end |
#next_page_token ⇒ String
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
3049 3050 3051 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3049 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3056 3057 3058 3059 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3056 def update!(**args) @logical_views = args[:logical_views] if args.key?(:logical_views) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |