Class AdvisoryNotificationsServiceClient (0.30.0)

GitHub RepositoryProduct Reference

Service Description: Service to manage Security and Privacy Notifications.

This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   NotificationName name =
       NotificationName.ofOrganizationLocationNotificationName(
           "[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION]");
   Notification response = advisoryNotificationsServiceClient.getNotification(name);
 }
 

Note: close() needs to be called on the AdvisoryNotificationsServiceClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().

Methods
MethodDescriptionMethod Variants

ListNotifications

Lists notifications under a given parent.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • listNotifications(ListNotificationsRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • listNotifications(LocationName parent)

  • listNotifications(String parent)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • listNotificationsPagedCallable()

  • listNotificationsCallable()

GetNotification

Gets a notification.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • getNotification(GetNotificationRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • getNotification(NotificationName name)

  • getNotification(String name)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getNotificationCallable()

GetSettings

Get notification settings.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • getSettings(GetSettingsRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • getSettings(SettingsName name)

  • getSettings(String name)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getSettingsCallable()

UpdateSettings

Update notification settings.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • updateSettings(UpdateSettingsRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • updateSettings(Settings settings)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • updateSettingsCallable()

See the individual methods for example code.

Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.

This class can be customized by passing in a custom instance of AdvisoryNotificationsServiceSettings to create(). For example:

To customize credentials:


 // 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
 AdvisoryNotificationsServiceSettings advisoryNotificationsServiceSettings =
     AdvisoryNotificationsServiceSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create(advisoryNotificationsServiceSettings);
 

To customize the endpoint:


 // 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
 AdvisoryNotificationsServiceSettings advisoryNotificationsServiceSettings =
     AdvisoryNotificationsServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
 AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create(advisoryNotificationsServiceSettings);
 

To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:


 // 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
 AdvisoryNotificationsServiceSettings advisoryNotificationsServiceSettings =
     AdvisoryNotificationsServiceSettings.newHttpJsonBuilder().build();
 AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create(advisoryNotificationsServiceSettings);
 

Please refer to the GitHub repository's samples for more quickstart code snippets.

Inheritance

java.lang.Object > AdvisoryNotificationsServiceClient

Static Methods

create()

public static final AdvisoryNotificationsServiceClient create()

Constructs an instance of AdvisoryNotificationsServiceClient with default settings.

Returns
TypeDescription
AdvisoryNotificationsServiceClient
Exceptions
TypeDescription
IOException

create(AdvisoryNotificationsServiceSettings settings)

public static final AdvisoryNotificationsServiceClient create(AdvisoryNotificationsServiceSettings settings)

Constructs an instance of AdvisoryNotificationsServiceClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.

Parameter
NameDescription
settingsAdvisoryNotificationsServiceSettings
Returns
TypeDescription
AdvisoryNotificationsServiceClient
Exceptions
TypeDescription
IOException

create(AdvisoryNotificationsServiceStub stub)

public static final AdvisoryNotificationsServiceClient create(AdvisoryNotificationsServiceStub stub)

Constructs an instance of AdvisoryNotificationsServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(AdvisoryNotificationsServiceSettings).

Parameter
NameDescription
stubAdvisoryNotificationsServiceStub
Returns
TypeDescription
AdvisoryNotificationsServiceClient

Constructors

AdvisoryNotificationsServiceClient(AdvisoryNotificationsServiceSettings settings)

protected AdvisoryNotificationsServiceClient(AdvisoryNotificationsServiceSettings settings)

Constructs an instance of AdvisoryNotificationsServiceClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.

Parameter
NameDescription
settingsAdvisoryNotificationsServiceSettings

AdvisoryNotificationsServiceClient(AdvisoryNotificationsServiceStub stub)

protected AdvisoryNotificationsServiceClient(AdvisoryNotificationsServiceStub stub)
Parameter
NameDescription
stubAdvisoryNotificationsServiceStub

Methods

awaitTermination(long duration, TimeUnit unit)

public boolean awaitTermination(long duration, TimeUnit unit)
Parameters
NameDescription
durationlong
unitTimeUnit
Returns
TypeDescription
boolean
Exceptions
TypeDescription
InterruptedException

close()

public final void close()

getNotification(GetNotificationRequest request)

public final Notification getNotification(GetNotificationRequest request)

Gets a notification.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   GetNotificationRequest request =
       GetNotificationRequest.newBuilder()
           .setName(
               NotificationName.ofOrganizationLocationNotificationName(
                       "[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION]")
                   .toString())
           .setLanguageCode("languageCode-2092349083")
           .build();
   Notification response = advisoryNotificationsServiceClient.getNotification(request);
 }
 
Parameter
NameDescription
requestGetNotificationRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
Notification

getNotification(NotificationName name)

public final Notification getNotification(NotificationName name)

Gets a notification.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   NotificationName name =
       NotificationName.ofOrganizationLocationNotificationName(
           "[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION]");
   Notification response = advisoryNotificationsServiceClient.getNotification(name);
 }
 
Parameter
NameDescription
nameNotificationName

Required. A name of the notification to retrieve. Format: organizations/{organization}/locations/{location}/notifications/{notification} or projects/{projects}/locations/{location}/notifications/{notification}.

Returns
TypeDescription
Notification

getNotification(String name)

public final Notification getNotification(String name)

Gets a notification.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   String name =
       NotificationName.ofOrganizationLocationNotificationName(
               "[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION]")
           .toString();
   Notification response = advisoryNotificationsServiceClient.getNotification(name);
 }
 
Parameter
NameDescription
nameString

Required. A name of the notification to retrieve. Format: organizations/{organization}/locations/{location}/notifications/{notification} or projects/{projects}/locations/{location}/notifications/{notification}.

Returns
TypeDescription
Notification

getNotificationCallable()

public final UnaryCallable<GetNotificationRequest,Notification> getNotificationCallable()

Gets a notification.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   GetNotificationRequest request =
       GetNotificationRequest.newBuilder()
           .setName(
               NotificationName.ofOrganizationLocationNotificationName(
                       "[ORGANIZATION]", "[LOCATION]", "[NOTIFICATION]")
                   .toString())
           .setLanguageCode("languageCode-2092349083")
           .build();
   ApiFuture<Notification> future =
       advisoryNotificationsServiceClient.getNotificationCallable().futureCall(request);
   // Do something.
   Notification response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetNotificationRequest,Notification>

getSettings()

public final AdvisoryNotificationsServiceSettings getSettings()
Returns
TypeDescription
AdvisoryNotificationsServiceSettings

getSettings(GetSettingsRequest request)

public final Settings getSettings(GetSettingsRequest request)

Get notification settings.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   GetSettingsRequest request =
       GetSettingsRequest.newBuilder()
           .setName(SettingsName.of("[ORGANIZATION]", "[LOCATION]").toString())
           .build();
   Settings response = advisoryNotificationsServiceClient.getSettings(request);
 }
 
Parameter
NameDescription
requestGetSettingsRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
Settings

getSettings(SettingsName name)

public final Settings getSettings(SettingsName name)

Get notification settings.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   SettingsName name = SettingsName.of("[ORGANIZATION]", "[LOCATION]");
   Settings response = advisoryNotificationsServiceClient.getSettings(name);
 }
 
Parameter
NameDescription
nameSettingsName

Required. The resource name of the settings to retrieve. Format: organizations/{organization}/locations/{location}/settings.

Returns
TypeDescription
Settings

getSettings(String name)

public final Settings getSettings(String name)

Get notification settings.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   String name = SettingsName.of("[ORGANIZATION]", "[LOCATION]").toString();
   Settings response = advisoryNotificationsServiceClient.getSettings(name);
 }
 
Parameter
NameDescription
nameString

Required. The resource name of the settings to retrieve. Format: organizations/{organization}/locations/{location}/settings.

Returns
TypeDescription
Settings

getSettingsCallable()

public final UnaryCallable<GetSettingsRequest,Settings> getSettingsCallable()

Get notification settings.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   GetSettingsRequest request =
       GetSettingsRequest.newBuilder()
           .setName(SettingsName.of("[ORGANIZATION]", "[LOCATION]").toString())
           .build();
   ApiFuture<Settings> future =
       advisoryNotificationsServiceClient.getSettingsCallable().futureCall(request);
   // Do something.
   Settings response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetSettingsRequest,Settings>

getStub()

public AdvisoryNotificationsServiceStub getStub()
Returns
TypeDescription
AdvisoryNotificationsServiceStub

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean

listNotifications(ListNotificationsRequest request)

public final AdvisoryNotificationsServiceClient.ListNotificationsPagedResponse listNotifications(ListNotificationsRequest request)

Lists notifications under a given parent.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   ListNotificationsRequest request =
       ListNotificationsRequest.newBuilder()
           .setParent(
               LocationName.ofOrganizationLocationName("[ORGANIZATION]", "[LOCATION]")
                   .toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setView(NotificationView.forNumber(0))
           .setLanguageCode("languageCode-2092349083")
           .build();
   for (Notification element :
       advisoryNotificationsServiceClient.listNotifications(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListNotificationsRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
AdvisoryNotificationsServiceClient.ListNotificationsPagedResponse

listNotifications(LocationName parent)

public final AdvisoryNotificationsServiceClient.ListNotificationsPagedResponse listNotifications(LocationName parent)

Lists notifications under a given parent.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   LocationName parent = LocationName.ofOrganizationLocationName("[ORGANIZATION]", "[LOCATION]");
   for (Notification element :
       advisoryNotificationsServiceClient.listNotifications(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentLocationName

Required. The parent, which owns this collection of notifications. Must be of the form "organizations/{organization}/locations/{location}" or "projects/{project}/locations/{location}"

Returns
TypeDescription
AdvisoryNotificationsServiceClient.ListNotificationsPagedResponse

listNotifications(String parent)

public final AdvisoryNotificationsServiceClient.ListNotificationsPagedResponse listNotifications(String parent)

Lists notifications under a given parent.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   String parent =
       LocationName.ofOrganizationLocationName("[ORGANIZATION]", "[LOCATION]").toString();
   for (Notification element :
       advisoryNotificationsServiceClient.listNotifications(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentString

Required. The parent, which owns this collection of notifications. Must be of the form "organizations/{organization}/locations/{location}" or "projects/{project}/locations/{location}"

Returns
TypeDescription
AdvisoryNotificationsServiceClient.ListNotificationsPagedResponse

listNotificationsCallable()

public final UnaryCallable<ListNotificationsRequest,ListNotificationsResponse> listNotificationsCallable()

Lists notifications under a given parent.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   ListNotificationsRequest request =
       ListNotificationsRequest.newBuilder()
           .setParent(
               LocationName.ofOrganizationLocationName("[ORGANIZATION]", "[LOCATION]")
                   .toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setView(NotificationView.forNumber(0))
           .setLanguageCode("languageCode-2092349083")
           .build();
   while (true) {
     ListNotificationsResponse response =
         advisoryNotificationsServiceClient.listNotificationsCallable().call(request);
     for (Notification element : response.getNotificationsList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListNotificationsRequest,ListNotificationsResponse>

listNotificationsPagedCallable()

public final UnaryCallable<ListNotificationsRequest,AdvisoryNotificationsServiceClient.ListNotificationsPagedResponse> listNotificationsPagedCallable()

Lists notifications under a given parent.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   ListNotificationsRequest request =
       ListNotificationsRequest.newBuilder()
           .setParent(
               LocationName.ofOrganizationLocationName("[ORGANIZATION]", "[LOCATION]")
                   .toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setView(NotificationView.forNumber(0))
           .setLanguageCode("languageCode-2092349083")
           .build();
   ApiFuture<Notification> future =
       advisoryNotificationsServiceClient.listNotificationsPagedCallable().futureCall(request);
   // Do something.
   for (Notification element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListNotificationsRequest,ListNotificationsPagedResponse>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()

updateSettings(Settings settings)

public final Settings updateSettings(Settings settings)

Update notification settings.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   Settings settings = Settings.newBuilder().build();
   Settings response = advisoryNotificationsServiceClient.updateSettings(settings);
 }
 
Parameter
NameDescription
settingsSettings

Required. New settings.

Returns
TypeDescription
Settings

updateSettings(UpdateSettingsRequest request)

public final Settings updateSettings(UpdateSettingsRequest request)

Update notification settings.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   UpdateSettingsRequest request =
       UpdateSettingsRequest.newBuilder().setSettings(Settings.newBuilder().build()).build();
   Settings response = advisoryNotificationsServiceClient.updateSettings(request);
 }
 
Parameter
NameDescription
requestUpdateSettingsRequest

The request object containing all of the parameters for the API call.

Returns
TypeDescription
Settings

updateSettingsCallable()

public final UnaryCallable<UpdateSettingsRequest,Settings> updateSettingsCallable()

Update notification settings.

Sample code:


 // 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
 try (AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient =
     AdvisoryNotificationsServiceClient.create()) {
   UpdateSettingsRequest request =
       UpdateSettingsRequest.newBuilder().setSettings(Settings.newBuilder().build()).build();
   ApiFuture<Settings> future =
       advisoryNotificationsServiceClient.updateSettingsCallable().futureCall(request);
   // Do something.
   Settings response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<UpdateSettingsRequest,Settings>