Class: Google::Apis::FirebaseV1beta1::ListAvailableProjectsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::FirebaseV1beta1::ListAvailableProjectsResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/firebase_v1beta1/classes.rb,
lib/google/apis/firebase_v1beta1/representations.rb,
lib/google/apis/firebase_v1beta1/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If the result list is too large to fit in a single response, then a token is returned.
 - 
  
    
      #project_info  ⇒ Array<Google::Apis::FirebaseV1beta1::ProjectInfo> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of GCP
Projectswhich can have Firebase resources added to them. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListAvailableProjectsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListAvailableProjectsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ListAvailableProjectsResponse
Returns a new instance of ListAvailableProjectsResponse.
      840 841 842  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 840 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#next_page_token ⇒ String
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
      833 834 835  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 833 def next_page_token @next_page_token end  | 
  
#project_info ⇒ Array<Google::Apis::FirebaseV1beta1::ProjectInfo>
The list of GCP Projects which can have Firebase resources added to them.
Corresponds to the JSON property projectInfo
      838 839 840  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 838 def project_info @project_info end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      845 846 847 848  | 
    
      # File 'lib/google/apis/firebase_v1beta1/classes.rb', line 845 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  |