public class MetastoreServiceStubSettings extends StubSettings<MetastoreServiceStubSettings>
Settings class to configure an instance of MetastoreServiceStub.
The default instance has everything set to sensible defaults:
- The default service address (biglake.googleapis.com) and default port (443) are used.
- Credentials are acquired automatically through Application Default Credentials.
- Retries are configured for idempotent methods but not for non-idempotent methods.
The builder of this class is recursive, so contained classes are themselves builders. When
build() is called, the tree of builders is called to create the complete settings object.
For example, to set the total timeout of createCatalog to 30 seconds:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
MetastoreServiceStubSettings.Builder metastoreServiceSettingsBuilder =
MetastoreServiceStubSettings.newBuilder();
metastoreServiceSettingsBuilder
.createCatalogSettings()
.setRetrySettings(
metastoreServiceSettingsBuilder
.createCatalogSettings()
.getRetrySettings()
.toBuilder()
.setTotalTimeout(Duration.ofSeconds(30))
.build());
MetastoreServiceStubSettings metastoreServiceSettings = metastoreServiceSettingsBuilder.build();
Static Methods
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder()
public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder()
Returns a builder for the default credentials for this service.
public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder()
Returns a builder for the default ExecutorProvider for this service.
public static ApiClientHeaderProvider.Builder defaultGrpcApiClientHeaderProviderBuilder()
public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder()
Returns a builder for the default gRPC ChannelProvider for this service.
public static ApiClientHeaderProvider.Builder defaultHttpJsonApiClientHeaderProviderBuilder()
public static InstantiatingHttpJsonChannelProvider.Builder defaultHttpJsonTransportProviderBuilder()
Returns a builder for the default REST ChannelProvider for this service.
public static TransportChannelProvider defaultTransportChannelProvider()
public static String getDefaultEndpoint()
Returns the default service endpoint.
public static String getDefaultMtlsEndpoint()
Returns the default mTLS service endpoint.
public static List<String> getDefaultServiceScopes()
Returns the default service scopes.
public static MetastoreServiceStubSettings.Builder newBuilder()
Returns a new gRPC builder for this class.
newBuilder(ClientContext clientContext)
public static MetastoreServiceStubSettings.Builder newBuilder(ClientContext clientContext)
Returns a new builder for this class.
public static MetastoreServiceStubSettings.Builder newHttpJsonBuilder()
Returns a new REST builder for this class.
Constructors
protected MetastoreServiceStubSettings(MetastoreServiceStubSettings.Builder settingsBuilder)
Methods
public UnaryCallSettings<CheckLockRequest,Lock> checkLockSettings()
Returns the object with the settings used for calls to checkLock.
public UnaryCallSettings<CreateCatalogRequest,Catalog> createCatalogSettings()
Returns the object with the settings used for calls to createCatalog.
public UnaryCallSettings<CreateDatabaseRequest,Database> createDatabaseSettings()
Returns the object with the settings used for calls to createDatabase.
public UnaryCallSettings<CreateLockRequest,Lock> createLockSettings()
Returns the object with the settings used for calls to createLock.
public MetastoreServiceStub createStub()
public UnaryCallSettings<CreateTableRequest,Table> createTableSettings()
Returns the object with the settings used for calls to createTable.
public UnaryCallSettings<DeleteCatalogRequest,Catalog> deleteCatalogSettings()
Returns the object with the settings used for calls to deleteCatalog.
public UnaryCallSettings<DeleteDatabaseRequest,Database> deleteDatabaseSettings()
Returns the object with the settings used for calls to deleteDatabase.
public UnaryCallSettings<DeleteLockRequest,Empty> deleteLockSettings()
Returns the object with the settings used for calls to deleteLock.
public UnaryCallSettings<DeleteTableRequest,Table> deleteTableSettings()
Returns the object with the settings used for calls to deleteTable.
public UnaryCallSettings<GetCatalogRequest,Catalog> getCatalogSettings()
Returns the object with the settings used for calls to getCatalog.
public UnaryCallSettings<GetDatabaseRequest,Database> getDatabaseSettings()
Returns the object with the settings used for calls to getDatabase.
public UnaryCallSettings<GetTableRequest,Table> getTableSettings()
Returns the object with the settings used for calls to getTable.
public PagedCallSettings<ListCatalogsRequest,ListCatalogsResponse,MetastoreServiceClient.ListCatalogsPagedResponse> listCatalogsSettings()
Returns the object with the settings used for calls to listCatalogs.
public PagedCallSettings<ListDatabasesRequest,ListDatabasesResponse,MetastoreServiceClient.ListDatabasesPagedResponse> listDatabasesSettings()
Returns the object with the settings used for calls to listDatabases.
public PagedCallSettings<ListLocksRequest,ListLocksResponse,MetastoreServiceClient.ListLocksPagedResponse> listLocksSettings()
Returns the object with the settings used for calls to listLocks.
public PagedCallSettings<ListTablesRequest,ListTablesResponse,MetastoreServiceClient.ListTablesPagedResponse> listTablesSettings()
Returns the object with the settings used for calls to listTables.
public UnaryCallSettings<RenameTableRequest,Table> renameTableSettings()
Returns the object with the settings used for calls to renameTable.
public MetastoreServiceStubSettings.Builder toBuilder()
Returns a builder containing all the values of this settings class.
Overrides
public UnaryCallSettings<UpdateDatabaseRequest,Database> updateDatabaseSettings()
Returns the object with the settings used for calls to updateDatabase.
public UnaryCallSettings<UpdateTableRequest,Table> updateTableSettings()
Returns the object with the settings used for calls to updateTable.