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

com.google.cloud.recaptchaenterprise.v1.RecaptchaEnterpriseServiceSettings Maven / Gradle / Ivy

The newest version!
/*
 * 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.recaptchaenterprise.v1;

import static com.google.cloud.recaptchaenterprise.v1.RecaptchaEnterpriseServiceClient.ListFirewallPoliciesPagedResponse;
import static com.google.cloud.recaptchaenterprise.v1.RecaptchaEnterpriseServiceClient.ListKeysPagedResponse;
import static com.google.cloud.recaptchaenterprise.v1.RecaptchaEnterpriseServiceClient.ListRelatedAccountGroupMembershipsPagedResponse;
import static com.google.cloud.recaptchaenterprise.v1.RecaptchaEnterpriseServiceClient.ListRelatedAccountGroupsPagedResponse;
import static com.google.cloud.recaptchaenterprise.v1.RecaptchaEnterpriseServiceClient.SearchRelatedAccountGroupMembershipsPagedResponse;

import com.google.api.core.ApiFunction;
import com.google.api.gax.core.GoogleCredentialsProvider;
import com.google.api.gax.core.InstantiatingExecutorProvider;
import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider;
import com.google.api.gax.rpc.ApiClientHeaderProvider;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.ClientSettings;
import com.google.api.gax.rpc.PagedCallSettings;
import com.google.api.gax.rpc.TransportChannelProvider;
import com.google.api.gax.rpc.UnaryCallSettings;
import com.google.cloud.recaptchaenterprise.v1.stub.RecaptchaEnterpriseServiceStubSettings;
import com.google.protobuf.Empty;
import com.google.recaptchaenterprise.v1.AddIpOverrideRequest;
import com.google.recaptchaenterprise.v1.AddIpOverrideResponse;
import com.google.recaptchaenterprise.v1.AnnotateAssessmentRequest;
import com.google.recaptchaenterprise.v1.AnnotateAssessmentResponse;
import com.google.recaptchaenterprise.v1.Assessment;
import com.google.recaptchaenterprise.v1.CreateAssessmentRequest;
import com.google.recaptchaenterprise.v1.CreateFirewallPolicyRequest;
import com.google.recaptchaenterprise.v1.CreateKeyRequest;
import com.google.recaptchaenterprise.v1.DeleteFirewallPolicyRequest;
import com.google.recaptchaenterprise.v1.DeleteKeyRequest;
import com.google.recaptchaenterprise.v1.FirewallPolicy;
import com.google.recaptchaenterprise.v1.GetFirewallPolicyRequest;
import com.google.recaptchaenterprise.v1.GetKeyRequest;
import com.google.recaptchaenterprise.v1.GetMetricsRequest;
import com.google.recaptchaenterprise.v1.Key;
import com.google.recaptchaenterprise.v1.ListFirewallPoliciesRequest;
import com.google.recaptchaenterprise.v1.ListFirewallPoliciesResponse;
import com.google.recaptchaenterprise.v1.ListKeysRequest;
import com.google.recaptchaenterprise.v1.ListKeysResponse;
import com.google.recaptchaenterprise.v1.ListRelatedAccountGroupMembershipsRequest;
import com.google.recaptchaenterprise.v1.ListRelatedAccountGroupMembershipsResponse;
import com.google.recaptchaenterprise.v1.ListRelatedAccountGroupsRequest;
import com.google.recaptchaenterprise.v1.ListRelatedAccountGroupsResponse;
import com.google.recaptchaenterprise.v1.Metrics;
import com.google.recaptchaenterprise.v1.MigrateKeyRequest;
import com.google.recaptchaenterprise.v1.ReorderFirewallPoliciesRequest;
import com.google.recaptchaenterprise.v1.ReorderFirewallPoliciesResponse;
import com.google.recaptchaenterprise.v1.RetrieveLegacySecretKeyRequest;
import com.google.recaptchaenterprise.v1.RetrieveLegacySecretKeyResponse;
import com.google.recaptchaenterprise.v1.SearchRelatedAccountGroupMembershipsRequest;
import com.google.recaptchaenterprise.v1.SearchRelatedAccountGroupMembershipsResponse;
import com.google.recaptchaenterprise.v1.UpdateFirewallPolicyRequest;
import com.google.recaptchaenterprise.v1.UpdateKeyRequest;
import java.io.IOException;
import java.util.List;
import javax.annotation.Generated;

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

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

    *
  • The default service address (recaptchaenterprise.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 createAssessment 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
 * RecaptchaEnterpriseServiceSettings.Builder recaptchaEnterpriseServiceSettingsBuilder =
 *     RecaptchaEnterpriseServiceSettings.newBuilder();
 * recaptchaEnterpriseServiceSettingsBuilder
 *     .createAssessmentSettings()
 *     .setRetrySettings(
 *         recaptchaEnterpriseServiceSettingsBuilder
 *             .createAssessmentSettings()
 *             .getRetrySettings()
 *             .toBuilder()
 *             .setTotalTimeout(Duration.ofSeconds(30))
 *             .build());
 * RecaptchaEnterpriseServiceSettings recaptchaEnterpriseServiceSettings =
 *     recaptchaEnterpriseServiceSettingsBuilder.build();
 * }
*/ @Generated("by gapic-generator-java") public class RecaptchaEnterpriseServiceSettings extends ClientSettings { /** Returns the object with the settings used for calls to createAssessment. */ public UnaryCallSettings createAssessmentSettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()).createAssessmentSettings(); } /** Returns the object with the settings used for calls to annotateAssessment. */ public UnaryCallSettings annotateAssessmentSettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()) .annotateAssessmentSettings(); } /** Returns the object with the settings used for calls to createKey. */ public UnaryCallSettings createKeySettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()).createKeySettings(); } /** Returns the object with the settings used for calls to listKeys. */ public PagedCallSettings listKeysSettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()).listKeysSettings(); } /** Returns the object with the settings used for calls to retrieveLegacySecretKey. */ public UnaryCallSettings retrieveLegacySecretKeySettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()) .retrieveLegacySecretKeySettings(); } /** Returns the object with the settings used for calls to getKey. */ public UnaryCallSettings getKeySettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()).getKeySettings(); } /** Returns the object with the settings used for calls to updateKey. */ public UnaryCallSettings updateKeySettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()).updateKeySettings(); } /** Returns the object with the settings used for calls to deleteKey. */ public UnaryCallSettings deleteKeySettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()).deleteKeySettings(); } /** Returns the object with the settings used for calls to migrateKey. */ public UnaryCallSettings migrateKeySettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()).migrateKeySettings(); } /** Returns the object with the settings used for calls to addIpOverride. */ public UnaryCallSettings addIpOverrideSettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()).addIpOverrideSettings(); } /** Returns the object with the settings used for calls to getMetrics. */ public UnaryCallSettings getMetricsSettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()).getMetricsSettings(); } /** Returns the object with the settings used for calls to createFirewallPolicy. */ public UnaryCallSettings createFirewallPolicySettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()) .createFirewallPolicySettings(); } /** Returns the object with the settings used for calls to listFirewallPolicies. */ public PagedCallSettings< ListFirewallPoliciesRequest, ListFirewallPoliciesResponse, ListFirewallPoliciesPagedResponse> listFirewallPoliciesSettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()) .listFirewallPoliciesSettings(); } /** Returns the object with the settings used for calls to getFirewallPolicy. */ public UnaryCallSettings getFirewallPolicySettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()).getFirewallPolicySettings(); } /** Returns the object with the settings used for calls to updateFirewallPolicy. */ public UnaryCallSettings updateFirewallPolicySettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()) .updateFirewallPolicySettings(); } /** Returns the object with the settings used for calls to deleteFirewallPolicy. */ public UnaryCallSettings deleteFirewallPolicySettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()) .deleteFirewallPolicySettings(); } /** Returns the object with the settings used for calls to reorderFirewallPolicies. */ public UnaryCallSettings reorderFirewallPoliciesSettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()) .reorderFirewallPoliciesSettings(); } /** Returns the object with the settings used for calls to listRelatedAccountGroups. */ public PagedCallSettings< ListRelatedAccountGroupsRequest, ListRelatedAccountGroupsResponse, ListRelatedAccountGroupsPagedResponse> listRelatedAccountGroupsSettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()) .listRelatedAccountGroupsSettings(); } /** Returns the object with the settings used for calls to listRelatedAccountGroupMemberships. */ public PagedCallSettings< ListRelatedAccountGroupMembershipsRequest, ListRelatedAccountGroupMembershipsResponse, ListRelatedAccountGroupMembershipsPagedResponse> listRelatedAccountGroupMembershipsSettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()) .listRelatedAccountGroupMembershipsSettings(); } /** * Returns the object with the settings used for calls to searchRelatedAccountGroupMemberships. */ public PagedCallSettings< SearchRelatedAccountGroupMembershipsRequest, SearchRelatedAccountGroupMembershipsResponse, SearchRelatedAccountGroupMembershipsPagedResponse> searchRelatedAccountGroupMembershipsSettings() { return ((RecaptchaEnterpriseServiceStubSettings) getStubSettings()) .searchRelatedAccountGroupMembershipsSettings(); } public static final RecaptchaEnterpriseServiceSettings create( RecaptchaEnterpriseServiceStubSettings stub) throws IOException { return new RecaptchaEnterpriseServiceSettings.Builder(stub.toBuilder()).build(); } /** Returns a builder for the default ExecutorProvider for this service. */ public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder() { return RecaptchaEnterpriseServiceStubSettings.defaultExecutorProviderBuilder(); } /** Returns the default service endpoint. */ public static String getDefaultEndpoint() { return RecaptchaEnterpriseServiceStubSettings.getDefaultEndpoint(); } /** Returns the default service scopes. */ public static List getDefaultServiceScopes() { return RecaptchaEnterpriseServiceStubSettings.getDefaultServiceScopes(); } /** Returns a builder for the default credentials for this service. */ public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder() { return RecaptchaEnterpriseServiceStubSettings.defaultCredentialsProviderBuilder(); } /** Returns a builder for the default ChannelProvider for this service. */ public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder() { return RecaptchaEnterpriseServiceStubSettings.defaultGrpcTransportProviderBuilder(); } public static TransportChannelProvider defaultTransportChannelProvider() { return RecaptchaEnterpriseServiceStubSettings.defaultTransportChannelProvider(); } public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() { return RecaptchaEnterpriseServiceStubSettings.defaultApiClientHeaderProviderBuilder(); } /** 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 RecaptchaEnterpriseServiceSettings(Builder settingsBuilder) throws IOException { super(settingsBuilder); } /** Builder for RecaptchaEnterpriseServiceSettings. */ public static class Builder extends ClientSettings.Builder { protected Builder() throws IOException { this(((ClientContext) null)); } protected Builder(ClientContext clientContext) { super(RecaptchaEnterpriseServiceStubSettings.newBuilder(clientContext)); } protected Builder(RecaptchaEnterpriseServiceSettings settings) { super(settings.getStubSettings().toBuilder()); } protected Builder(RecaptchaEnterpriseServiceStubSettings.Builder stubSettings) { super(stubSettings); } private static Builder createDefault() { return new Builder(RecaptchaEnterpriseServiceStubSettings.newBuilder()); } public RecaptchaEnterpriseServiceStubSettings.Builder getStubSettingsBuilder() { return ((RecaptchaEnterpriseServiceStubSettings.Builder) getStubSettings()); } /** * 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( getStubSettingsBuilder().unaryMethodSettingsBuilders(), settingsUpdater); return this; } /** Returns the builder for the settings used for calls to createAssessment. */ public UnaryCallSettings.Builder createAssessmentSettings() { return getStubSettingsBuilder().createAssessmentSettings(); } /** Returns the builder for the settings used for calls to annotateAssessment. */ public UnaryCallSettings.Builder annotateAssessmentSettings() { return getStubSettingsBuilder().annotateAssessmentSettings(); } /** Returns the builder for the settings used for calls to createKey. */ public UnaryCallSettings.Builder createKeySettings() { return getStubSettingsBuilder().createKeySettings(); } /** Returns the builder for the settings used for calls to listKeys. */ public PagedCallSettings.Builder listKeysSettings() { return getStubSettingsBuilder().listKeysSettings(); } /** Returns the builder for the settings used for calls to retrieveLegacySecretKey. */ public UnaryCallSettings.Builder< RetrieveLegacySecretKeyRequest, RetrieveLegacySecretKeyResponse> retrieveLegacySecretKeySettings() { return getStubSettingsBuilder().retrieveLegacySecretKeySettings(); } /** Returns the builder for the settings used for calls to getKey. */ public UnaryCallSettings.Builder getKeySettings() { return getStubSettingsBuilder().getKeySettings(); } /** Returns the builder for the settings used for calls to updateKey. */ public UnaryCallSettings.Builder updateKeySettings() { return getStubSettingsBuilder().updateKeySettings(); } /** Returns the builder for the settings used for calls to deleteKey. */ public UnaryCallSettings.Builder deleteKeySettings() { return getStubSettingsBuilder().deleteKeySettings(); } /** Returns the builder for the settings used for calls to migrateKey. */ public UnaryCallSettings.Builder migrateKeySettings() { return getStubSettingsBuilder().migrateKeySettings(); } /** Returns the builder for the settings used for calls to addIpOverride. */ public UnaryCallSettings.Builder addIpOverrideSettings() { return getStubSettingsBuilder().addIpOverrideSettings(); } /** Returns the builder for the settings used for calls to getMetrics. */ public UnaryCallSettings.Builder getMetricsSettings() { return getStubSettingsBuilder().getMetricsSettings(); } /** Returns the builder for the settings used for calls to createFirewallPolicy. */ public UnaryCallSettings.Builder createFirewallPolicySettings() { return getStubSettingsBuilder().createFirewallPolicySettings(); } /** Returns the builder for the settings used for calls to listFirewallPolicies. */ public PagedCallSettings.Builder< ListFirewallPoliciesRequest, ListFirewallPoliciesResponse, ListFirewallPoliciesPagedResponse> listFirewallPoliciesSettings() { return getStubSettingsBuilder().listFirewallPoliciesSettings(); } /** Returns the builder for the settings used for calls to getFirewallPolicy. */ public UnaryCallSettings.Builder getFirewallPolicySettings() { return getStubSettingsBuilder().getFirewallPolicySettings(); } /** Returns the builder for the settings used for calls to updateFirewallPolicy. */ public UnaryCallSettings.Builder updateFirewallPolicySettings() { return getStubSettingsBuilder().updateFirewallPolicySettings(); } /** Returns the builder for the settings used for calls to deleteFirewallPolicy. */ public UnaryCallSettings.Builder deleteFirewallPolicySettings() { return getStubSettingsBuilder().deleteFirewallPolicySettings(); } /** Returns the builder for the settings used for calls to reorderFirewallPolicies. */ public UnaryCallSettings.Builder< ReorderFirewallPoliciesRequest, ReorderFirewallPoliciesResponse> reorderFirewallPoliciesSettings() { return getStubSettingsBuilder().reorderFirewallPoliciesSettings(); } /** Returns the builder for the settings used for calls to listRelatedAccountGroups. */ public PagedCallSettings.Builder< ListRelatedAccountGroupsRequest, ListRelatedAccountGroupsResponse, ListRelatedAccountGroupsPagedResponse> listRelatedAccountGroupsSettings() { return getStubSettingsBuilder().listRelatedAccountGroupsSettings(); } /** * Returns the builder for the settings used for calls to listRelatedAccountGroupMemberships. */ public PagedCallSettings.Builder< ListRelatedAccountGroupMembershipsRequest, ListRelatedAccountGroupMembershipsResponse, ListRelatedAccountGroupMembershipsPagedResponse> listRelatedAccountGroupMembershipsSettings() { return getStubSettingsBuilder().listRelatedAccountGroupMembershipsSettings(); } /** * Returns the builder for the settings used for calls to searchRelatedAccountGroupMemberships. */ public PagedCallSettings.Builder< SearchRelatedAccountGroupMembershipsRequest, SearchRelatedAccountGroupMembershipsResponse, SearchRelatedAccountGroupMembershipsPagedResponse> searchRelatedAccountGroupMembershipsSettings() { return getStubSettingsBuilder().searchRelatedAccountGroupMembershipsSettings(); } @Override public RecaptchaEnterpriseServiceSettings build() throws IOException { return new RecaptchaEnterpriseServiceSettings(this); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy