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

Classes

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:


 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.