Class SecurityPoliciesStubSettings (1.21.0)

public class SecurityPoliciesStubSettings extends StubSettings<SecurityPoliciesStubSettings>

Settings class to configure an instance of SecurityPoliciesStub.

The default instance has everything set to sensible defaults:

  • The default service address (compute.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 get 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
 SecurityPoliciesStubSettings.Builder securityPoliciesSettingsBuilder =
     SecurityPoliciesStubSettings.newBuilder();
 securityPoliciesSettingsBuilder
     .getSettings()
     .setRetrySettings(
         securityPoliciesSettingsBuilder
             .getSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 SecurityPoliciesStubSettings securityPoliciesSettings = securityPoliciesSettingsBuilder.build();
 

Inheritance

java.lang.Object > StubSettings > SecurityPoliciesStubSettings

Static Methods

defaultApiClientHeaderProviderBuilder()

public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder()
Returns
TypeDescription
Builder

defaultCredentialsProviderBuilder()

public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder()

Returns a builder for the default credentials for this service.

Returns
TypeDescription
Builder

defaultExecutorProviderBuilder()

public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder()

Returns a builder for the default ExecutorProvider for this service.

Returns
TypeDescription
Builder

defaultHttpJsonTransportProviderBuilder()

public static InstantiatingHttpJsonChannelProvider.Builder defaultHttpJsonTransportProviderBuilder()

Returns a builder for the default ChannelProvider for this service.

Returns
TypeDescription
Builder

defaultTransportChannelProvider()

public static TransportChannelProvider defaultTransportChannelProvider()
Returns

getDefaultEndpoint()

public static String getDefaultEndpoint()

Returns the default service endpoint.

Returns
TypeDescription
String

getDefaultMtlsEndpoint()

public static String getDefaultMtlsEndpoint()

Returns the default mTLS service endpoint.

Returns
TypeDescription
String

getDefaultServiceScopes()

public static List<String> getDefaultServiceScopes()

Returns the default service scopes.

Returns
TypeDescription
List<String>

newBuilder()

public static SecurityPoliciesStubSettings.Builder newBuilder()

Returns a new builder for this class.

Returns

newBuilder(ClientContext clientContext)

public static SecurityPoliciesStubSettings.Builder newBuilder(ClientContext clientContext)

Returns a new builder for this class.

Parameter
NameDescription
clientContextClientContext
Returns

Constructors

SecurityPoliciesStubSettings(SecurityPoliciesStubSettings.Builder settingsBuilder)

protected SecurityPoliciesStubSettings(SecurityPoliciesStubSettings.Builder settingsBuilder)
Parameter
NameDescription
settingsBuilderSecurityPoliciesStubSettings.Builder

Methods

addRuleOperationSettings()

public OperationCallSettings<AddRuleSecurityPolicyRequest,Operation,Operation> addRuleOperationSettings()

Returns the object with the settings used for calls to addRule.

Returns

addRuleSettings()

public UnaryCallSettings<AddRuleSecurityPolicyRequest,Operation> addRuleSettings()

Returns the object with the settings used for calls to addRule.

Returns

aggregatedListSettings()

public PagedCallSettings<AggregatedListSecurityPoliciesRequest,SecurityPoliciesAggregatedList,SecurityPoliciesClient.AggregatedListPagedResponse> aggregatedListSettings()

Returns the object with the settings used for calls to aggregatedList.

Returns

createStub()

public SecurityPoliciesStub createStub()
Returns
TypeDescription
SecurityPoliciesStub
Exceptions
TypeDescription
IOException

deleteOperationSettings()

public OperationCallSettings<DeleteSecurityPolicyRequest,Operation,Operation> deleteOperationSettings()

Returns the object with the settings used for calls to delete.

Returns

deleteSettings()

public UnaryCallSettings<DeleteSecurityPolicyRequest,Operation> deleteSettings()

Returns the object with the settings used for calls to delete.

Returns

getRuleSettings()

public UnaryCallSettings<GetRuleSecurityPolicyRequest,SecurityPolicyRule> getRuleSettings()

Returns the object with the settings used for calls to getRule.

Returns

getSettings()

public UnaryCallSettings<GetSecurityPolicyRequest,SecurityPolicy> getSettings()

Returns the object with the settings used for calls to get.

Returns

insertOperationSettings()

public OperationCallSettings<InsertSecurityPolicyRequest,Operation,Operation> insertOperationSettings()

Returns the object with the settings used for calls to insert.

Returns

insertSettings()

public UnaryCallSettings<InsertSecurityPolicyRequest,Operation> insertSettings()

Returns the object with the settings used for calls to insert.

Returns

listPreconfiguredExpressionSetsSettings()

public UnaryCallSettings<ListPreconfiguredExpressionSetsSecurityPoliciesRequest,SecurityPoliciesListPreconfiguredExpressionSetsResponse> listPreconfiguredExpressionSetsSettings()

Returns the object with the settings used for calls to listPreconfiguredExpressionSets.

Returns

listSettings()

public PagedCallSettings<ListSecurityPoliciesRequest,SecurityPolicyList,SecurityPoliciesClient.ListPagedResponse> listSettings()

Returns the object with the settings used for calls to list.

Returns

patchOperationSettings()

public OperationCallSettings<PatchSecurityPolicyRequest,Operation,Operation> patchOperationSettings()

Returns the object with the settings used for calls to patch.

Returns

patchRuleOperationSettings()

public OperationCallSettings<PatchRuleSecurityPolicyRequest,Operation,Operation> patchRuleOperationSettings()

Returns the object with the settings used for calls to patchRule.

Returns

patchRuleSettings()

public UnaryCallSettings<PatchRuleSecurityPolicyRequest,Operation> patchRuleSettings()

Returns the object with the settings used for calls to patchRule.

Returns

patchSettings()

public UnaryCallSettings<PatchSecurityPolicyRequest,Operation> patchSettings()

Returns the object with the settings used for calls to patch.

Returns

removeRuleOperationSettings()

public OperationCallSettings<RemoveRuleSecurityPolicyRequest,Operation,Operation> removeRuleOperationSettings()

Returns the object with the settings used for calls to removeRule.

Returns

removeRuleSettings()

public UnaryCallSettings<RemoveRuleSecurityPolicyRequest,Operation> removeRuleSettings()

Returns the object with the settings used for calls to removeRule.

Returns

setLabelsOperationSettings()

public OperationCallSettings<SetLabelsSecurityPolicyRequest,Operation,Operation> setLabelsOperationSettings()

Returns the object with the settings used for calls to setLabels.

Returns

setLabelsSettings()

public UnaryCallSettings<SetLabelsSecurityPolicyRequest,Operation> setLabelsSettings()

Returns the object with the settings used for calls to setLabels.

Returns

toBuilder()

public SecurityPoliciesStubSettings.Builder toBuilder()

Returns a builder containing all the values of this settings class.

Returns Overrides