All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.managedkafka.v1.stub.ManagedKafkaStubSettings 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.
 */

package com.google.cloud.managedkafka.v1.stub;

import static com.google.cloud.managedkafka.v1.ManagedKafkaClient.ListClustersPagedResponse;
import static com.google.cloud.managedkafka.v1.ManagedKafkaClient.ListConsumerGroupsPagedResponse;
import static com.google.cloud.managedkafka.v1.ManagedKafkaClient.ListLocationsPagedResponse;
import static com.google.cloud.managedkafka.v1.ManagedKafkaClient.ListTopicsPagedResponse;

import com.google.api.core.ApiFunction;
import com.google.api.core.ApiFuture;
import com.google.api.core.BetaApi;
import com.google.api.core.ObsoleteApi;
import com.google.api.gax.core.GaxProperties;
import com.google.api.gax.core.GoogleCredentialsProvider;
import com.google.api.gax.core.InstantiatingExecutorProvider;
import com.google.api.gax.grpc.GaxGrpcProperties;
import com.google.api.gax.grpc.GrpcTransportChannel;
import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider;
import com.google.api.gax.grpc.ProtoOperationTransformers;
import com.google.api.gax.httpjson.GaxHttpJsonProperties;
import com.google.api.gax.httpjson.HttpJsonTransportChannel;
import com.google.api.gax.httpjson.InstantiatingHttpJsonChannelProvider;
import com.google.api.gax.longrunning.OperationSnapshot;
import com.google.api.gax.longrunning.OperationTimedPollAlgorithm;
import com.google.api.gax.retrying.RetrySettings;
import com.google.api.gax.rpc.ApiCallContext;
import com.google.api.gax.rpc.ApiClientHeaderProvider;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.OperationCallSettings;
import com.google.api.gax.rpc.PageContext;
import com.google.api.gax.rpc.PagedCallSettings;
import com.google.api.gax.rpc.PagedListDescriptor;
import com.google.api.gax.rpc.PagedListResponseFactory;
import com.google.api.gax.rpc.StatusCode;
import com.google.api.gax.rpc.StubSettings;
import com.google.api.gax.rpc.TransportChannelProvider;
import com.google.api.gax.rpc.UnaryCallSettings;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.location.GetLocationRequest;
import com.google.cloud.location.ListLocationsRequest;
import com.google.cloud.location.ListLocationsResponse;
import com.google.cloud.location.Location;
import com.google.cloud.managedkafka.v1.Cluster;
import com.google.cloud.managedkafka.v1.ConsumerGroup;
import com.google.cloud.managedkafka.v1.CreateClusterRequest;
import com.google.cloud.managedkafka.v1.CreateTopicRequest;
import com.google.cloud.managedkafka.v1.DeleteClusterRequest;
import com.google.cloud.managedkafka.v1.DeleteConsumerGroupRequest;
import com.google.cloud.managedkafka.v1.DeleteTopicRequest;
import com.google.cloud.managedkafka.v1.GetClusterRequest;
import com.google.cloud.managedkafka.v1.GetConsumerGroupRequest;
import com.google.cloud.managedkafka.v1.GetTopicRequest;
import com.google.cloud.managedkafka.v1.ListClustersRequest;
import com.google.cloud.managedkafka.v1.ListClustersResponse;
import com.google.cloud.managedkafka.v1.ListConsumerGroupsRequest;
import com.google.cloud.managedkafka.v1.ListConsumerGroupsResponse;
import com.google.cloud.managedkafka.v1.ListTopicsRequest;
import com.google.cloud.managedkafka.v1.ListTopicsResponse;
import com.google.cloud.managedkafka.v1.OperationMetadata;
import com.google.cloud.managedkafka.v1.Topic;
import com.google.cloud.managedkafka.v1.UpdateClusterRequest;
import com.google.cloud.managedkafka.v1.UpdateConsumerGroupRequest;
import com.google.cloud.managedkafka.v1.UpdateTopicRequest;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Lists;
import com.google.longrunning.Operation;
import com.google.protobuf.Empty;
import java.io.IOException;
import java.util.List;
import javax.annotation.Generated;
import org.threeten.bp.Duration;

// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
 * Settings class to configure an instance of {@link ManagedKafkaStub}.
 *
 * 

The default instance has everything set to sensible defaults: * *

    *
  • The default service address (managedkafka.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 getCluster to 30 seconds: * *

{@code
 * // 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
 * ManagedKafkaStubSettings.Builder managedKafkaSettingsBuilder =
 *     ManagedKafkaStubSettings.newBuilder();
 * managedKafkaSettingsBuilder
 *     .getClusterSettings()
 *     .setRetrySettings(
 *         managedKafkaSettingsBuilder
 *             .getClusterSettings()
 *             .getRetrySettings()
 *             .toBuilder()
 *             .setTotalTimeout(Duration.ofSeconds(30))
 *             .build());
 * ManagedKafkaStubSettings managedKafkaSettings = managedKafkaSettingsBuilder.build();
 * }
*/ @Generated("by gapic-generator-java") public class ManagedKafkaStubSettings extends StubSettings { /** The default scopes of the service. */ private static final ImmutableList DEFAULT_SERVICE_SCOPES = ImmutableList.builder().add("https://www.googleapis.com/auth/cloud-platform").build(); private final PagedCallSettings< ListClustersRequest, ListClustersResponse, ListClustersPagedResponse> listClustersSettings; private final UnaryCallSettings getClusterSettings; private final UnaryCallSettings createClusterSettings; private final OperationCallSettings createClusterOperationSettings; private final UnaryCallSettings updateClusterSettings; private final OperationCallSettings updateClusterOperationSettings; private final UnaryCallSettings deleteClusterSettings; private final OperationCallSettings deleteClusterOperationSettings; private final PagedCallSettings listTopicsSettings; private final UnaryCallSettings getTopicSettings; private final UnaryCallSettings createTopicSettings; private final UnaryCallSettings updateTopicSettings; private final UnaryCallSettings deleteTopicSettings; private final PagedCallSettings< ListConsumerGroupsRequest, ListConsumerGroupsResponse, ListConsumerGroupsPagedResponse> listConsumerGroupsSettings; private final UnaryCallSettings getConsumerGroupSettings; private final UnaryCallSettings updateConsumerGroupSettings; private final UnaryCallSettings deleteConsumerGroupSettings; private final PagedCallSettings< ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse> listLocationsSettings; private final UnaryCallSettings getLocationSettings; private static final PagedListDescriptor LIST_CLUSTERS_PAGE_STR_DESC = new PagedListDescriptor() { @Override public String emptyToken() { return ""; } @Override public ListClustersRequest injectToken(ListClustersRequest payload, String token) { return ListClustersRequest.newBuilder(payload).setPageToken(token).build(); } @Override public ListClustersRequest injectPageSize(ListClustersRequest payload, int pageSize) { return ListClustersRequest.newBuilder(payload).setPageSize(pageSize).build(); } @Override public Integer extractPageSize(ListClustersRequest payload) { return payload.getPageSize(); } @Override public String extractNextToken(ListClustersResponse payload) { return payload.getNextPageToken(); } @Override public Iterable extractResources(ListClustersResponse payload) { return payload.getClustersList() == null ? ImmutableList.of() : payload.getClustersList(); } }; private static final PagedListDescriptor LIST_TOPICS_PAGE_STR_DESC = new PagedListDescriptor() { @Override public String emptyToken() { return ""; } @Override public ListTopicsRequest injectToken(ListTopicsRequest payload, String token) { return ListTopicsRequest.newBuilder(payload).setPageToken(token).build(); } @Override public ListTopicsRequest injectPageSize(ListTopicsRequest payload, int pageSize) { return ListTopicsRequest.newBuilder(payload).setPageSize(pageSize).build(); } @Override public Integer extractPageSize(ListTopicsRequest payload) { return payload.getPageSize(); } @Override public String extractNextToken(ListTopicsResponse payload) { return payload.getNextPageToken(); } @Override public Iterable extractResources(ListTopicsResponse payload) { return payload.getTopicsList() == null ? ImmutableList.of() : payload.getTopicsList(); } }; private static final PagedListDescriptor< ListConsumerGroupsRequest, ListConsumerGroupsResponse, ConsumerGroup> LIST_CONSUMER_GROUPS_PAGE_STR_DESC = new PagedListDescriptor< ListConsumerGroupsRequest, ListConsumerGroupsResponse, ConsumerGroup>() { @Override public String emptyToken() { return ""; } @Override public ListConsumerGroupsRequest injectToken( ListConsumerGroupsRequest payload, String token) { return ListConsumerGroupsRequest.newBuilder(payload).setPageToken(token).build(); } @Override public ListConsumerGroupsRequest injectPageSize( ListConsumerGroupsRequest payload, int pageSize) { return ListConsumerGroupsRequest.newBuilder(payload).setPageSize(pageSize).build(); } @Override public Integer extractPageSize(ListConsumerGroupsRequest payload) { return payload.getPageSize(); } @Override public String extractNextToken(ListConsumerGroupsResponse payload) { return payload.getNextPageToken(); } @Override public Iterable extractResources(ListConsumerGroupsResponse payload) { return payload.getConsumerGroupsList() == null ? ImmutableList.of() : payload.getConsumerGroupsList(); } }; private static final PagedListDescriptor LIST_LOCATIONS_PAGE_STR_DESC = new PagedListDescriptor() { @Override public String emptyToken() { return ""; } @Override public ListLocationsRequest injectToken(ListLocationsRequest payload, String token) { return ListLocationsRequest.newBuilder(payload).setPageToken(token).build(); } @Override public ListLocationsRequest injectPageSize(ListLocationsRequest payload, int pageSize) { return ListLocationsRequest.newBuilder(payload).setPageSize(pageSize).build(); } @Override public Integer extractPageSize(ListLocationsRequest payload) { return payload.getPageSize(); } @Override public String extractNextToken(ListLocationsResponse payload) { return payload.getNextPageToken(); } @Override public Iterable extractResources(ListLocationsResponse payload) { return payload.getLocationsList() == null ? ImmutableList.of() : payload.getLocationsList(); } }; private static final PagedListResponseFactory< ListClustersRequest, ListClustersResponse, ListClustersPagedResponse> LIST_CLUSTERS_PAGE_STR_FACT = new PagedListResponseFactory< ListClustersRequest, ListClustersResponse, ListClustersPagedResponse>() { @Override public ApiFuture getFuturePagedResponse( UnaryCallable callable, ListClustersRequest request, ApiCallContext context, ApiFuture futureResponse) { PageContext pageContext = PageContext.create(callable, LIST_CLUSTERS_PAGE_STR_DESC, request, context); return ListClustersPagedResponse.createAsync(pageContext, futureResponse); } }; private static final PagedListResponseFactory< ListTopicsRequest, ListTopicsResponse, ListTopicsPagedResponse> LIST_TOPICS_PAGE_STR_FACT = new PagedListResponseFactory< ListTopicsRequest, ListTopicsResponse, ListTopicsPagedResponse>() { @Override public ApiFuture getFuturePagedResponse( UnaryCallable callable, ListTopicsRequest request, ApiCallContext context, ApiFuture futureResponse) { PageContext pageContext = PageContext.create(callable, LIST_TOPICS_PAGE_STR_DESC, request, context); return ListTopicsPagedResponse.createAsync(pageContext, futureResponse); } }; private static final PagedListResponseFactory< ListConsumerGroupsRequest, ListConsumerGroupsResponse, ListConsumerGroupsPagedResponse> LIST_CONSUMER_GROUPS_PAGE_STR_FACT = new PagedListResponseFactory< ListConsumerGroupsRequest, ListConsumerGroupsResponse, ListConsumerGroupsPagedResponse>() { @Override public ApiFuture getFuturePagedResponse( UnaryCallable callable, ListConsumerGroupsRequest request, ApiCallContext context, ApiFuture futureResponse) { PageContext pageContext = PageContext.create( callable, LIST_CONSUMER_GROUPS_PAGE_STR_DESC, request, context); return ListConsumerGroupsPagedResponse.createAsync(pageContext, futureResponse); } }; private static final PagedListResponseFactory< ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse> LIST_LOCATIONS_PAGE_STR_FACT = new PagedListResponseFactory< ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>() { @Override public ApiFuture getFuturePagedResponse( UnaryCallable callable, ListLocationsRequest request, ApiCallContext context, ApiFuture futureResponse) { PageContext pageContext = PageContext.create(callable, LIST_LOCATIONS_PAGE_STR_DESC, request, context); return ListLocationsPagedResponse.createAsync(pageContext, futureResponse); } }; /** Returns the object with the settings used for calls to listClusters. */ public PagedCallSettings listClustersSettings() { return listClustersSettings; } /** Returns the object with the settings used for calls to getCluster. */ public UnaryCallSettings getClusterSettings() { return getClusterSettings; } /** Returns the object with the settings used for calls to createCluster. */ public UnaryCallSettings createClusterSettings() { return createClusterSettings; } /** Returns the object with the settings used for calls to createCluster. */ public OperationCallSettings createClusterOperationSettings() { return createClusterOperationSettings; } /** Returns the object with the settings used for calls to updateCluster. */ public UnaryCallSettings updateClusterSettings() { return updateClusterSettings; } /** Returns the object with the settings used for calls to updateCluster. */ public OperationCallSettings updateClusterOperationSettings() { return updateClusterOperationSettings; } /** Returns the object with the settings used for calls to deleteCluster. */ public UnaryCallSettings deleteClusterSettings() { return deleteClusterSettings; } /** Returns the object with the settings used for calls to deleteCluster. */ public OperationCallSettings deleteClusterOperationSettings() { return deleteClusterOperationSettings; } /** Returns the object with the settings used for calls to listTopics. */ public PagedCallSettings listTopicsSettings() { return listTopicsSettings; } /** Returns the object with the settings used for calls to getTopic. */ public UnaryCallSettings getTopicSettings() { return getTopicSettings; } /** Returns the object with the settings used for calls to createTopic. */ public UnaryCallSettings createTopicSettings() { return createTopicSettings; } /** Returns the object with the settings used for calls to updateTopic. */ public UnaryCallSettings updateTopicSettings() { return updateTopicSettings; } /** Returns the object with the settings used for calls to deleteTopic. */ public UnaryCallSettings deleteTopicSettings() { return deleteTopicSettings; } /** Returns the object with the settings used for calls to listConsumerGroups. */ public PagedCallSettings< ListConsumerGroupsRequest, ListConsumerGroupsResponse, ListConsumerGroupsPagedResponse> listConsumerGroupsSettings() { return listConsumerGroupsSettings; } /** Returns the object with the settings used for calls to getConsumerGroup. */ public UnaryCallSettings getConsumerGroupSettings() { return getConsumerGroupSettings; } /** Returns the object with the settings used for calls to updateConsumerGroup. */ public UnaryCallSettings updateConsumerGroupSettings() { return updateConsumerGroupSettings; } /** Returns the object with the settings used for calls to deleteConsumerGroup. */ public UnaryCallSettings deleteConsumerGroupSettings() { return deleteConsumerGroupSettings; } /** Returns the object with the settings used for calls to listLocations. */ public PagedCallSettings listLocationsSettings() { return listLocationsSettings; } /** Returns the object with the settings used for calls to getLocation. */ public UnaryCallSettings getLocationSettings() { return getLocationSettings; } public ManagedKafkaStub createStub() throws IOException { if (getTransportChannelProvider() .getTransportName() .equals(GrpcTransportChannel.getGrpcTransportName())) { return GrpcManagedKafkaStub.create(this); } if (getTransportChannelProvider() .getTransportName() .equals(HttpJsonTransportChannel.getHttpJsonTransportName())) { return HttpJsonManagedKafkaStub.create(this); } throw new UnsupportedOperationException( String.format( "Transport not supported: %s", getTransportChannelProvider().getTransportName())); } /** Returns the default service name. */ @Override public String getServiceName() { return "managedkafka"; } /** Returns a builder for the default ExecutorProvider for this service. */ public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder() { return InstantiatingExecutorProvider.newBuilder(); } /** Returns the default service endpoint. */ @ObsoleteApi("Use getEndpoint() instead") public static String getDefaultEndpoint() { return "managedkafka.googleapis.com:443"; } /** Returns the default mTLS service endpoint. */ public static String getDefaultMtlsEndpoint() { return "managedkafka.mtls.googleapis.com:443"; } /** Returns the default service scopes. */ public static List getDefaultServiceScopes() { return DEFAULT_SERVICE_SCOPES; } /** Returns a builder for the default credentials for this service. */ public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder() { return GoogleCredentialsProvider.newBuilder() .setScopesToApply(DEFAULT_SERVICE_SCOPES) .setUseJwtAccessWithScope(true); } /** Returns a builder for the default gRPC ChannelProvider for this service. */ public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder() { return InstantiatingGrpcChannelProvider.newBuilder() .setMaxInboundMessageSize(Integer.MAX_VALUE); } /** Returns a builder for the default REST ChannelProvider for this service. */ @BetaApi public static InstantiatingHttpJsonChannelProvider.Builder defaultHttpJsonTransportProviderBuilder() { return InstantiatingHttpJsonChannelProvider.newBuilder(); } public static TransportChannelProvider defaultTransportChannelProvider() { return defaultGrpcTransportProviderBuilder().build(); } public static ApiClientHeaderProvider.Builder defaultGrpcApiClientHeaderProviderBuilder() { return ApiClientHeaderProvider.newBuilder() .setGeneratedLibToken( "gapic", GaxProperties.getLibraryVersion(ManagedKafkaStubSettings.class)) .setTransportToken( GaxGrpcProperties.getGrpcTokenName(), GaxGrpcProperties.getGrpcVersion()); } public static ApiClientHeaderProvider.Builder defaultHttpJsonApiClientHeaderProviderBuilder() { return ApiClientHeaderProvider.newBuilder() .setGeneratedLibToken( "gapic", GaxProperties.getLibraryVersion(ManagedKafkaStubSettings.class)) .setTransportToken( GaxHttpJsonProperties.getHttpJsonTokenName(), GaxHttpJsonProperties.getHttpJsonVersion()); } public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() { return ManagedKafkaStubSettings.defaultGrpcApiClientHeaderProviderBuilder(); } /** Returns a new gRPC builder for this class. */ public static Builder newBuilder() { return Builder.createDefault(); } /** Returns a new REST builder for this class. */ public static Builder newHttpJsonBuilder() { return Builder.createHttpJsonDefault(); } /** Returns a new builder for this class. */ public static Builder newBuilder(ClientContext clientContext) { return new Builder(clientContext); } /** Returns a builder containing all the values of this settings class. */ public Builder toBuilder() { return new Builder(this); } protected ManagedKafkaStubSettings(Builder settingsBuilder) throws IOException { super(settingsBuilder); listClustersSettings = settingsBuilder.listClustersSettings().build(); getClusterSettings = settingsBuilder.getClusterSettings().build(); createClusterSettings = settingsBuilder.createClusterSettings().build(); createClusterOperationSettings = settingsBuilder.createClusterOperationSettings().build(); updateClusterSettings = settingsBuilder.updateClusterSettings().build(); updateClusterOperationSettings = settingsBuilder.updateClusterOperationSettings().build(); deleteClusterSettings = settingsBuilder.deleteClusterSettings().build(); deleteClusterOperationSettings = settingsBuilder.deleteClusterOperationSettings().build(); listTopicsSettings = settingsBuilder.listTopicsSettings().build(); getTopicSettings = settingsBuilder.getTopicSettings().build(); createTopicSettings = settingsBuilder.createTopicSettings().build(); updateTopicSettings = settingsBuilder.updateTopicSettings().build(); deleteTopicSettings = settingsBuilder.deleteTopicSettings().build(); listConsumerGroupsSettings = settingsBuilder.listConsumerGroupsSettings().build(); getConsumerGroupSettings = settingsBuilder.getConsumerGroupSettings().build(); updateConsumerGroupSettings = settingsBuilder.updateConsumerGroupSettings().build(); deleteConsumerGroupSettings = settingsBuilder.deleteConsumerGroupSettings().build(); listLocationsSettings = settingsBuilder.listLocationsSettings().build(); getLocationSettings = settingsBuilder.getLocationSettings().build(); } /** Builder for ManagedKafkaStubSettings. */ public static class Builder extends StubSettings.Builder { private final ImmutableList> unaryMethodSettingsBuilders; private final PagedCallSettings.Builder< ListClustersRequest, ListClustersResponse, ListClustersPagedResponse> listClustersSettings; private final UnaryCallSettings.Builder getClusterSettings; private final UnaryCallSettings.Builder createClusterSettings; private final OperationCallSettings.Builder createClusterOperationSettings; private final UnaryCallSettings.Builder updateClusterSettings; private final OperationCallSettings.Builder updateClusterOperationSettings; private final UnaryCallSettings.Builder deleteClusterSettings; private final OperationCallSettings.Builder deleteClusterOperationSettings; private final PagedCallSettings.Builder< ListTopicsRequest, ListTopicsResponse, ListTopicsPagedResponse> listTopicsSettings; private final UnaryCallSettings.Builder getTopicSettings; private final UnaryCallSettings.Builder createTopicSettings; private final UnaryCallSettings.Builder updateTopicSettings; private final UnaryCallSettings.Builder deleteTopicSettings; private final PagedCallSettings.Builder< ListConsumerGroupsRequest, ListConsumerGroupsResponse, ListConsumerGroupsPagedResponse> listConsumerGroupsSettings; private final UnaryCallSettings.Builder getConsumerGroupSettings; private final UnaryCallSettings.Builder updateConsumerGroupSettings; private final UnaryCallSettings.Builder deleteConsumerGroupSettings; private final PagedCallSettings.Builder< ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse> listLocationsSettings; private final UnaryCallSettings.Builder getLocationSettings; private static final ImmutableMap> RETRYABLE_CODE_DEFINITIONS; static { ImmutableMap.Builder> definitions = ImmutableMap.builder(); definitions.put( "retry_policy_0_codes", ImmutableSet.copyOf(Lists.newArrayList(StatusCode.Code.UNAVAILABLE))); definitions.put( "no_retry_1_codes", ImmutableSet.copyOf(Lists.newArrayList())); definitions.put("no_retry_codes", ImmutableSet.copyOf(Lists.newArrayList())); RETRYABLE_CODE_DEFINITIONS = definitions.build(); } private static final ImmutableMap RETRY_PARAM_DEFINITIONS; static { ImmutableMap.Builder definitions = ImmutableMap.builder(); RetrySettings settings = null; settings = RetrySettings.newBuilder() .setInitialRetryDelay(Duration.ofMillis(1000L)) .setRetryDelayMultiplier(1.3) .setMaxRetryDelay(Duration.ofMillis(10000L)) .setInitialRpcTimeout(Duration.ofMillis(60000L)) .setRpcTimeoutMultiplier(1.0) .setMaxRpcTimeout(Duration.ofMillis(60000L)) .setTotalTimeout(Duration.ofMillis(60000L)) .build(); definitions.put("retry_policy_0_params", settings); settings = RetrySettings.newBuilder() .setInitialRpcTimeout(Duration.ofMillis(60000L)) .setRpcTimeoutMultiplier(1.0) .setMaxRpcTimeout(Duration.ofMillis(60000L)) .setTotalTimeout(Duration.ofMillis(60000L)) .build(); definitions.put("no_retry_1_params", settings); settings = RetrySettings.newBuilder().setRpcTimeoutMultiplier(1.0).build(); definitions.put("no_retry_params", settings); RETRY_PARAM_DEFINITIONS = definitions.build(); } protected Builder() { this(((ClientContext) null)); } protected Builder(ClientContext clientContext) { super(clientContext); listClustersSettings = PagedCallSettings.newBuilder(LIST_CLUSTERS_PAGE_STR_FACT); getClusterSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); createClusterSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); createClusterOperationSettings = OperationCallSettings.newBuilder(); updateClusterSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); updateClusterOperationSettings = OperationCallSettings.newBuilder(); deleteClusterSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); deleteClusterOperationSettings = OperationCallSettings.newBuilder(); listTopicsSettings = PagedCallSettings.newBuilder(LIST_TOPICS_PAGE_STR_FACT); getTopicSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); createTopicSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); updateTopicSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); deleteTopicSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); listConsumerGroupsSettings = PagedCallSettings.newBuilder(LIST_CONSUMER_GROUPS_PAGE_STR_FACT); getConsumerGroupSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); updateConsumerGroupSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); deleteConsumerGroupSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); listLocationsSettings = PagedCallSettings.newBuilder(LIST_LOCATIONS_PAGE_STR_FACT); getLocationSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); unaryMethodSettingsBuilders = ImmutableList.>of( listClustersSettings, getClusterSettings, createClusterSettings, updateClusterSettings, deleteClusterSettings, listTopicsSettings, getTopicSettings, createTopicSettings, updateTopicSettings, deleteTopicSettings, listConsumerGroupsSettings, getConsumerGroupSettings, updateConsumerGroupSettings, deleteConsumerGroupSettings, listLocationsSettings, getLocationSettings); initDefaults(this); } protected Builder(ManagedKafkaStubSettings settings) { super(settings); listClustersSettings = settings.listClustersSettings.toBuilder(); getClusterSettings = settings.getClusterSettings.toBuilder(); createClusterSettings = settings.createClusterSettings.toBuilder(); createClusterOperationSettings = settings.createClusterOperationSettings.toBuilder(); updateClusterSettings = settings.updateClusterSettings.toBuilder(); updateClusterOperationSettings = settings.updateClusterOperationSettings.toBuilder(); deleteClusterSettings = settings.deleteClusterSettings.toBuilder(); deleteClusterOperationSettings = settings.deleteClusterOperationSettings.toBuilder(); listTopicsSettings = settings.listTopicsSettings.toBuilder(); getTopicSettings = settings.getTopicSettings.toBuilder(); createTopicSettings = settings.createTopicSettings.toBuilder(); updateTopicSettings = settings.updateTopicSettings.toBuilder(); deleteTopicSettings = settings.deleteTopicSettings.toBuilder(); listConsumerGroupsSettings = settings.listConsumerGroupsSettings.toBuilder(); getConsumerGroupSettings = settings.getConsumerGroupSettings.toBuilder(); updateConsumerGroupSettings = settings.updateConsumerGroupSettings.toBuilder(); deleteConsumerGroupSettings = settings.deleteConsumerGroupSettings.toBuilder(); listLocationsSettings = settings.listLocationsSettings.toBuilder(); getLocationSettings = settings.getLocationSettings.toBuilder(); unaryMethodSettingsBuilders = ImmutableList.>of( listClustersSettings, getClusterSettings, createClusterSettings, updateClusterSettings, deleteClusterSettings, listTopicsSettings, getTopicSettings, createTopicSettings, updateTopicSettings, deleteTopicSettings, listConsumerGroupsSettings, getConsumerGroupSettings, updateConsumerGroupSettings, deleteConsumerGroupSettings, listLocationsSettings, getLocationSettings); } private static Builder createDefault() { Builder builder = new Builder(((ClientContext) null)); builder.setTransportChannelProvider(defaultTransportChannelProvider()); builder.setCredentialsProvider(defaultCredentialsProviderBuilder().build()); builder.setInternalHeaderProvider(defaultApiClientHeaderProviderBuilder().build()); builder.setMtlsEndpoint(getDefaultMtlsEndpoint()); builder.setSwitchToMtlsEndpointAllowed(true); return initDefaults(builder); } private static Builder createHttpJsonDefault() { Builder builder = new Builder(((ClientContext) null)); builder.setTransportChannelProvider(defaultHttpJsonTransportProviderBuilder().build()); builder.setCredentialsProvider(defaultCredentialsProviderBuilder().build()); builder.setInternalHeaderProvider(defaultHttpJsonApiClientHeaderProviderBuilder().build()); builder.setMtlsEndpoint(getDefaultMtlsEndpoint()); builder.setSwitchToMtlsEndpointAllowed(true); return initDefaults(builder); } private static Builder initDefaults(Builder builder) { builder .listClustersSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("retry_policy_0_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("retry_policy_0_params")); builder .getClusterSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("retry_policy_0_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("retry_policy_0_params")); builder .createClusterSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_1_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_1_params")); builder .updateClusterSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_1_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_1_params")); builder .deleteClusterSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_1_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_1_params")); builder .listTopicsSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("retry_policy_0_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("retry_policy_0_params")); builder .getTopicSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("retry_policy_0_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("retry_policy_0_params")); builder .createTopicSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_1_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_1_params")); builder .updateTopicSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_1_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_1_params")); builder .deleteTopicSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_1_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_1_params")); builder .listConsumerGroupsSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("retry_policy_0_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("retry_policy_0_params")); builder .getConsumerGroupSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("retry_policy_0_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("retry_policy_0_params")); builder .updateConsumerGroupSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_1_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_1_params")); builder .deleteConsumerGroupSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_1_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_1_params")); builder .listLocationsSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); builder .getLocationSettings() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params")); builder .createClusterOperationSettings() .setInitialCallSettings( UnaryCallSettings .newUnaryCallSettingsBuilder() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_1_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_1_params")) .build()) .setResponseTransformer( ProtoOperationTransformers.ResponseTransformer.create(Cluster.class)) .setMetadataTransformer( ProtoOperationTransformers.MetadataTransformer.create(OperationMetadata.class)) .setPollingAlgorithm( OperationTimedPollAlgorithm.create( RetrySettings.newBuilder() .setInitialRetryDelay(Duration.ofMillis(5000L)) .setRetryDelayMultiplier(1.5) .setMaxRetryDelay(Duration.ofMillis(45000L)) .setInitialRpcTimeout(Duration.ZERO) .setRpcTimeoutMultiplier(1.0) .setMaxRpcTimeout(Duration.ZERO) .setTotalTimeout(Duration.ofMillis(300000L)) .build())); builder .updateClusterOperationSettings() .setInitialCallSettings( UnaryCallSettings .newUnaryCallSettingsBuilder() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_1_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_1_params")) .build()) .setResponseTransformer( ProtoOperationTransformers.ResponseTransformer.create(Cluster.class)) .setMetadataTransformer( ProtoOperationTransformers.MetadataTransformer.create(OperationMetadata.class)) .setPollingAlgorithm( OperationTimedPollAlgorithm.create( RetrySettings.newBuilder() .setInitialRetryDelay(Duration.ofMillis(5000L)) .setRetryDelayMultiplier(1.5) .setMaxRetryDelay(Duration.ofMillis(45000L)) .setInitialRpcTimeout(Duration.ZERO) .setRpcTimeoutMultiplier(1.0) .setMaxRpcTimeout(Duration.ZERO) .setTotalTimeout(Duration.ofMillis(300000L)) .build())); builder .deleteClusterOperationSettings() .setInitialCallSettings( UnaryCallSettings .newUnaryCallSettingsBuilder() .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_1_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_1_params")) .build()) .setResponseTransformer( ProtoOperationTransformers.ResponseTransformer.create(Empty.class)) .setMetadataTransformer( ProtoOperationTransformers.MetadataTransformer.create(OperationMetadata.class)) .setPollingAlgorithm( OperationTimedPollAlgorithm.create( RetrySettings.newBuilder() .setInitialRetryDelay(Duration.ofMillis(5000L)) .setRetryDelayMultiplier(1.5) .setMaxRetryDelay(Duration.ofMillis(45000L)) .setInitialRpcTimeout(Duration.ZERO) .setRpcTimeoutMultiplier(1.0) .setMaxRpcTimeout(Duration.ZERO) .setTotalTimeout(Duration.ofMillis(300000L)) .build())); return builder; } /** * Applies the given settings updater function to all of the unary API methods in this service. * *

Note: This method does not support applying settings to streaming methods. */ public Builder applyToAllUnaryMethods( ApiFunction, Void> settingsUpdater) { super.applyToAllUnaryMethods(unaryMethodSettingsBuilders, settingsUpdater); return this; } public ImmutableList> unaryMethodSettingsBuilders() { return unaryMethodSettingsBuilders; } /** Returns the builder for the settings used for calls to listClusters. */ public PagedCallSettings.Builder< ListClustersRequest, ListClustersResponse, ListClustersPagedResponse> listClustersSettings() { return listClustersSettings; } /** Returns the builder for the settings used for calls to getCluster. */ public UnaryCallSettings.Builder getClusterSettings() { return getClusterSettings; } /** Returns the builder for the settings used for calls to createCluster. */ public UnaryCallSettings.Builder createClusterSettings() { return createClusterSettings; } /** Returns the builder for the settings used for calls to createCluster. */ public OperationCallSettings.Builder createClusterOperationSettings() { return createClusterOperationSettings; } /** Returns the builder for the settings used for calls to updateCluster. */ public UnaryCallSettings.Builder updateClusterSettings() { return updateClusterSettings; } /** Returns the builder for the settings used for calls to updateCluster. */ public OperationCallSettings.Builder updateClusterOperationSettings() { return updateClusterOperationSettings; } /** Returns the builder for the settings used for calls to deleteCluster. */ public UnaryCallSettings.Builder deleteClusterSettings() { return deleteClusterSettings; } /** Returns the builder for the settings used for calls to deleteCluster. */ public OperationCallSettings.Builder deleteClusterOperationSettings() { return deleteClusterOperationSettings; } /** Returns the builder for the settings used for calls to listTopics. */ public PagedCallSettings.Builder listTopicsSettings() { return listTopicsSettings; } /** Returns the builder for the settings used for calls to getTopic. */ public UnaryCallSettings.Builder getTopicSettings() { return getTopicSettings; } /** Returns the builder for the settings used for calls to createTopic. */ public UnaryCallSettings.Builder createTopicSettings() { return createTopicSettings; } /** Returns the builder for the settings used for calls to updateTopic. */ public UnaryCallSettings.Builder updateTopicSettings() { return updateTopicSettings; } /** Returns the builder for the settings used for calls to deleteTopic. */ public UnaryCallSettings.Builder deleteTopicSettings() { return deleteTopicSettings; } /** Returns the builder for the settings used for calls to listConsumerGroups. */ public PagedCallSettings.Builder< ListConsumerGroupsRequest, ListConsumerGroupsResponse, ListConsumerGroupsPagedResponse> listConsumerGroupsSettings() { return listConsumerGroupsSettings; } /** Returns the builder for the settings used for calls to getConsumerGroup. */ public UnaryCallSettings.Builder getConsumerGroupSettings() { return getConsumerGroupSettings; } /** Returns the builder for the settings used for calls to updateConsumerGroup. */ public UnaryCallSettings.Builder updateConsumerGroupSettings() { return updateConsumerGroupSettings; } /** Returns the builder for the settings used for calls to deleteConsumerGroup. */ public UnaryCallSettings.Builder deleteConsumerGroupSettings() { return deleteConsumerGroupSettings; } /** Returns the builder for the settings used for calls to listLocations. */ public PagedCallSettings.Builder< ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse> listLocationsSettings() { return listLocationsSettings; } /** Returns the builder for the settings used for calls to getLocation. */ public UnaryCallSettings.Builder getLocationSettings() { return getLocationSettings; } @Override public ManagedKafkaStubSettings build() throws IOException { return new ManagedKafkaStubSettings(this); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy