Class ProfileServiceSettings (2.2.9)

public class ProfileServiceSettings extends ClientSettings<ProfileServiceSettings>

Settings class to configure an instance of ProfileServiceClient.

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:


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

Inheritance

java.lang.Object > ClientSettings > ProfileServiceSettings

Static Methods

create(ProfileServiceStubSettings stub)

public static final ProfileServiceSettings create(ProfileServiceStubSettings stub)
Parameter
NameDescription
stubProfileServiceStubSettings
Returns
TypeDescription
ProfileServiceSettings
Exceptions
TypeDescription
IOException

defaultApiClientHeaderProviderBuilder()

public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder()
Returns
TypeDescription
Builder

defaultCredentialsProviderBuilder()

public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder()

Returns a builder for the default credentials for this service.

Returns
TypeDescription
Builder

defaultExecutorProviderBuilder()

public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder()

Returns a builder for the default ExecutorProvider for this service.

Returns
TypeDescription
Builder

defaultGrpcTransportProviderBuilder()

public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder()

Returns a builder for the default ChannelProvider for this service.

Returns
TypeDescription
Builder

defaultTransportChannelProvider()

public static TransportChannelProvider defaultTransportChannelProvider()
Returns
TypeDescription
TransportChannelProvider

getDefaultEndpoint()

public static String getDefaultEndpoint()

Returns the default service endpoint.

Returns
TypeDescription
String

getDefaultServiceScopes()

public static List<String> getDefaultServiceScopes()

Returns the default service scopes.

Returns
TypeDescription
List<String>

newBuilder()

public static ProfileServiceSettings.Builder newBuilder()

Returns a new builder for this class.

Returns
TypeDescription
ProfileServiceSettings.Builder

newBuilder(ClientContext clientContext)

public static ProfileServiceSettings.Builder newBuilder(ClientContext clientContext)

Returns a new builder for this class.

Parameter
NameDescription
clientContextClientContext
Returns
TypeDescription
ProfileServiceSettings.Builder

Constructors

ProfileServiceSettings(ProfileServiceSettings.Builder settingsBuilder)

protected ProfileServiceSettings(ProfileServiceSettings.Builder settingsBuilder)
Parameter
NameDescription
settingsBuilderProfileServiceSettings.Builder

Methods

createProfileSettings()

public UnaryCallSettings<CreateProfileRequest,Profile> createProfileSettings()

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

Returns
TypeDescription
UnaryCallSettings<CreateProfileRequest,Profile>

deleteProfileSettings()

public UnaryCallSettings<DeleteProfileRequest,Empty> deleteProfileSettings()

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

Returns
TypeDescription
UnaryCallSettings<DeleteProfileRequest,Empty>

getProfileSettings()

public UnaryCallSettings<GetProfileRequest,Profile> getProfileSettings()

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

Returns
TypeDescription
UnaryCallSettings<GetProfileRequest,Profile>

listProfilesSettings()

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

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

Returns
TypeDescription
PagedCallSettings<ListProfilesRequest,ListProfilesResponse,ListProfilesPagedResponse>

searchProfilesSettings()

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

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

Returns
TypeDescription
PagedCallSettings<SearchProfilesRequest,SearchProfilesResponse,SearchProfilesPagedResponse>

toBuilder()

public ProfileServiceSettings.Builder toBuilder()

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

Returns
TypeDescription
ProfileServiceSettings.Builder
Overrides

updateProfileSettings()

public UnaryCallSettings<UpdateProfileRequest,Profile> updateProfileSettings()

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

Returns
TypeDescription
UnaryCallSettings<UpdateProfileRequest,Profile>