class Google::Apis::MetastoreV1alpha::HiveMetastoreConfig
Specifies configuration information specific to running Hive metastore software as the metastore service.
Attributes
A mapping of Hive metastore configuration key-value pairs to apply to the Hive metastore (configured in hive-site.xml). The mappings override system defaults (some keys cannot be overridden). Corresponds to the JSON property `configOverrides` @return [Hash<String,String>]
The protocol to use for the metastore service endpoint. If unspecified, defaults to THRIFT. Corresponds to the JSON property `endpointProtocol` @return [String]
Configuration information for a Kerberos principal. Corresponds to the JSON property `kerberosConfig` @return [Google::Apis::MetastoreV1alpha::KerberosConfig]
Immutable. The Hive metastore schema version. Corresponds to the JSON property `version` @return [String]
Public Class Methods
# File lib/google/apis/metastore_v1alpha/classes.rb, line 465 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/metastore_v1alpha/classes.rb, line 470 def update!(**args) @config_overrides = args[:config_overrides] if args.key?(:config_overrides) @endpoint_protocol = args[:endpoint_protocol] if args.key?(:endpoint_protocol) @kerberos_config = args[:kerberos_config] if args.key?(:kerberos_config) @version = args[:version] if args.key?(:version) end