Class GroupServiceStubSettings (3.3.6)

public class GroupServiceStubSettings extends StubSettings<GroupServiceStubSettings>

Settings class to configure an instance of GroupServiceStub.

The default instance has everything set to sensible defaults:

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


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 GroupServiceStubSettings.Builder groupServiceSettingsBuilder =
     GroupServiceStubSettings.newBuilder();
 groupServiceSettingsBuilder
     .getGroupSettings()
     .setRetrySettings(
         groupServiceSettingsBuilder
             .getGroupSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 GroupServiceStubSettings groupServiceSettings = groupServiceSettingsBuilder.build();
 

Inheritance

java.lang.Object > StubSettings > GroupServiceStubSettings

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 GroupServiceStubSettings.Builder newBuilder()

Returns a new builder for this class.

Returns
TypeDescription
GroupServiceStubSettings.Builder

newBuilder(ClientContext clientContext)

public static GroupServiceStubSettings.Builder newBuilder(ClientContext clientContext)

Returns a new builder for this class.

Parameter
NameDescription
clientContextClientContext
Returns
TypeDescription
GroupServiceStubSettings.Builder

Constructors

GroupServiceStubSettings(GroupServiceStubSettings.Builder settingsBuilder)

protected GroupServiceStubSettings(GroupServiceStubSettings.Builder settingsBuilder)
Parameter
NameDescription
settingsBuilderGroupServiceStubSettings.Builder

Methods

createGroupSettings()

public UnaryCallSettings<CreateGroupRequest,Group> createGroupSettings()

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

Returns
TypeDescription
UnaryCallSettings<CreateGroupRequest,Group>

createStub()

public GroupServiceStub createStub()
Returns
TypeDescription
GroupServiceStub
Exceptions
TypeDescription
IOException

deleteGroupSettings()

public UnaryCallSettings<DeleteGroupRequest,Empty> deleteGroupSettings()

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

Returns
TypeDescription
UnaryCallSettings<DeleteGroupRequest,Empty>

getGroupSettings()

public UnaryCallSettings<GetGroupRequest,Group> getGroupSettings()

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

Returns
TypeDescription
UnaryCallSettings<GetGroupRequest,Group>

listGroupMembersSettings()

public PagedCallSettings<ListGroupMembersRequest,ListGroupMembersResponse,GroupServiceClient.ListGroupMembersPagedResponse> listGroupMembersSettings()

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

Returns
TypeDescription
PagedCallSettings<ListGroupMembersRequest,ListGroupMembersResponse,ListGroupMembersPagedResponse>

listGroupsSettings()

public PagedCallSettings<ListGroupsRequest,ListGroupsResponse,GroupServiceClient.ListGroupsPagedResponse> listGroupsSettings()

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

Returns
TypeDescription
PagedCallSettings<ListGroupsRequest,ListGroupsResponse,ListGroupsPagedResponse>

toBuilder()

public GroupServiceStubSettings.Builder toBuilder()

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

Returns
TypeDescription
GroupServiceStubSettings.Builder
Overrides

updateGroupSettings()

public UnaryCallSettings<UpdateGroupRequest,Group> updateGroupSettings()

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

Returns
TypeDescription
UnaryCallSettings<UpdateGroupRequest,Group>