Class: Google::Apis::DatafusionV1beta1::ListAvailableVersionsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListAvailableVersionsResponse

Returns a new instance of ListAvailableVersionsResponse.



764
765
766
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 764

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#available_versionsArray<Google::Apis::DatafusionV1beta1::Version>

Represents a list of versions that are supported. Corresponds to the JSON property availableVersions



756
757
758
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 756

def available_versions
  @available_versions
end

#next_page_tokenString

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

Returns:

  • (String)


762
763
764
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 762

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



769
770
771
772
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 769

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