Class: Google::Apis::ComposerV1::ListImageVersionsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComposerV1::ListImageVersionsResponse
 
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/composer_v1/classes.rb,
 lib/google/apis/composer_v1/representations.rb,
 lib/google/apis/composer_v1/representations.rb
Overview
The ImageVersions in a project and location.
Instance Attribute Summary collapse
- 
  
    
      #image_versions  ⇒ Array<Google::Apis::ComposerV1::ImageVersion> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of supported ImageVersions in a location. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The page token used to query for the next page if one exists. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListImageVersionsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListImageVersionsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ ListImageVersionsResponse
Returns a new instance of ListImageVersionsResponse.
| 814 815 816 | # File 'lib/google/apis/composer_v1/classes.rb', line 814 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#image_versions ⇒ Array<Google::Apis::ComposerV1::ImageVersion>
The list of supported ImageVersions in a location.
Corresponds to the JSON property imageVersions
| 807 808 809 | # File 'lib/google/apis/composer_v1/classes.rb', line 807 def image_versions @image_versions end | 
#next_page_token ⇒ String
The page token used to query for the next page if one exists.
Corresponds to the JSON property nextPageToken
| 812 813 814 | # File 'lib/google/apis/composer_v1/classes.rb', line 812 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 819 820 821 822 | # File 'lib/google/apis/composer_v1/classes.rb', line 819 def update!(**args) @image_versions = args[:image_versions] if args.key?(:image_versions) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |