Class: Google::Cloud::Metastore::V1::LocationMetadata

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/metastore/v1/metastore.rb

Overview

Metadata about the service in a location.

Defined Under Namespace

Classes: HiveMetastoreVersion

Instance Attribute Summary collapse

Instance Attribute Details

#supported_hive_metastore_versions::Array<::Google::Cloud::Metastore::V1::LocationMetadata::HiveMetastoreVersion>

Returns The versions of Hive Metastore that can be used when creating a new metastore service in this location. The server guarantees that exactly one HiveMetastoreVersion in the list will set is_default.

Returns:



721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
# File 'proto_docs/google/cloud/metastore/v1/metastore.rb', line 721

class LocationMetadata
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A specification of a supported version of the Hive Metastore software.
  # @!attribute [rw] version
  #   @return [::String]
  #     The semantic version of the Hive Metastore software.
  # @!attribute [rw] is_default
  #   @return [::Boolean]
  #     Whether `version` will be chosen by the server if a metastore service is
  #     created with a `HiveMetastoreConfig` that omits the `version`.
  class HiveMetastoreVersion
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end