Class: Google::Apis::ComposerV1::ListImageVersionsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListImageVersionsResponse

Returns a new instance of ListImageVersionsResponse.



859
860
861
# File 'lib/google/apis/composer_v1/classes.rb', line 859

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#image_versionsArray<Google::Apis::ComposerV1::ImageVersion>

The list of supported ImageVersions in a location. Corresponds to the JSON property imageVersions



852
853
854
# File 'lib/google/apis/composer_v1/classes.rb', line 852

def image_versions
  @image_versions
end

#next_page_tokenString

The page token used to query for the next page if one exists. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


857
858
859
# File 'lib/google/apis/composer_v1/classes.rb', line 857

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



864
865
866
867
# File 'lib/google/apis/composer_v1/classes.rb', line 864

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