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
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

getDefaultMtlsEndpoint()

public static String getDefaultMtlsEndpoint()

Returns the default mTLS service endpoint.

Returns
TypeDescription
String

getDefaultServiceScopes()

public static List<String> getDefaultServiceScopes()

Returns the default service scopes.

Returns
TypeDescription
List<String>

newBuilder()

public static ProfileServiceStubSettings.Builder newBuilder()

Returns a new builder for this class.

Returns
TypeDescription
ProfileServiceStubSettings.Builder

newBuilder(ClientContext clientContext)

public static ProfileServiceStubSettings.Builder newBuilder(ClientContext clientContext)

Returns a new builder for this class.

Parameter
NameDescription
clientContextClientContext
Returns
TypeDescription
ProfileServiceStubSettings.Builder

Constructors

ProfileServiceStubSettings(ProfileServiceStubSettings.Builder settingsBuilder)

protected ProfileServiceStubSettings(ProfileServiceStubSettings.Builder settingsBuilder)
Parameter
NameDescription
settingsBuilderProfileServiceStubSettings.Builder

Methods

createProfileSettings()

public UnaryCallSettings<CreateProfileRequest,Profile> createProfileSettings()

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

Returns
TypeDescription
UnaryCallSettings<CreateProfileRequest,Profile>

createStub()

public ProfileServiceStub createStub()
Returns
TypeDescription
ProfileServiceStub
Exceptions
TypeDescription
IOException

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 ProfileServiceStubSettings.Builder toBuilder()

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

Returns
TypeDescription
ProfileServiceStubSettings.Builder
Overrides

updateProfileSettings()

public UnaryCallSettings<UpdateProfileRequest,Profile> updateProfileSettings()

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

Returns
TypeDescription
UnaryCallSettings<UpdateProfileRequest,Profile>