Class LicensesSettings (1.43.0)

public class LicensesSettings extends ClientSettings<LicensesSettings>

Settings class to configure an instance of LicensesClient.

The default instance has everything set to sensible defaults:

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


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 LicensesSettings.Builder licensesSettingsBuilder = LicensesSettings.newBuilder();
 licensesSettingsBuilder
     .getSettings()
     .setRetrySettings(
         licensesSettingsBuilder
             .getSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 LicensesSettings licensesSettings = licensesSettingsBuilder.build();
 

Inheritance

java.lang.Object > ClientSettings > LicensesSettings

Static Methods

create(LicensesStubSettings stub)

public static final LicensesSettings create(LicensesStubSettings stub)
Parameter
NameDescription
stubLicensesStubSettings
Returns
TypeDescription
LicensesSettings
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

defaultHttpJsonTransportProviderBuilder()

public static InstantiatingHttpJsonChannelProvider.Builder defaultHttpJsonTransportProviderBuilder()

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

Returns a new builder for this class.

Returns
TypeDescription
LicensesSettings.Builder

newBuilder(ClientContext clientContext)

public static LicensesSettings.Builder newBuilder(ClientContext clientContext)

Returns a new builder for this class.

Parameter
NameDescription
clientContextClientContext
Returns
TypeDescription
LicensesSettings.Builder

Constructors

LicensesSettings(LicensesSettings.Builder settingsBuilder)

protected LicensesSettings(LicensesSettings.Builder settingsBuilder)
Parameter
NameDescription
settingsBuilderLicensesSettings.Builder

Methods

deleteOperationSettings()

public OperationCallSettings<DeleteLicenseRequest,Operation,Operation> deleteOperationSettings()

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

Returns
TypeDescription
OperationCallSettings<DeleteLicenseRequest,Operation,Operation>

deleteSettings()

public UnaryCallSettings<DeleteLicenseRequest,Operation> deleteSettings()

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

Returns
TypeDescription
UnaryCallSettings<DeleteLicenseRequest,Operation>

getIamPolicySettings()

public UnaryCallSettings<GetIamPolicyLicenseRequest,Policy> getIamPolicySettings()

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

Returns
TypeDescription
UnaryCallSettings<GetIamPolicyLicenseRequest,Policy>

getSettings()

public UnaryCallSettings<GetLicenseRequest,License> getSettings()

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

Returns
TypeDescription
UnaryCallSettings<GetLicenseRequest,License>

insertOperationSettings()

public OperationCallSettings<InsertLicenseRequest,Operation,Operation> insertOperationSettings()

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

Returns
TypeDescription
OperationCallSettings<InsertLicenseRequest,Operation,Operation>

insertSettings()

public UnaryCallSettings<InsertLicenseRequest,Operation> insertSettings()

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

Returns
TypeDescription
UnaryCallSettings<InsertLicenseRequest,Operation>

listSettings()

public PagedCallSettings<ListLicensesRequest,LicensesListResponse,LicensesClient.ListPagedResponse> listSettings()

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

Returns
TypeDescription
PagedCallSettings<ListLicensesRequest,LicensesListResponse,ListPagedResponse>

setIamPolicySettings()

public UnaryCallSettings<SetIamPolicyLicenseRequest,Policy> setIamPolicySettings()

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

Returns
TypeDescription
UnaryCallSettings<SetIamPolicyLicenseRequest,Policy>

testIamPermissionsSettings()

public UnaryCallSettings<TestIamPermissionsLicenseRequest,TestPermissionsResponse> testIamPermissionsSettings()

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

Returns
TypeDescription
UnaryCallSettings<TestIamPermissionsLicenseRequest,TestPermissionsResponse>

toBuilder()

public LicensesSettings.Builder toBuilder()

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

Returns
TypeDescription
LicensesSettings.Builder
Overrides