com.google.cloud.monitoring.v3.stub.AlertPolicyServiceStubSettings Maven / Gradle / Ivy
Show all versions of google-cloud-monitoring Show documentation
/*
* 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.monitoring.v3.stub;
import static com.google.cloud.monitoring.v3.AlertPolicyServiceClient.ListAlertPoliciesPagedResponse;
import com.google.api.core.ApiFunction;
import com.google.api.core.ApiFuture;
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.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.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.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Lists;
import com.google.monitoring.v3.AlertPolicy;
import com.google.monitoring.v3.CreateAlertPolicyRequest;
import com.google.monitoring.v3.DeleteAlertPolicyRequest;
import com.google.monitoring.v3.GetAlertPolicyRequest;
import com.google.monitoring.v3.ListAlertPoliciesRequest;
import com.google.monitoring.v3.ListAlertPoliciesResponse;
import com.google.monitoring.v3.UpdateAlertPolicyRequest;
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 AlertPolicyServiceStub}.
*
* The default instance has everything set to sensible defaults:
*
*
* - The default service address (monitoring.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 getAlertPolicy 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
* AlertPolicyServiceStubSettings.Builder alertPolicyServiceSettingsBuilder =
* AlertPolicyServiceStubSettings.newBuilder();
* alertPolicyServiceSettingsBuilder
* .getAlertPolicySettings()
* .setRetrySettings(
* alertPolicyServiceSettingsBuilder
* .getAlertPolicySettings()
* .getRetrySettings()
* .toBuilder()
* .setTotalTimeout(Duration.ofSeconds(30))
* .build());
* AlertPolicyServiceStubSettings alertPolicyServiceSettings =
* alertPolicyServiceSettingsBuilder.build();
* }
*/
@Generated("by gapic-generator-java")
public class AlertPolicyServiceStubSettings 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")
.add("https://www.googleapis.com/auth/monitoring")
.add("https://www.googleapis.com/auth/monitoring.read")
.build();
private final PagedCallSettings<
ListAlertPoliciesRequest, ListAlertPoliciesResponse, ListAlertPoliciesPagedResponse>
listAlertPoliciesSettings;
private final UnaryCallSettings getAlertPolicySettings;
private final UnaryCallSettings createAlertPolicySettings;
private final UnaryCallSettings deleteAlertPolicySettings;
private final UnaryCallSettings updateAlertPolicySettings;
private static final PagedListDescriptor<
ListAlertPoliciesRequest, ListAlertPoliciesResponse, AlertPolicy>
LIST_ALERT_POLICIES_PAGE_STR_DESC =
new PagedListDescriptor<
ListAlertPoliciesRequest, ListAlertPoliciesResponse, AlertPolicy>() {
@Override
public String emptyToken() {
return "";
}
@Override
public ListAlertPoliciesRequest injectToken(
ListAlertPoliciesRequest payload, String token) {
return ListAlertPoliciesRequest.newBuilder(payload).setPageToken(token).build();
}
@Override
public ListAlertPoliciesRequest injectPageSize(
ListAlertPoliciesRequest payload, int pageSize) {
return ListAlertPoliciesRequest.newBuilder(payload).setPageSize(pageSize).build();
}
@Override
public Integer extractPageSize(ListAlertPoliciesRequest payload) {
return payload.getPageSize();
}
@Override
public String extractNextToken(ListAlertPoliciesResponse payload) {
return payload.getNextPageToken();
}
@Override
public Iterable extractResources(ListAlertPoliciesResponse payload) {
return payload.getAlertPoliciesList() == null
? ImmutableList.of()
: payload.getAlertPoliciesList();
}
};
private static final PagedListResponseFactory<
ListAlertPoliciesRequest, ListAlertPoliciesResponse, ListAlertPoliciesPagedResponse>
LIST_ALERT_POLICIES_PAGE_STR_FACT =
new PagedListResponseFactory<
ListAlertPoliciesRequest,
ListAlertPoliciesResponse,
ListAlertPoliciesPagedResponse>() {
@Override
public ApiFuture getFuturePagedResponse(
UnaryCallable callable,
ListAlertPoliciesRequest request,
ApiCallContext context,
ApiFuture futureResponse) {
PageContext
pageContext =
PageContext.create(
callable, LIST_ALERT_POLICIES_PAGE_STR_DESC, request, context);
return ListAlertPoliciesPagedResponse.createAsync(pageContext, futureResponse);
}
};
/** Returns the object with the settings used for calls to listAlertPolicies. */
public PagedCallSettings<
ListAlertPoliciesRequest, ListAlertPoliciesResponse, ListAlertPoliciesPagedResponse>
listAlertPoliciesSettings() {
return listAlertPoliciesSettings;
}
/** Returns the object with the settings used for calls to getAlertPolicy. */
public UnaryCallSettings getAlertPolicySettings() {
return getAlertPolicySettings;
}
/** Returns the object with the settings used for calls to createAlertPolicy. */
public UnaryCallSettings createAlertPolicySettings() {
return createAlertPolicySettings;
}
/** Returns the object with the settings used for calls to deleteAlertPolicy. */
public UnaryCallSettings deleteAlertPolicySettings() {
return deleteAlertPolicySettings;
}
/** Returns the object with the settings used for calls to updateAlertPolicy. */
public UnaryCallSettings updateAlertPolicySettings() {
return updateAlertPolicySettings;
}
public AlertPolicyServiceStub createStub() throws IOException {
if (getTransportChannelProvider()
.getTransportName()
.equals(GrpcTransportChannel.getGrpcTransportName())) {
return GrpcAlertPolicyServiceStub.create(this);
}
throw new UnsupportedOperationException(
String.format(
"Transport not supported: %s", getTransportChannelProvider().getTransportName()));
}
/** Returns the default service name. */
@Override
public String getServiceName() {
return "monitoring";
}
/** 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 "monitoring.googleapis.com:443";
}
/** Returns the default mTLS service endpoint. */
public static String getDefaultMtlsEndpoint() {
return "monitoring.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 ChannelProvider for this service. */
public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder() {
return InstantiatingGrpcChannelProvider.newBuilder()
.setMaxInboundMessageSize(Integer.MAX_VALUE);
}
public static TransportChannelProvider defaultTransportChannelProvider() {
return defaultGrpcTransportProviderBuilder().build();
}
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
return ApiClientHeaderProvider.newBuilder()
.setGeneratedLibToken(
"gapic", GaxProperties.getLibraryVersion(AlertPolicyServiceStubSettings.class))
.setTransportToken(
GaxGrpcProperties.getGrpcTokenName(), GaxGrpcProperties.getGrpcVersion());
}
/** Returns a new builder for this class. */
public static Builder newBuilder() {
return Builder.createDefault();
}
/** 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 AlertPolicyServiceStubSettings(Builder settingsBuilder) throws IOException {
super(settingsBuilder);
listAlertPoliciesSettings = settingsBuilder.listAlertPoliciesSettings().build();
getAlertPolicySettings = settingsBuilder.getAlertPolicySettings().build();
createAlertPolicySettings = settingsBuilder.createAlertPolicySettings().build();
deleteAlertPolicySettings = settingsBuilder.deleteAlertPolicySettings().build();
updateAlertPolicySettings = settingsBuilder.updateAlertPolicySettings().build();
}
/** Builder for AlertPolicyServiceStubSettings. */
public static class Builder
extends StubSettings.Builder {
private final ImmutableList> unaryMethodSettingsBuilders;
private final PagedCallSettings.Builder<
ListAlertPoliciesRequest, ListAlertPoliciesResponse, ListAlertPoliciesPagedResponse>
listAlertPoliciesSettings;
private final UnaryCallSettings.Builder
getAlertPolicySettings;
private final UnaryCallSettings.Builder
createAlertPolicySettings;
private final UnaryCallSettings.Builder
deleteAlertPolicySettings;
private final UnaryCallSettings.Builder
updateAlertPolicySettings;
private static final ImmutableMap>
RETRYABLE_CODE_DEFINITIONS;
static {
ImmutableMap.Builder> definitions =
ImmutableMap.builder();
definitions.put(
"retry_policy_9_codes",
ImmutableSet.copyOf(Lists.newArrayList(StatusCode.Code.UNAVAILABLE)));
definitions.put(
"no_retry_0_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(100L))
.setRetryDelayMultiplier(1.3)
.setMaxRetryDelay(Duration.ofMillis(30000L))
.setInitialRpcTimeout(Duration.ofMillis(30000L))
.setRpcTimeoutMultiplier(1.0)
.setMaxRpcTimeout(Duration.ofMillis(30000L))
.setTotalTimeout(Duration.ofMillis(30000L))
.build();
definitions.put("retry_policy_9_params", settings);
settings =
RetrySettings.newBuilder()
.setInitialRpcTimeout(Duration.ofMillis(30000L))
.setRpcTimeoutMultiplier(1.0)
.setMaxRpcTimeout(Duration.ofMillis(30000L))
.setTotalTimeout(Duration.ofMillis(30000L))
.build();
definitions.put("no_retry_0_params", settings);
RETRY_PARAM_DEFINITIONS = definitions.build();
}
protected Builder() {
this(((ClientContext) null));
}
protected Builder(ClientContext clientContext) {
super(clientContext);
listAlertPoliciesSettings = PagedCallSettings.newBuilder(LIST_ALERT_POLICIES_PAGE_STR_FACT);
getAlertPolicySettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
createAlertPolicySettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
deleteAlertPolicySettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
updateAlertPolicySettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
unaryMethodSettingsBuilders =
ImmutableList.>of(
listAlertPoliciesSettings,
getAlertPolicySettings,
createAlertPolicySettings,
deleteAlertPolicySettings,
updateAlertPolicySettings);
initDefaults(this);
}
protected Builder(AlertPolicyServiceStubSettings settings) {
super(settings);
listAlertPoliciesSettings = settings.listAlertPoliciesSettings.toBuilder();
getAlertPolicySettings = settings.getAlertPolicySettings.toBuilder();
createAlertPolicySettings = settings.createAlertPolicySettings.toBuilder();
deleteAlertPolicySettings = settings.deleteAlertPolicySettings.toBuilder();
updateAlertPolicySettings = settings.updateAlertPolicySettings.toBuilder();
unaryMethodSettingsBuilders =
ImmutableList.>of(
listAlertPoliciesSettings,
getAlertPolicySettings,
createAlertPolicySettings,
deleteAlertPolicySettings,
updateAlertPolicySettings);
}
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 initDefaults(Builder builder) {
builder
.listAlertPoliciesSettings()
.setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("retry_policy_9_codes"))
.setRetrySettings(RETRY_PARAM_DEFINITIONS.get("retry_policy_9_params"));
builder
.getAlertPolicySettings()
.setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("retry_policy_9_codes"))
.setRetrySettings(RETRY_PARAM_DEFINITIONS.get("retry_policy_9_params"));
builder
.createAlertPolicySettings()
.setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_0_codes"))
.setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_0_params"));
builder
.deleteAlertPolicySettings()
.setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("retry_policy_9_codes"))
.setRetrySettings(RETRY_PARAM_DEFINITIONS.get("retry_policy_9_params"));
builder
.updateAlertPolicySettings()
.setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_0_codes"))
.setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_0_params"));
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 listAlertPolicies. */
public PagedCallSettings.Builder<
ListAlertPoliciesRequest, ListAlertPoliciesResponse, ListAlertPoliciesPagedResponse>
listAlertPoliciesSettings() {
return listAlertPoliciesSettings;
}
/** Returns the builder for the settings used for calls to getAlertPolicy. */
public UnaryCallSettings.Builder getAlertPolicySettings() {
return getAlertPolicySettings;
}
/** Returns the builder for the settings used for calls to createAlertPolicy. */
public UnaryCallSettings.Builder
createAlertPolicySettings() {
return createAlertPolicySettings;
}
/** Returns the builder for the settings used for calls to deleteAlertPolicy. */
public UnaryCallSettings.Builder deleteAlertPolicySettings() {
return deleteAlertPolicySettings;
}
/** Returns the builder for the settings used for calls to updateAlertPolicy. */
public UnaryCallSettings.Builder
updateAlertPolicySettings() {
return updateAlertPolicySettings;
}
@Override
public AlertPolicyServiceStubSettings build() throws IOException {
return new AlertPolicyServiceStubSettings(this);
}
}
}