class Google::Apis::DatafusionV1beta1::Version
The Data Fusion version.
Attributes
available_features[RW]
Represents a list of available feature names for a given version. Corresponds to the JSON property `availableFeatures` @return [Array<String>]
default_version[RW]
Whether this is currently the default version for Cloud Data Fusion Corresponds to the JSON property `defaultVersion` @return [Boolean]
default_version?[RW]
Whether this is currently the default version for Cloud Data Fusion Corresponds to the JSON property `defaultVersion` @return [Boolean]
version_number[RW]
The version number of the Data Fusion instance, such as '6.0.1.0'. Corresponds to the JSON property `versionNumber` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datafusion_v1beta1/classes.rb, line 1339 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/datafusion_v1beta1/classes.rb, line 1344 def update!(**args) @available_features = args[:available_features] if args.key?(:available_features) @default_version = args[:default_version] if args.key?(:default_version) @version_number = args[:version_number] if args.key?(:version_number) end