Class: Google::Apis::DatafusionV1beta1::ListAvailableVersionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatafusionV1beta1::ListAvailableVersionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/datafusion_v1beta1/classes.rb,
generated/google/apis/datafusion_v1beta1/representations.rb,
generated/google/apis/datafusion_v1beta1/representations.rb
Overview
Response message for the list available versions request.
Instance Attribute Summary collapse
-
#available_versions ⇒ Array<Google::Apis::DatafusionV1beta1::Version>
Represents a list of versions that are supported.
-
#next_page_token ⇒ String
Token to retrieve the next page of results or empty if there are no more results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAvailableVersionsResponse
constructor
A new instance of ListAvailableVersionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAvailableVersionsResponse
Returns a new instance of ListAvailableVersionsResponse.
475 476 477 |
# File 'generated/google/apis/datafusion_v1beta1/classes.rb', line 475 def initialize(**args) update!(**args) end |
Instance Attribute Details
#available_versions ⇒ Array<Google::Apis::DatafusionV1beta1::Version>
Represents a list of versions that are supported.
Corresponds to the JSON property availableVersions
467 468 469 |
# File 'generated/google/apis/datafusion_v1beta1/classes.rb', line 467 def available_versions @available_versions end |
#next_page_token ⇒ String
Token to retrieve the next page of results or empty if there are no more
results in the list.
Corresponds to the JSON property nextPageToken
473 474 475 |
# File 'generated/google/apis/datafusion_v1beta1/classes.rb', line 473 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
480 481 482 483 |
# File 'generated/google/apis/datafusion_v1beta1/classes.rb', line 480 def update!(**args) @available_versions = args[:available_versions] if args.key?(:available_versions) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |