Package com.google.cloud.kms.v1.stub (2.5.3)

Classes

EkmServiceStub

Base stub class for the EkmService service API.

This class is for advanced usage and reflects the underlying API directly.

EkmServiceStubSettings

Settings class to configure an instance of EkmServiceStub.

The default instance has everything set to sensible defaults:

  • The default service address (cloudkms.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 getEkmConnection to 30 seconds:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 EkmServiceStubSettings.Builder ekmServiceSettingsBuilder = EkmServiceStubSettings.newBuilder();
 ekmServiceSettingsBuilder
     .getEkmConnectionSettings()
     .setRetrySettings(
         ekmServiceSettingsBuilder
             .getEkmConnectionSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 EkmServiceStubSettings ekmServiceSettings = ekmServiceSettingsBuilder.build();
 

EkmServiceStubSettings.Builder

Builder for EkmServiceStubSettings.

GrpcEkmServiceCallableFactory

gRPC callable factory implementation for the EkmService service API.

This class is for advanced usage.

GrpcEkmServiceStub

gRPC stub implementation for the EkmService service API.

This class is for advanced usage and reflects the underlying API directly.

GrpcKeyManagementServiceCallableFactory

gRPC callable factory implementation for the KeyManagementService service API.

This class is for advanced usage.

GrpcKeyManagementServiceStub

gRPC stub implementation for the KeyManagementService service API.

This class is for advanced usage and reflects the underlying API directly.

KeyManagementServiceStub

Base stub class for the KeyManagementService service API.

This class is for advanced usage and reflects the underlying API directly.

KeyManagementServiceStubSettings

Settings class to configure an instance of KeyManagementServiceStub.

The default instance has everything set to sensible defaults:

  • The default service address (cloudkms.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 getKeyRing to 30 seconds:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 KeyManagementServiceStubSettings.Builder keyManagementServiceSettingsBuilder =
     KeyManagementServiceStubSettings.newBuilder();
 keyManagementServiceSettingsBuilder
     .getKeyRingSettings()
     .setRetrySettings(
         keyManagementServiceSettingsBuilder
             .getKeyRingSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 KeyManagementServiceStubSettings keyManagementServiceSettings =
     keyManagementServiceSettingsBuilder.build();
 

KeyManagementServiceStubSettings.Builder

Builder for KeyManagementServiceStubSettings.