Package com.google.cloud.optimization.v1.stub (0.1.2)

Classes

FleetRoutingStub

Base stub class for the FleetRouting service API.

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

FleetRoutingStubSettings

Settings class to configure an instance of FleetRoutingStub.

The default instance has everything set to sensible defaults:

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


 FleetRoutingStubSettings.Builder fleetRoutingSettingsBuilder =
     FleetRoutingStubSettings.newBuilder();
 fleetRoutingSettingsBuilder
     .optimizeToursSettings()
     .setRetrySettings(
         fleetRoutingSettingsBuilder
             .optimizeToursSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 FleetRoutingStubSettings fleetRoutingSettings = fleetRoutingSettingsBuilder.build();
 

FleetRoutingStubSettings.Builder

Builder for FleetRoutingStubSettings.

GrpcFleetRoutingCallableFactory

gRPC callable factory implementation for the FleetRouting service API.

This class is for advanced usage.

GrpcFleetRoutingStub

gRPC stub implementation for the FleetRouting service API.

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