class Google::Apis::SpannerV1::ListDatabasesResponse
The response for ListDatabases.
Attributes
databases[RW]
Databases that matched the request. Corresponds to the JSON property `databases` @return [Array<Google::Apis::SpannerV1::Database>]
next_page_token[RW]
`next_page_token` can be sent in a subsequent ListDatabases call to fetch more of the matching databases. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/spanner_v1/classes.rb, line 2072 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/spanner_v1/classes.rb, line 2077 def update!(**args) @databases = args[:databases] if args.key?(:databases) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end