Class: Google::Apis::ComposerV1beta1::ListEnvironmentsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComposerV1beta1::ListEnvironmentsResponse
 
- Defined in:
- generated/google/apis/composer_v1beta1/classes.rb,
 generated/google/apis/composer_v1beta1/representations.rb,
 generated/google/apis/composer_v1beta1/representations.rb
Overview
The environments in a project and location.
Instance Attribute Summary collapse
- 
  
    
      #environments  ⇒ Array<Google::Apis::ComposerV1beta1::Environment> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of environments returned by a ListEnvironmentsRequest. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The page token used to query for the next page if one exists Corresponds to the JSON property nextPageToken.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListEnvironmentsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListEnvironmentsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListEnvironmentsResponse
Returns a new instance of ListEnvironmentsResponse
| 182 183 184 | # File 'generated/google/apis/composer_v1beta1/classes.rb', line 182 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#environments ⇒ Array<Google::Apis::ComposerV1beta1::Environment>
The list of environments returned by a ListEnvironmentsRequest.
Corresponds to the JSON property environments
| 175 176 177 | # File 'generated/google/apis/composer_v1beta1/classes.rb', line 175 def environments @environments end | 
#next_page_token ⇒ String
The page token used to query for the next page if one exists
Corresponds to the JSON property nextPageToken
| 180 181 182 | # File 'generated/google/apis/composer_v1beta1/classes.rb', line 180 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 187 188 189 190 | # File 'generated/google/apis/composer_v1beta1/classes.rb', line 187 def update!(**args) @environments = args[:environments] if args.key?(:environments) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |