Class ProfileServiceStubSettings (2.2.9)

public class ProfileServiceStubSettings extends StubSettings<ProfileServiceStubSettings>

Settings class to configure an instance of ProfileServiceStub.

The default instance has everything set to sensible defaults:

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


 ProfileServiceStubSettings.Builder profileServiceSettingsBuilder =
     ProfileServiceStubSettings.newBuilder();
 profileServiceSettingsBuilder
     .createProfileSettings()
     .setRetrySettings(
         profileServiceSettingsBuilder
             .createProfileSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 ProfileServiceStubSettings profileServiceSettings = profileServiceSettingsBuilder.build();
 

Inheritance

java.lang.Object > StubSettings > ProfileServiceStubSettings

Static Methods

defaultApiClientHeaderProviderBuilder()

public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder()
Returns
Type Description
Builder

defaultCredentialsProviderBuilder()

public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder()

Returns a builder for the default credentials for this service.

Returns
Type Description
Builder

defaultExecutorProviderBuilder()

public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder()

Returns a builder for the default ExecutorProvider for this service.

Returns
Type Description
Builder

defaultGrpcTransportProviderBuilder()

public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder()

Returns a builder for the default ChannelProvider for this service.

Returns
Type Description
Builder

defaultTransportChannelProvider()

public static TransportChannelProvider defaultTransportChannelProvider()
Returns
Type Description
TransportChannelProvider

getDefaultEndpoint()

public static String getDefaultEndpoint()

Returns the default service endpoint.

Returns
Type Description
String

getDefaultMtlsEndpoint()

public static String getDefaultMtlsEndpoint()

Returns the default mTLS service endpoint.

Returns
Type Description
String

getDefaultServiceScopes()

public static List<String> getDefaultServiceScopes()

Returns the default service scopes.

Returns
Type Description
List<String>

newBuilder()

public static ProfileServiceStubSettings.Builder newBuilder()

Returns a new builder for this class.

Returns
Type Description
ProfileServiceStubSettings.Builder

newBuilder(ClientContext clientContext)

public static ProfileServiceStubSettings.Builder newBuilder(ClientContext clientContext)

Returns a new builder for this class.

Parameter
Name Description
clientContext ClientContext
Returns
Type Description
ProfileServiceStubSettings.Builder

Constructors

ProfileServiceStubSettings(ProfileServiceStubSettings.Builder settingsBuilder)

protected ProfileServiceStubSettings(ProfileServiceStubSettings.Builder settingsBuilder)
Parameter
Name Description
settingsBuilder ProfileServiceStubSettings.Builder

Methods

createProfileSettings()

public UnaryCallSettings<CreateProfileRequest,Profile> createProfileSettings()

Returns the object with the settings used for calls to createProfile.

Returns
Type Description
UnaryCallSettings<CreateProfileRequest,Profile>

createStub()

public ProfileServiceStub createStub()
Returns
Type Description
ProfileServiceStub
Exceptions
Type Description
IOException

deleteProfileSettings()

public UnaryCallSettings<DeleteProfileRequest,Empty> deleteProfileSettings()

Returns the object with the settings used for calls to deleteProfile.

Returns
Type Description
UnaryCallSettings<DeleteProfileRequest,Empty>

getProfileSettings()

public UnaryCallSettings<GetProfileRequest,Profile> getProfileSettings()

Returns the object with the settings used for calls to getProfile.

Returns
Type Description
UnaryCallSettings<GetProfileRequest,Profile>

listProfilesSettings()

public PagedCallSettings<ListProfilesRequest,ListProfilesResponse,ProfileServiceClient.ListProfilesPagedResponse> listProfilesSettings()

Returns the object with the settings used for calls to listProfiles.

Returns
Type Description
PagedCallSettings<ListProfilesRequest,ListProfilesResponse,ListProfilesPagedResponse>

searchProfilesSettings()

public PagedCallSettings<SearchProfilesRequest,SearchProfilesResponse,ProfileServiceClient.SearchProfilesPagedResponse> searchProfilesSettings()

Returns the object with the settings used for calls to searchProfiles.

Returns
Type Description
PagedCallSettings<SearchProfilesRequest,SearchProfilesResponse,SearchProfilesPagedResponse>

toBuilder()

public ProfileServiceStubSettings.Builder toBuilder()

Returns a builder containing all the values of this settings class.

Returns
Type Description
ProfileServiceStubSettings.Builder
Overrides

updateProfileSettings()

public UnaryCallSettings<UpdateProfileRequest,Profile> updateProfileSettings()

Returns the object with the settings used for calls to updateProfile.

Returns
Type Description
UnaryCallSettings<UpdateProfileRequest,Profile>