Class: Google::Apis::DatafusionV1beta1::Version
- Inherits:
-
Object
- Object
- Google::Apis::DatafusionV1beta1::Version
- 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
The Data Fusion version.
Instance Attribute Summary collapse
-
#available_features ⇒ Array<String>
Represents a list of available feature names for a given version.
-
#default_version ⇒ Boolean
(also: #default_version?)
Whether this is currently the default version for Cloud Data Fusion Corresponds to the JSON property
defaultVersion
. -
#type ⇒ String
Type represents the release availability of the version Corresponds to the JSON property
type
. -
#version_number ⇒ String
The version number of the Data Fusion instance, such as '6.0.1.0'.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Version
constructor
A new instance of Version.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Version
Returns a new instance of Version.
1942 1943 1944 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1942 def initialize(**args) update!(**args) end |
Instance Attribute Details
#available_features ⇒ Array<String>
Represents a list of available feature names for a given version.
Corresponds to the JSON property availableFeatures
1924 1925 1926 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1924 def available_features @available_features end |
#default_version ⇒ Boolean Also known as: default_version?
Whether this is currently the default version for Cloud Data Fusion
Corresponds to the JSON property defaultVersion
1929 1930 1931 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1929 def default_version @default_version end |
#type ⇒ String
Type represents the release availability of the version
Corresponds to the JSON property type
1935 1936 1937 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1935 def type @type end |
#version_number ⇒ String
The version number of the Data Fusion instance, such as '6.0.1.0'.
Corresponds to the JSON property versionNumber
1940 1941 1942 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1940 def version_number @version_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1947 1948 1949 1950 1951 1952 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1947 def update!(**args) @available_features = args[:available_features] if args.key?(:available_features) @default_version = args[:default_version] if args.key?(:default_version) @type = args[:type] if args.key?(:type) @version_number = args[:version_number] if args.key?(:version_number) end |