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.
3065 3066 3067 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3065 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
3057 3058 3059 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3057 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
3063 3064 3065 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3063 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3070 3071 3072 3073 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3070 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 |