Class: Google::Apis::ComposerV1beta1::ListImageVersionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ComposerV1beta1::ListImageVersionsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/composer_v1beta1/classes.rb,
lib/google/apis/composer_v1beta1/representations.rb,
lib/google/apis/composer_v1beta1/representations.rb
Overview
The ImageVersions in a project and location.
Instance Attribute Summary collapse
-
#image_versions ⇒ Array<Google::Apis::ComposerV1beta1::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.
1049 1050 1051 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1049 def initialize(**args) update!(**args) end |
Instance Attribute Details
#image_versions ⇒ Array<Google::Apis::ComposerV1beta1::ImageVersion>
The list of supported ImageVersions in a location.
Corresponds to the JSON property imageVersions
1042 1043 1044 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1042 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
1047 1048 1049 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1047 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1054 1055 1056 1057 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1054 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 |