GitHub Repository | Product 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().
Method | Description | Method 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.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetNotification | Gets a notification. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetSettings | Get notification settings. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
UpdateSettings | Update notification settings. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
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.
Static Methods
create()
public static final AdvisoryNotificationsServiceClient create()
Constructs an instance of AdvisoryNotificationsServiceClient with default settings.
Returns | |
---|---|
Type | Description |
AdvisoryNotificationsServiceClient |
Exceptions | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
settings | AdvisoryNotificationsServiceSettings |
Returns | |
---|---|
Type | Description |
AdvisoryNotificationsServiceClient |
Exceptions | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
stub | AdvisoryNotificationsServiceStub |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
settings | AdvisoryNotificationsServiceSettings |
AdvisoryNotificationsServiceClient(AdvisoryNotificationsServiceStub stub)
protected AdvisoryNotificationsServiceClient(AdvisoryNotificationsServiceStub stub)
Parameter | |
---|---|
Name | Description |
stub | AdvisoryNotificationsServiceStub |
Methods
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)
Parameters | |
---|---|
Name | Description |
duration | long |
unit | TimeUnit |
Returns | |
---|---|
Type | Description |
boolean |
Exceptions | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
request | GetNotificationRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
name | NotificationName Required. A name of the notification to retrieve. Format: organizations/{organization}/locations/{location}/notifications/{notification} or projects/{projects}/locations/{location}/notifications/{notification}. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
name | String Required. A name of the notification to retrieve. Format: organizations/{organization}/locations/{location}/notifications/{notification} or projects/{projects}/locations/{location}/notifications/{notification}. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
UnaryCallable<GetNotificationRequest,Notification> |
getSettings()
public final AdvisoryNotificationsServiceSettings getSettings()
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
request | GetSettingsRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
name | SettingsName Required. The resource name of the settings to retrieve. Format: organizations/{organization}/locations/{location}/settings. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
name | String Required. The resource name of the settings to retrieve. Format: organizations/{organization}/locations/{location}/settings. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
UnaryCallable<GetSettingsRequest,Settings> |
getStub()
public AdvisoryNotificationsServiceStub getStub()
Returns | |
---|---|
Type | Description |
AdvisoryNotificationsServiceStub |
isShutdown()
public boolean isShutdown()
Returns | |
---|---|
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
request | ListNotificationsRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
parent | LocationName Required. The parent, which owns this collection of notifications. Must be of the form "organizations/{organization}/locations/{location}" or "projects/{project}/locations/{location}" |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
parent | String Required. The parent, which owns this collection of notifications. Must be of the form "organizations/{organization}/locations/{location}" or "projects/{project}/locations/{location}" |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
settings | Settings Required. New settings. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
request | UpdateSettingsRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
UnaryCallable<UpdateSettingsRequest,Settings> |