- 1.62.0 (latest)
- 1.61.0
- 1.59.0
- 1.58.0
- 1.57.0
- 1.56.0
- 1.55.0
- 1.54.0
- 1.53.0
- 1.52.0
- 1.51.0
- 1.50.0
- 1.49.0
- 1.47.0
- 1.46.0
- 1.45.0
- 1.44.0
- 1.43.0
- 1.42.0
- 1.41.0
- 1.40.0
- 1.39.0
- 1.38.0
- 1.37.0
- 1.34.0
- 1.33.0
- 1.32.0
- 1.31.0
- 1.30.0
- 1.29.0
- 1.28.0
- 1.27.0
- 1.26.0
- 1.25.0
- 1.24.0
- 1.23.0
- 1.22.0
- 1.21.0
- 1.20.0
- 1.19.0
- 1.18.0
- 1.17.0
- 1.16.0
- 1.15.0
- 1.14.0
- 1.13.0
- 1.12.1
- 1.11.0
- 1.9.1
- 1.8.1
- 1.7.2
- 1.6.0-beta
GitHub Repository | Product Reference |
Service Description: The TargetSslProxies API.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
String project = "project-309310695";
String targetSslProxy = "targetSslProxy-879314829";
TargetSslProxy response = targetSslProxiesClient.get(project, targetSslProxy);
}
Note: close() needs to be called on the TargetSslProxiesClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
The surface of this class includes several types of Java methods for each of the API's methods:
- A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
- A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
- A "callable" method. This type of method takes no parameters and returns 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 TargetSslProxiesSettings 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
TargetSslProxiesSettings targetSslProxiesSettings =
TargetSslProxiesSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
TargetSslProxiesClient targetSslProxiesClient =
TargetSslProxiesClient.create(targetSslProxiesSettings);
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
TargetSslProxiesSettings targetSslProxiesSettings =
TargetSslProxiesSettings.newBuilder().setEndpoint(myEndpoint).build();
TargetSslProxiesClient targetSslProxiesClient =
TargetSslProxiesClient.create(targetSslProxiesSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Static Methods
create()
public static final TargetSslProxiesClient create()
Constructs an instance of TargetSslProxiesClient with default settings.
Returns | |
---|---|
Type | Description |
TargetSslProxiesClient |
Exceptions | |
---|---|
Type | Description |
IOException |
create(TargetSslProxiesSettings settings)
public static final TargetSslProxiesClient create(TargetSslProxiesSettings settings)
Constructs an instance of TargetSslProxiesClient, 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 | TargetSslProxiesSettings |
Returns | |
---|---|
Type | Description |
TargetSslProxiesClient |
Exceptions | |
---|---|
Type | Description |
IOException |
create(TargetSslProxiesStub stub)
public static final TargetSslProxiesClient create(TargetSslProxiesStub stub)
Constructs an instance of TargetSslProxiesClient, using the given stub for making calls. This is for advanced usage - prefer using create(TargetSslProxiesSettings).
Parameter | |
---|---|
Name | Description |
stub | TargetSslProxiesStub |
Returns | |
---|---|
Type | Description |
TargetSslProxiesClient |
Constructors
TargetSslProxiesClient(TargetSslProxiesSettings settings)
protected TargetSslProxiesClient(TargetSslProxiesSettings settings)
Constructs an instance of TargetSslProxiesClient, 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 | TargetSslProxiesSettings |
TargetSslProxiesClient(TargetSslProxiesStub stub)
protected TargetSslProxiesClient(TargetSslProxiesStub stub)
Parameter | |
---|---|
Name | Description |
stub | TargetSslProxiesStub |
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()
deleteAsync(DeleteTargetSslProxyRequest request)
public final OperationFuture<Operation,Operation> deleteAsync(DeleteTargetSslProxyRequest request)
Deletes the specified TargetSslProxy resource.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
DeleteTargetSslProxyRequest request =
DeleteTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxy("targetSslProxy-879314829")
.build();
Operation response = targetSslProxiesClient.deleteAsync(request).get();
}
Parameter | |
---|---|
Name | Description |
request | DeleteTargetSslProxyRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
deleteAsync(String project, String targetSslProxy)
public final OperationFuture<Operation,Operation> deleteAsync(String project, String targetSslProxy)
Deletes the specified TargetSslProxy resource.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
String project = "project-309310695";
String targetSslProxy = "targetSslProxy-879314829";
Operation response = targetSslProxiesClient.deleteAsync(project, targetSslProxy).get();
}
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
targetSslProxy | String Name of the TargetSslProxy resource to delete. |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
deleteCallable()
public final UnaryCallable<DeleteTargetSslProxyRequest,Operation> deleteCallable()
Deletes the specified TargetSslProxy resource.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
DeleteTargetSslProxyRequest request =
DeleteTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxy("targetSslProxy-879314829")
.build();
ApiFuture<Operation> future = targetSslProxiesClient.deleteCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<DeleteTargetSslProxyRequest,Operation> |
deleteOperationCallable()
public final OperationCallable<DeleteTargetSslProxyRequest,Operation,Operation> deleteOperationCallable()
Deletes the specified TargetSslProxy resource.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
DeleteTargetSslProxyRequest request =
DeleteTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxy("targetSslProxy-879314829")
.build();
OperationFuture<Operation, Operation> future =
targetSslProxiesClient.deleteOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
OperationCallable<DeleteTargetSslProxyRequest,Operation,Operation> |
get(GetTargetSslProxyRequest request)
public final TargetSslProxy get(GetTargetSslProxyRequest request)
Returns the specified TargetSslProxy resource.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
GetTargetSslProxyRequest request =
GetTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setTargetSslProxy("targetSslProxy-879314829")
.build();
TargetSslProxy response = targetSslProxiesClient.get(request);
}
Parameter | |
---|---|
Name | Description |
request | GetTargetSslProxyRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
TargetSslProxy |
get(String project, String targetSslProxy)
public final TargetSslProxy get(String project, String targetSslProxy)
Returns the specified TargetSslProxy resource.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
String project = "project-309310695";
String targetSslProxy = "targetSslProxy-879314829";
TargetSslProxy response = targetSslProxiesClient.get(project, targetSslProxy);
}
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
targetSslProxy | String Name of the TargetSslProxy resource to return. |
Returns | |
---|---|
Type | Description |
TargetSslProxy |
getCallable()
public final UnaryCallable<GetTargetSslProxyRequest,TargetSslProxy> getCallable()
Returns the specified TargetSslProxy resource.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
GetTargetSslProxyRequest request =
GetTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setTargetSslProxy("targetSslProxy-879314829")
.build();
ApiFuture<TargetSslProxy> future = targetSslProxiesClient.getCallable().futureCall(request);
// Do something.
TargetSslProxy response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<GetTargetSslProxyRequest,TargetSslProxy> |
getSettings()
public final TargetSslProxiesSettings getSettings()
Returns | |
---|---|
Type | Description |
TargetSslProxiesSettings |
getStub()
public TargetSslProxiesStub getStub()
Returns | |
---|---|
Type | Description |
TargetSslProxiesStub |
insertAsync(InsertTargetSslProxyRequest request)
public final OperationFuture<Operation,Operation> insertAsync(InsertTargetSslProxyRequest request)
Creates a TargetSslProxy resource in the specified project using the data included in the request.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
InsertTargetSslProxyRequest request =
InsertTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxyResource(TargetSslProxy.newBuilder().build())
.build();
Operation response = targetSslProxiesClient.insertAsync(request).get();
}
Parameter | |
---|---|
Name | Description |
request | InsertTargetSslProxyRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
insertAsync(String project, TargetSslProxy targetSslProxyResource)
public final OperationFuture<Operation,Operation> insertAsync(String project, TargetSslProxy targetSslProxyResource)
Creates a TargetSslProxy resource in the specified project using the data included in the request.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
String project = "project-309310695";
TargetSslProxy targetSslProxyResource = TargetSslProxy.newBuilder().build();
Operation response =
targetSslProxiesClient.insertAsync(project, targetSslProxyResource).get();
}
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
targetSslProxyResource | TargetSslProxy The body resource for this request |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
insertCallable()
public final UnaryCallable<InsertTargetSslProxyRequest,Operation> insertCallable()
Creates a TargetSslProxy resource in the specified project using the data included in the request.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
InsertTargetSslProxyRequest request =
InsertTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxyResource(TargetSslProxy.newBuilder().build())
.build();
ApiFuture<Operation> future = targetSslProxiesClient.insertCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<InsertTargetSslProxyRequest,Operation> |
insertOperationCallable()
public final OperationCallable<InsertTargetSslProxyRequest,Operation,Operation> insertOperationCallable()
Creates a TargetSslProxy resource in the specified project using the data included in the request.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
InsertTargetSslProxyRequest request =
InsertTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxyResource(TargetSslProxy.newBuilder().build())
.build();
OperationFuture<Operation, Operation> future =
targetSslProxiesClient.insertOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
OperationCallable<InsertTargetSslProxyRequest,Operation,Operation> |
isShutdown()
public boolean isShutdown()
Returns | |
---|---|
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Returns | |
---|---|
Type | Description |
boolean |
list(ListTargetSslProxiesRequest request)
public final TargetSslProxiesClient.ListPagedResponse list(ListTargetSslProxiesRequest request)
Retrieves the list of TargetSslProxy resources available to the specified project.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
ListTargetSslProxiesRequest request =
ListTargetSslProxiesRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.build();
for (TargetSslProxy element : targetSslProxiesClient.list(request).iterateAll()) {
// doThingsWith(element);
}
}
Parameter | |
---|---|
Name | Description |
request | ListTargetSslProxiesRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
TargetSslProxiesClient.ListPagedResponse |
list(String project)
public final TargetSslProxiesClient.ListPagedResponse list(String project)
Retrieves the list of TargetSslProxy resources available to the specified project.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
String project = "project-309310695";
for (TargetSslProxy element : targetSslProxiesClient.list(project).iterateAll()) {
// doThingsWith(element);
}
}
Parameter | |
---|---|
Name | Description |
project | String Project ID for this request. |
Returns | |
---|---|
Type | Description |
TargetSslProxiesClient.ListPagedResponse |
listCallable()
public final UnaryCallable<ListTargetSslProxiesRequest,TargetSslProxyList> listCallable()
Retrieves the list of TargetSslProxy resources available to the specified project.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
ListTargetSslProxiesRequest request =
ListTargetSslProxiesRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.build();
while (true) {
TargetSslProxyList response = targetSslProxiesClient.listCallable().call(request);
for (TargetSslProxy element : response.getItemsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
Returns | |
---|---|
Type | Description |
UnaryCallable<ListTargetSslProxiesRequest,TargetSslProxyList> |
listPagedCallable()
public final UnaryCallable<ListTargetSslProxiesRequest,TargetSslProxiesClient.ListPagedResponse> listPagedCallable()
Retrieves the list of TargetSslProxy resources available to the specified project.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
ListTargetSslProxiesRequest request =
ListTargetSslProxiesRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.build();
ApiFuture<TargetSslProxy> future =
targetSslProxiesClient.listPagedCallable().futureCall(request);
// Do something.
for (TargetSslProxy element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
Returns | |
---|---|
Type | Description |
UnaryCallable<ListTargetSslProxiesRequest,ListPagedResponse> |
setBackendServiceAsync(SetBackendServiceTargetSslProxyRequest request)
public final OperationFuture<Operation,Operation> setBackendServiceAsync(SetBackendServiceTargetSslProxyRequest request)
Changes the BackendService for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
SetBackendServiceTargetSslProxyRequest request =
SetBackendServiceTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxiesSetBackendServiceRequestResource(
TargetSslProxiesSetBackendServiceRequest.newBuilder().build())
.setTargetSslProxy("targetSslProxy-879314829")
.build();
Operation response = targetSslProxiesClient.setBackendServiceAsync(request).get();
}
Parameter | |
---|---|
Name | Description |
request | SetBackendServiceTargetSslProxyRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
setBackendServiceAsync(String project, String targetSslProxy, TargetSslProxiesSetBackendServiceRequest targetSslProxiesSetBackendServiceRequestResource)
public final OperationFuture<Operation,Operation> setBackendServiceAsync(String project, String targetSslProxy, TargetSslProxiesSetBackendServiceRequest targetSslProxiesSetBackendServiceRequestResource)
Changes the BackendService for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
String project = "project-309310695";
String targetSslProxy = "targetSslProxy-879314829";
TargetSslProxiesSetBackendServiceRequest targetSslProxiesSetBackendServiceRequestResource =
TargetSslProxiesSetBackendServiceRequest.newBuilder().build();
Operation response =
targetSslProxiesClient
.setBackendServiceAsync(
project, targetSslProxy, targetSslProxiesSetBackendServiceRequestResource)
.get();
}
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
targetSslProxy | String Name of the TargetSslProxy resource whose BackendService resource is to be set. |
targetSslProxiesSetBackendServiceRequestResource | TargetSslProxiesSetBackendServiceRequest The body resource for this request |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
setBackendServiceCallable()
public final UnaryCallable<SetBackendServiceTargetSslProxyRequest,Operation> setBackendServiceCallable()
Changes the BackendService for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
SetBackendServiceTargetSslProxyRequest request =
SetBackendServiceTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxiesSetBackendServiceRequestResource(
TargetSslProxiesSetBackendServiceRequest.newBuilder().build())
.setTargetSslProxy("targetSslProxy-879314829")
.build();
ApiFuture<Operation> future =
targetSslProxiesClient.setBackendServiceCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<SetBackendServiceTargetSslProxyRequest,Operation> |
setBackendServiceOperationCallable()
public final OperationCallable<SetBackendServiceTargetSslProxyRequest,Operation,Operation> setBackendServiceOperationCallable()
Changes the BackendService for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
SetBackendServiceTargetSslProxyRequest request =
SetBackendServiceTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxiesSetBackendServiceRequestResource(
TargetSslProxiesSetBackendServiceRequest.newBuilder().build())
.setTargetSslProxy("targetSslProxy-879314829")
.build();
OperationFuture<Operation, Operation> future =
targetSslProxiesClient.setBackendServiceOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
OperationCallable<SetBackendServiceTargetSslProxyRequest,Operation,Operation> |
setCertificateMapAsync(SetCertificateMapTargetSslProxyRequest request)
public final OperationFuture<Operation,Operation> setCertificateMapAsync(SetCertificateMapTargetSslProxyRequest request)
Changes the Certificate Map for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
SetCertificateMapTargetSslProxyRequest request =
SetCertificateMapTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxiesSetCertificateMapRequestResource(
TargetSslProxiesSetCertificateMapRequest.newBuilder().build())
.setTargetSslProxy("targetSslProxy-879314829")
.build();
Operation response = targetSslProxiesClient.setCertificateMapAsync(request).get();
}
Parameter | |
---|---|
Name | Description |
request | SetCertificateMapTargetSslProxyRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
setCertificateMapAsync(String project, String targetSslProxy, TargetSslProxiesSetCertificateMapRequest targetSslProxiesSetCertificateMapRequestResource)
public final OperationFuture<Operation,Operation> setCertificateMapAsync(String project, String targetSslProxy, TargetSslProxiesSetCertificateMapRequest targetSslProxiesSetCertificateMapRequestResource)
Changes the Certificate Map for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
String project = "project-309310695";
String targetSslProxy = "targetSslProxy-879314829";
TargetSslProxiesSetCertificateMapRequest targetSslProxiesSetCertificateMapRequestResource =
TargetSslProxiesSetCertificateMapRequest.newBuilder().build();
Operation response =
targetSslProxiesClient
.setCertificateMapAsync(
project, targetSslProxy, targetSslProxiesSetCertificateMapRequestResource)
.get();
}
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
targetSslProxy | String Name of the TargetSslProxy resource whose CertificateMap is to be set. The name must be 1-63 characters long, and comply with RFC1035. |
targetSslProxiesSetCertificateMapRequestResource | TargetSslProxiesSetCertificateMapRequest The body resource for this request |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
setCertificateMapCallable()
public final UnaryCallable<SetCertificateMapTargetSslProxyRequest,Operation> setCertificateMapCallable()
Changes the Certificate Map for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
SetCertificateMapTargetSslProxyRequest request =
SetCertificateMapTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxiesSetCertificateMapRequestResource(
TargetSslProxiesSetCertificateMapRequest.newBuilder().build())
.setTargetSslProxy("targetSslProxy-879314829")
.build();
ApiFuture<Operation> future =
targetSslProxiesClient.setCertificateMapCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<SetCertificateMapTargetSslProxyRequest,Operation> |
setCertificateMapOperationCallable()
public final OperationCallable<SetCertificateMapTargetSslProxyRequest,Operation,Operation> setCertificateMapOperationCallable()
Changes the Certificate Map for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
SetCertificateMapTargetSslProxyRequest request =
SetCertificateMapTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxiesSetCertificateMapRequestResource(
TargetSslProxiesSetCertificateMapRequest.newBuilder().build())
.setTargetSslProxy("targetSslProxy-879314829")
.build();
OperationFuture<Operation, Operation> future =
targetSslProxiesClient.setCertificateMapOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
OperationCallable<SetCertificateMapTargetSslProxyRequest,Operation,Operation> |
setProxyHeaderAsync(SetProxyHeaderTargetSslProxyRequest request)
public final OperationFuture<Operation,Operation> setProxyHeaderAsync(SetProxyHeaderTargetSslProxyRequest request)
Changes the ProxyHeaderType for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
SetProxyHeaderTargetSslProxyRequest request =
SetProxyHeaderTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxiesSetProxyHeaderRequestResource(
TargetSslProxiesSetProxyHeaderRequest.newBuilder().build())
.setTargetSslProxy("targetSslProxy-879314829")
.build();
Operation response = targetSslProxiesClient.setProxyHeaderAsync(request).get();
}
Parameter | |
---|---|
Name | Description |
request | SetProxyHeaderTargetSslProxyRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
setProxyHeaderAsync(String project, String targetSslProxy, TargetSslProxiesSetProxyHeaderRequest targetSslProxiesSetProxyHeaderRequestResource)
public final OperationFuture<Operation,Operation> setProxyHeaderAsync(String project, String targetSslProxy, TargetSslProxiesSetProxyHeaderRequest targetSslProxiesSetProxyHeaderRequestResource)
Changes the ProxyHeaderType for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
String project = "project-309310695";
String targetSslProxy = "targetSslProxy-879314829";
TargetSslProxiesSetProxyHeaderRequest targetSslProxiesSetProxyHeaderRequestResource =
TargetSslProxiesSetProxyHeaderRequest.newBuilder().build();
Operation response =
targetSslProxiesClient
.setProxyHeaderAsync(
project, targetSslProxy, targetSslProxiesSetProxyHeaderRequestResource)
.get();
}
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
targetSslProxy | String Name of the TargetSslProxy resource whose ProxyHeader is to be set. |
targetSslProxiesSetProxyHeaderRequestResource | TargetSslProxiesSetProxyHeaderRequest The body resource for this request |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
setProxyHeaderCallable()
public final UnaryCallable<SetProxyHeaderTargetSslProxyRequest,Operation> setProxyHeaderCallable()
Changes the ProxyHeaderType for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
SetProxyHeaderTargetSslProxyRequest request =
SetProxyHeaderTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxiesSetProxyHeaderRequestResource(
TargetSslProxiesSetProxyHeaderRequest.newBuilder().build())
.setTargetSslProxy("targetSslProxy-879314829")
.build();
ApiFuture<Operation> future =
targetSslProxiesClient.setProxyHeaderCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<SetProxyHeaderTargetSslProxyRequest,Operation> |
setProxyHeaderOperationCallable()
public final OperationCallable<SetProxyHeaderTargetSslProxyRequest,Operation,Operation> setProxyHeaderOperationCallable()
Changes the ProxyHeaderType for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
SetProxyHeaderTargetSslProxyRequest request =
SetProxyHeaderTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxiesSetProxyHeaderRequestResource(
TargetSslProxiesSetProxyHeaderRequest.newBuilder().build())
.setTargetSslProxy("targetSslProxy-879314829")
.build();
OperationFuture<Operation, Operation> future =
targetSslProxiesClient.setProxyHeaderOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
OperationCallable<SetProxyHeaderTargetSslProxyRequest,Operation,Operation> |
setSslCertificatesAsync(SetSslCertificatesTargetSslProxyRequest request)
public final OperationFuture<Operation,Operation> setSslCertificatesAsync(SetSslCertificatesTargetSslProxyRequest request)
Changes SslCertificates for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
SetSslCertificatesTargetSslProxyRequest request =
SetSslCertificatesTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxiesSetSslCertificatesRequestResource(
TargetSslProxiesSetSslCertificatesRequest.newBuilder().build())
.setTargetSslProxy("targetSslProxy-879314829")
.build();
Operation response = targetSslProxiesClient.setSslCertificatesAsync(request).get();
}
Parameter | |
---|---|
Name | Description |
request | SetSslCertificatesTargetSslProxyRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
setSslCertificatesAsync(String project, String targetSslProxy, TargetSslProxiesSetSslCertificatesRequest targetSslProxiesSetSslCertificatesRequestResource)
public final OperationFuture<Operation,Operation> setSslCertificatesAsync(String project, String targetSslProxy, TargetSslProxiesSetSslCertificatesRequest targetSslProxiesSetSslCertificatesRequestResource)
Changes SslCertificates for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
String project = "project-309310695";
String targetSslProxy = "targetSslProxy-879314829";
TargetSslProxiesSetSslCertificatesRequest targetSslProxiesSetSslCertificatesRequestResource =
TargetSslProxiesSetSslCertificatesRequest.newBuilder().build();
Operation response =
targetSslProxiesClient
.setSslCertificatesAsync(
project, targetSslProxy, targetSslProxiesSetSslCertificatesRequestResource)
.get();
}
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
targetSslProxy | String Name of the TargetSslProxy resource whose SslCertificate resource is to be set. |
targetSslProxiesSetSslCertificatesRequestResource | TargetSslProxiesSetSslCertificatesRequest The body resource for this request |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
setSslCertificatesCallable()
public final UnaryCallable<SetSslCertificatesTargetSslProxyRequest,Operation> setSslCertificatesCallable()
Changes SslCertificates for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
SetSslCertificatesTargetSslProxyRequest request =
SetSslCertificatesTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxiesSetSslCertificatesRequestResource(
TargetSslProxiesSetSslCertificatesRequest.newBuilder().build())
.setTargetSslProxy("targetSslProxy-879314829")
.build();
ApiFuture<Operation> future =
targetSslProxiesClient.setSslCertificatesCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<SetSslCertificatesTargetSslProxyRequest,Operation> |
setSslCertificatesOperationCallable()
public final OperationCallable<SetSslCertificatesTargetSslProxyRequest,Operation,Operation> setSslCertificatesOperationCallable()
Changes SslCertificates for TargetSslProxy.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
SetSslCertificatesTargetSslProxyRequest request =
SetSslCertificatesTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setTargetSslProxiesSetSslCertificatesRequestResource(
TargetSslProxiesSetSslCertificatesRequest.newBuilder().build())
.setTargetSslProxy("targetSslProxy-879314829")
.build();
OperationFuture<Operation, Operation> future =
targetSslProxiesClient.setSslCertificatesOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
OperationCallable<SetSslCertificatesTargetSslProxyRequest,Operation,Operation> |
setSslPolicyAsync(SetSslPolicyTargetSslProxyRequest request)
public final OperationFuture<Operation,Operation> setSslPolicyAsync(SetSslPolicyTargetSslProxyRequest request)
Sets the SSL policy for TargetSslProxy. The SSL policy specifies the server-side support for SSL features. This affects connections between clients and the SSL proxy load balancer. They do not affect the connection between the load balancer and the backends.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
SetSslPolicyTargetSslProxyRequest request =
SetSslPolicyTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setSslPolicyReferenceResource(SslPolicyReference.newBuilder().build())
.setTargetSslProxy("targetSslProxy-879314829")
.build();
Operation response = targetSslProxiesClient.setSslPolicyAsync(request).get();
}
Parameter | |
---|---|
Name | Description |
request | SetSslPolicyTargetSslProxyRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
setSslPolicyAsync(String project, String targetSslProxy, SslPolicyReference sslPolicyReferenceResource)
public final OperationFuture<Operation,Operation> setSslPolicyAsync(String project, String targetSslProxy, SslPolicyReference sslPolicyReferenceResource)
Sets the SSL policy for TargetSslProxy. The SSL policy specifies the server-side support for SSL features. This affects connections between clients and the SSL proxy load balancer. They do not affect the connection between the load balancer and the backends.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
String project = "project-309310695";
String targetSslProxy = "targetSslProxy-879314829";
SslPolicyReference sslPolicyReferenceResource = SslPolicyReference.newBuilder().build();
Operation response =
targetSslProxiesClient
.setSslPolicyAsync(project, targetSslProxy, sslPolicyReferenceResource)
.get();
}
Parameters | |
---|---|
Name | Description |
project | String Project ID for this request. |
targetSslProxy | String Name of the TargetSslProxy resource whose SSL policy is to be set. The name must be 1-63 characters long, and comply with RFC1035. |
sslPolicyReferenceResource | SslPolicyReference The body resource for this request |
Returns | |
---|---|
Type | Description |
OperationFuture<Operation,Operation> |
setSslPolicyCallable()
public final UnaryCallable<SetSslPolicyTargetSslProxyRequest,Operation> setSslPolicyCallable()
Sets the SSL policy for TargetSslProxy. The SSL policy specifies the server-side support for SSL features. This affects connections between clients and the SSL proxy load balancer. They do not affect the connection between the load balancer and the backends.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
SetSslPolicyTargetSslProxyRequest request =
SetSslPolicyTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setSslPolicyReferenceResource(SslPolicyReference.newBuilder().build())
.setTargetSslProxy("targetSslProxy-879314829")
.build();
ApiFuture<Operation> future =
targetSslProxiesClient.setSslPolicyCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<SetSslPolicyTargetSslProxyRequest,Operation> |
setSslPolicyOperationCallable()
public final OperationCallable<SetSslPolicyTargetSslProxyRequest,Operation,Operation> setSslPolicyOperationCallable()
Sets the SSL policy for TargetSslProxy. The SSL policy specifies the server-side support for SSL features. This affects connections between clients and the SSL proxy load balancer. They do not affect the connection between the load balancer and the backends.
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 (TargetSslProxiesClient targetSslProxiesClient = TargetSslProxiesClient.create()) {
SetSslPolicyTargetSslProxyRequest request =
SetSslPolicyTargetSslProxyRequest.newBuilder()
.setProject("project-309310695")
.setRequestId("requestId693933066")
.setSslPolicyReferenceResource(SslPolicyReference.newBuilder().build())
.setTargetSslProxy("targetSslProxy-879314829")
.build();
OperationFuture<Operation, Operation> future =
targetSslProxiesClient.setSslPolicyOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
Returns | |
---|---|
Type | Description |
OperationCallable<SetSslPolicyTargetSslProxyRequest,Operation,Operation> |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()