class Google::Apis::ComposerV1::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::ComposerV1::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_v1/classes.rb, line 513 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_v1/classes.rb, line 518 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