Class: Google::Apis::MetastoreV1::HiveMetastoreVersion

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/metastore_v1/classes.rb,
lib/google/apis/metastore_v1/representations.rb,
lib/google/apis/metastore_v1/representations.rb

Overview

A specification of a supported version of the Hive Metastore software.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ HiveMetastoreVersion

Returns a new instance of HiveMetastoreVersion.



602
603
604
# File 'lib/google/apis/metastore_v1/classes.rb', line 602

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

Instance Attribute Details

#is_defaultBoolean 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

Returns:

  • (Boolean)


594
595
596
# File 'lib/google/apis/metastore_v1/classes.rb', line 594

def is_default
  @is_default
end

#versionString

The semantic version of the Hive Metastore software. Corresponds to the JSON property version

Returns:

  • (String)


600
601
602
# File 'lib/google/apis/metastore_v1/classes.rb', line 600

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



607
608
609
610
# File 'lib/google/apis/metastore_v1/classes.rb', line 607

def update!(**args)
  @is_default = args[:is_default] if args.key?(:is_default)
  @version = args[:version] if args.key?(:version)
end