Package com.google.cloud.documentai.v1beta2.stub (2.2.1)

Classes

DocumentUnderstandingServiceStub

Base stub class for the DocumentUnderstandingService service API.

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

DocumentUnderstandingServiceStubSettings

Settings class to configure an instance of DocumentUnderstandingServiceStub.

The default instance has everything set to sensible defaults:

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


 DocumentUnderstandingServiceStubSettings.Builder documentUnderstandingServiceSettingsBuilder =
     DocumentUnderstandingServiceStubSettings.newBuilder();
 documentUnderstandingServiceSettingsBuilder
     .processDocumentSettings()
     .setRetrySettings(
         documentUnderstandingServiceSettingsBuilder
             .processDocumentSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 DocumentUnderstandingServiceStubSettings documentUnderstandingServiceSettings =
     documentUnderstandingServiceSettingsBuilder.build();
 

DocumentUnderstandingServiceStubSettings.Builder

Builder for DocumentUnderstandingServiceStubSettings.

GrpcDocumentUnderstandingServiceCallableFactory

gRPC callable factory implementation for the DocumentUnderstandingService service API.

This class is for advanced usage.

GrpcDocumentUnderstandingServiceStub

gRPC stub implementation for the DocumentUnderstandingService service API.

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