Class: Google::Apis::DatafusionV1beta1::ListAvailableVersionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatafusionV1beta1::ListAvailableVersionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datafusion_v1beta1/classes.rb,
lib/google/apis/datafusion_v1beta1/representations.rb,
lib/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.
-
#versions ⇒ Array<Google::Apis::DatafusionV1beta1::Version>
Represents a list of all versions.
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.
728 729 730 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 728 def initialize(**args) update!(**args) end |
Instance Attribute Details
#available_versions ⇒ Array<Google::Apis::DatafusionV1beta1::Version>
Represents a list of versions that are supported. Deprecated: Use versions
field instead.
Corresponds to the JSON property availableVersions
715 716 717 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 715 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
721 722 723 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 721 def next_page_token @next_page_token end |
#versions ⇒ Array<Google::Apis::DatafusionV1beta1::Version>
Represents a list of all versions.
Corresponds to the JSON property versions
726 727 728 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 726 def versions @versions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
733 734 735 736 737 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 733 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) @versions = args[:versions] if args.key?(:versions) end |