Class: Google::Apis::MetastoreV1beta::HiveMetastoreVersion
- Inherits:
-
Object
- Object
- Google::Apis::MetastoreV1beta::HiveMetastoreVersion
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/metastore_v1beta/classes.rb,
generated/google/apis/metastore_v1beta/representations.rb,
generated/google/apis/metastore_v1beta/representations.rb
Overview
A specification of a supported version of the Hive Metastore software.
Instance Attribute Summary collapse
-
#is_default ⇒ Boolean
(also: #is_default?)
Whether version will be chosen by the server if a metastore service is created with a HiveMetastoreConfig that omits the version.
-
#version ⇒ String
The semantic version of the Hive Metastore software.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HiveMetastoreVersion
constructor
A new instance of HiveMetastoreVersion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ HiveMetastoreVersion
Returns a new instance of HiveMetastoreVersion.
354 355 356 |
# File 'generated/google/apis/metastore_v1beta/classes.rb', line 354 def initialize(**args) update!(**args) end |
Instance Attribute Details
#is_default ⇒ Boolean Also known as: is_default?
Whether version will be chosen by the server if a metastore service is created
with a HiveMetastoreConfig that omits the version.
Corresponds to the JSON property isDefault
346 347 348 |
# File 'generated/google/apis/metastore_v1beta/classes.rb', line 346 def is_default @is_default end |
#version ⇒ String
The semantic version of the Hive Metastore software.
Corresponds to the JSON property version
352 353 354 |
# File 'generated/google/apis/metastore_v1beta/classes.rb', line 352 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
359 360 361 362 |
# File 'generated/google/apis/metastore_v1beta/classes.rb', line 359 def update!(**args) @is_default = args[:is_default] if args.key?(:is_default) @version = args[:version] if args.key?(:version) end |