Class: Google::Apis::BiglakeV1::ListCatalogsResponse

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

Overview

Response message for the ListCatalogs method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListCatalogsResponse

Returns a new instance of ListCatalogsResponse.



201
202
203
# File 'lib/google/apis/biglake_v1/classes.rb', line 201

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

Instance Attribute Details

#catalogsArray<Google::Apis::BiglakeV1::Catalog>

The catalogs from the specified project. Corresponds to the JSON property catalogs



193
194
195
# File 'lib/google/apis/biglake_v1/classes.rb', line 193

def catalogs
  @catalogs
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)


199
200
201
# File 'lib/google/apis/biglake_v1/classes.rb', line 199

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



206
207
208
209
# File 'lib/google/apis/biglake_v1/classes.rb', line 206

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