class Google::Apis::FirebaseV1beta1::ListAvailableProjectsResponse
Attributes
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 calls to ` ListAvailableProjects` to find the next group of Projects. Page tokens are short-lived and should not be persisted. Corresponds to the JSON property `nextPageToken` @return [String]
project_info[RW]
The list of GCP `Projects` which can have Firebase resources added to them. Corresponds to the JSON property `projectInfo` @return [Array<Google::Apis::FirebaseV1beta1::ProjectInfo>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/firebase_v1beta1/classes.rb, line 647 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/firebase_v1beta1/classes.rb, line 652 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @project_info = args[:project_info] if args.key?(:project_info) end