Class: Google::Apis::DatafusionV1::ListAvailableVersionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatafusionV1::ListAvailableVersionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datafusion_v1/classes.rb,
lib/google/apis/datafusion_v1/representations.rb,
lib/google/apis/datafusion_v1/representations.rb
Overview
Response message for the list available versions request.
Instance Attribute Summary collapse
-
#available_versions ⇒ Array<Google::Apis::DatafusionV1::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.
865 866 867 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 865 def initialize(**args) update!(**args) end |
Instance Attribute Details
#available_versions ⇒ Array<Google::Apis::DatafusionV1::Version>
Represents a list of versions that are supported.
Corresponds to the JSON property availableVersions
857 858 859 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 857 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
863 864 865 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 863 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
870 871 872 873 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 870 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 |