class Google::Apis::MetastoreV1beta::HiveMetastoreVersion
A specification of a supported version of the Hive Metastore software.
Attributes
is_default[RW]
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` @return [Boolean]
is_default?[RW]
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` @return [Boolean]
version[RW]
The semantic version of the Hive Metastore software. Corresponds to the JSON property `version` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/metastore_v1beta/classes.rb, line 494 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/metastore_v1beta/classes.rb, line 499 def update!(**args) @is_default = args[:is_default] if args.key?(:is_default) @version = args[:version] if args.key?(:version) end