Class: Google::Cloud::Metastore::V1::LocationMetadata
- Inherits:
-
Object
- Object
- Google::Cloud::Metastore::V1::LocationMetadata
- 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
-
#supported_hive_metastore_versions ⇒ ::Array<::Google::Cloud::Metastore::V1::LocationMetadata::HiveMetastoreVersion>
The versions of Hive Metastore that can be used when creating a new metastore service in this location.
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
.
1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 |
# File 'proto_docs/google/cloud/metastore/v1/metastore.rb', line 1233 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 |