com.google.cloud.metastore.v1beta.AuxiliaryVersionConfigOrBuilder Maven / Gradle / Ivy
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/metastore/v1beta/metastore.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.metastore.v1beta;
public interface AuxiliaryVersionConfigOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.metastore.v1beta.AuxiliaryVersionConfig)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The Hive metastore version of the auxiliary service. It must be less
* than the primary Hive metastore service's version.
*
*
* string version = 1;
*
* @return The version.
*/
java.lang.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;
*
* @return The bytes for version.
*/
com.google.protobuf.ByteString getVersionBytes();
/**
*
*
*
* 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;
*/
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;
*/
boolean containsConfigOverrides(java.lang.String key);
/** Use {@link #getConfigOverridesMap()} instead. */
@java.lang.Deprecated
java.util.Map getConfigOverrides();
/**
*
*
*
* 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;
*/
java.util.Map 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;
*/
/* nullable */
java.lang.String getConfigOverridesOrDefault(
java.lang.String key,
/* nullable */
java.lang.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;
*/
java.lang.String getConfigOverridesOrThrow(java.lang.String key);
/**
*
*
*
* Output only. The network configuration contains the endpoint URI(s) of the
* auxiliary Hive metastore service.
*
*
*
* .google.cloud.metastore.v1beta.NetworkConfig network_config = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the networkConfig field is set.
*/
boolean hasNetworkConfig();
/**
*
*
*
* Output only. The network configuration contains the endpoint URI(s) of the
* auxiliary Hive metastore service.
*
*
*
* .google.cloud.metastore.v1beta.NetworkConfig network_config = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The networkConfig.
*/
com.google.cloud.metastore.v1beta.NetworkConfig getNetworkConfig();
/**
*
*
*
* Output only. The network configuration contains the endpoint URI(s) of the
* auxiliary Hive metastore service.
*
*
*
* .google.cloud.metastore.v1beta.NetworkConfig network_config = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.cloud.metastore.v1beta.NetworkConfigOrBuilder getNetworkConfigOrBuilder();
}