Package com.google.cloud.vision.v1p4beta1.stub (2.0.29)

Classes

GrpcImageAnnotatorCallableFactory

gRPC callable factory implementation for the ImageAnnotator service API.

This class is for advanced usage.

GrpcImageAnnotatorStub

gRPC stub implementation for the ImageAnnotator service API.

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

GrpcProductSearchCallableFactory

gRPC callable factory implementation for the ProductSearch service API.

This class is for advanced usage.

GrpcProductSearchStub

gRPC stub implementation for the ProductSearch service API.

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

ImageAnnotatorStub

Base stub class for the ImageAnnotator service API.

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

ImageAnnotatorStubSettings

Settings class to configure an instance of ImageAnnotatorStub.

The default instance has everything set to sensible defaults:

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


 ImageAnnotatorStubSettings.Builder imageAnnotatorSettingsBuilder =
     ImageAnnotatorStubSettings.newBuilder();
 imageAnnotatorSettingsBuilder
     .batchAnnotateImagesSettings()
     .setRetrySettings(
         imageAnnotatorSettingsBuilder
             .batchAnnotateImagesSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 ImageAnnotatorStubSettings imageAnnotatorSettings = imageAnnotatorSettingsBuilder.build();
 

ImageAnnotatorStubSettings.Builder

Builder for ImageAnnotatorStubSettings.

ProductSearchStub

Base stub class for the ProductSearch service API.

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

ProductSearchStubSettings

Settings class to configure an instance of ProductSearchStub.

The default instance has everything set to sensible defaults:

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


 ProductSearchStubSettings.Builder productSearchSettingsBuilder =
     ProductSearchStubSettings.newBuilder();
 productSearchSettingsBuilder
     .createProductSetSettings()
     .setRetrySettings(
         productSearchSettingsBuilder
             .createProductSetSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 ProductSearchStubSettings productSearchSettings = productSearchSettingsBuilder.build();
 

ProductSearchStubSettings.Builder

Builder for ProductSearchStubSettings.