Class: Google::Apis::MetastoreV1alpha::HiveMetastoreVersion

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/metastore_v1alpha/classes.rb,
lib/google/apis/metastore_v1alpha/representations.rb,
lib/google/apis/metastore_v1alpha/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.



1167
1168
1169
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 1167

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)


1159
1160
1161
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 1159

def is_default
  @is_default
end

#versionString

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

Returns:

  • (String)


1165
1166
1167
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 1165

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1172
1173
1174
1175
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 1172

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