class Google::Apis::ComposerV1beta1::ListImageVersionsResponse

The ImageVersions in a project and location.

Attributes

image_versions[RW]

The list of supported ImageVersions in a location. Corresponds to the JSON property `imageVersions` @return [Array<Google::Apis::ComposerV1beta1::ImageVersion>]

next_page_token[RW]

The page token used to query for the next page if one exists. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/composer_v1beta1/classes.rb, line 595
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/composer_v1beta1/classes.rb, line 600
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