Package com.google.cloud.metastore.v1
Interface AuxiliaryVersionConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AuxiliaryVersionConfig
,AuxiliaryVersionConfig.Builder
public interface AuxiliaryVersionConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsConfigOverrides(String key)
A mapping of Hive metastore configuration key-value pairs to apply to the auxiliary Hive metastore (configured in `hive-site.xml`) in addition to the primary version's overrides.Map<String,String>
getConfigOverrides()
Deprecated.int
getConfigOverridesCount()
A mapping of Hive metastore configuration key-value pairs to apply to the auxiliary Hive metastore (configured in `hive-site.xml`) in addition to the primary version's overrides.Map<String,String>
getConfigOverridesMap()
A mapping of Hive metastore configuration key-value pairs to apply to the auxiliary Hive metastore (configured in `hive-site.xml`) in addition to the primary version's overrides.String
getConfigOverridesOrDefault(String key, String defaultValue)
A mapping of Hive metastore configuration key-value pairs to apply to the auxiliary Hive metastore (configured in `hive-site.xml`) in addition to the primary version's overrides.String
getConfigOverridesOrThrow(String key)
A mapping of Hive metastore configuration key-value pairs to apply to the auxiliary Hive metastore (configured in `hive-site.xml`) in addition to the primary version's overrides.NetworkConfig
getNetworkConfig()
Output only.NetworkConfigOrBuilder
getNetworkConfigOrBuilder()
Output only.String
getVersion()
The Hive metastore version of the auxiliary service.com.google.protobuf.ByteString
getVersionBytes()
The Hive metastore version of the auxiliary service.boolean
hasNetworkConfig()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVersion
String getVersion()
The Hive metastore version of the auxiliary service. It must be less than the primary Hive metastore service's version.
string version = 1;
- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()
The Hive metastore version of the auxiliary service. It must be less than the primary Hive metastore service's version.
string version = 1;
- Returns:
- The bytes for version.
-
getConfigOverridesCount
int getConfigOverridesCount()
A mapping of Hive metastore configuration key-value pairs to apply to the auxiliary Hive metastore (configured in `hive-site.xml`) in addition to the primary version's overrides. If keys are present in both the auxiliary version's overrides and the primary version's overrides, the value from the auxiliary version's overrides takes precedence.
map<string, string> config_overrides = 2;
-
containsConfigOverrides
boolean containsConfigOverrides(String key)
A mapping of Hive metastore configuration key-value pairs to apply to the auxiliary Hive metastore (configured in `hive-site.xml`) in addition to the primary version's overrides. If keys are present in both the auxiliary version's overrides and the primary version's overrides, the value from the auxiliary version's overrides takes precedence.
map<string, string> config_overrides = 2;
-
getConfigOverrides
@Deprecated Map<String,String> getConfigOverrides()
Deprecated.UsegetConfigOverridesMap()
instead.
-
getConfigOverridesMap
Map<String,String> getConfigOverridesMap()
A mapping of Hive metastore configuration key-value pairs to apply to the auxiliary Hive metastore (configured in `hive-site.xml`) in addition to the primary version's overrides. If keys are present in both the auxiliary version's overrides and the primary version's overrides, the value from the auxiliary version's overrides takes precedence.
map<string, string> config_overrides = 2;
-
getConfigOverridesOrDefault
String getConfigOverridesOrDefault(String key, String defaultValue)
A mapping of Hive metastore configuration key-value pairs to apply to the auxiliary Hive metastore (configured in `hive-site.xml`) in addition to the primary version's overrides. If keys are present in both the auxiliary version's overrides and the primary version's overrides, the value from the auxiliary version's overrides takes precedence.
map<string, string> config_overrides = 2;
-
getConfigOverridesOrThrow
String getConfigOverridesOrThrow(String key)
A mapping of Hive metastore configuration key-value pairs to apply to the auxiliary Hive metastore (configured in `hive-site.xml`) in addition to the primary version's overrides. If keys are present in both the auxiliary version's overrides and the primary version's overrides, the value from the auxiliary version's overrides takes precedence.
map<string, string> config_overrides = 2;
-
hasNetworkConfig
boolean hasNetworkConfig()
Output only. The network configuration contains the endpoint URI(s) of the auxiliary Hive metastore service.
.google.cloud.metastore.v1.NetworkConfig network_config = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- Whether the networkConfig field is set.
-
getNetworkConfig
NetworkConfig getNetworkConfig()
Output only. The network configuration contains the endpoint URI(s) of the auxiliary Hive metastore service.
.google.cloud.metastore.v1.NetworkConfig network_config = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The networkConfig.
-
getNetworkConfigOrBuilder
NetworkConfigOrBuilder getNetworkConfigOrBuilder()
Output only. The network configuration contains the endpoint URI(s) of the auxiliary Hive metastore service.
.google.cloud.metastore.v1.NetworkConfig network_config = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
-