class Google::Apis::FirebasedatabaseV1beta::ListDatabaseInstancesResponse
The response from the ListDatabaseInstances method.
Attributes
instances[RW]
List of each DatabaseInstance
that is in the parent Firebase project. Corresponds to the JSON property `instances` @return [Array<Google::Apis::FirebasedatabaseV1beta::DatabaseInstance>]
next_page_token[RW]
If the result list is too large to fit in a single response, then a token is returned. If the string is empty, then this response is the last page of results. This token can be used in a subsequent call to `ListDatabaseInstances` to find the next group of database instances. Page tokens are short-lived and should not be persisted. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/firebasedatabase_v1beta/classes.rb, line 104 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/firebasedatabase_v1beta/classes.rb, line 109 def update!(**args) @instances = args[:instances] if args.key?(:instances) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end