Class TargetSslProxiesClient (1.39.0)

public class TargetSslProxiesClient implements BackgroundResource

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:

  1. 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.
  2. 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.
  3. 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.

Inheritance

java.lang.Object > TargetSslProxiesClient

Implements

BackgroundResource

Static Methods

create()

public static final TargetSslProxiesClient create()

Constructs an instance of TargetSslProxiesClient with default settings.

Returns
TypeDescription
TargetSslProxiesClient
Exceptions
TypeDescription
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
NameDescription
settingsTargetSslProxiesSettings
Returns
TypeDescription
TargetSslProxiesClient
Exceptions
TypeDescription
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
NameDescription
stubTargetSslProxiesStub
Returns
TypeDescription
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
NameDescription
settingsTargetSslProxiesSettings

TargetSslProxiesClient(TargetSslProxiesStub stub)

protected TargetSslProxiesClient(TargetSslProxiesStub stub)
Parameter
NameDescription
stubTargetSslProxiesStub

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()

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
NameDescription
requestDeleteTargetSslProxyRequest

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

Returns
TypeDescription
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
NameDescription
projectString

Project ID for this request.

targetSslProxyString

Name of the TargetSslProxy resource to delete.

Returns
TypeDescription
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
TypeDescription
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
TypeDescription
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
NameDescription
requestGetTargetSslProxyRequest

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

Returns
TypeDescription
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
NameDescription
projectString

Project ID for this request.

targetSslProxyString

Name of the TargetSslProxy resource to return.

Returns
TypeDescription
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
TypeDescription
UnaryCallable<GetTargetSslProxyRequest,TargetSslProxy>

getSettings()

public final TargetSslProxiesSettings getSettings()
Returns
TypeDescription
TargetSslProxiesSettings

getStub()

public TargetSslProxiesStub getStub()
Returns
TypeDescription
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
NameDescription
requestInsertTargetSslProxyRequest

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

Returns
TypeDescription
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
NameDescription
projectString

Project ID for this request.

targetSslProxyResourceTargetSslProxy

The body resource for this request

Returns
TypeDescription
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
TypeDescription
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
TypeDescription
OperationCallable<InsertTargetSslProxyRequest,Operation,Operation>

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
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
NameDescription
requestListTargetSslProxiesRequest

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

Returns
TypeDescription
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
NameDescription
projectString

Project ID for this request.

Returns
TypeDescription
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
TypeDescription
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
TypeDescription
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
NameDescription
requestSetBackendServiceTargetSslProxyRequest

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

Returns
TypeDescription
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
NameDescription
projectString

Project ID for this request.

targetSslProxyString

Name of the TargetSslProxy resource whose BackendService resource is to be set.

targetSslProxiesSetBackendServiceRequestResourceTargetSslProxiesSetBackendServiceRequest

The body resource for this request

Returns
TypeDescription
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
TypeDescription
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
TypeDescription
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
NameDescription
requestSetCertificateMapTargetSslProxyRequest

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

Returns
TypeDescription
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
NameDescription
projectString

Project ID for this request.

targetSslProxyString

Name of the TargetSslProxy resource whose CertificateMap is to be set. The name must be 1-63 characters long, and comply with RFC1035.

targetSslProxiesSetCertificateMapRequestResourceTargetSslProxiesSetCertificateMapRequest

The body resource for this request

Returns
TypeDescription
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
TypeDescription
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
TypeDescription
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
NameDescription
requestSetProxyHeaderTargetSslProxyRequest

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

Returns
TypeDescription
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
NameDescription
projectString

Project ID for this request.

targetSslProxyString

Name of the TargetSslProxy resource whose ProxyHeader is to be set.

targetSslProxiesSetProxyHeaderRequestResourceTargetSslProxiesSetProxyHeaderRequest

The body resource for this request

Returns
TypeDescription
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
TypeDescription
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
TypeDescription
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
NameDescription
requestSetSslCertificatesTargetSslProxyRequest

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

Returns
TypeDescription
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
NameDescription
projectString

Project ID for this request.

targetSslProxyString

Name of the TargetSslProxy resource whose SslCertificate resource is to be set.

targetSslProxiesSetSslCertificatesRequestResourceTargetSslProxiesSetSslCertificatesRequest

The body resource for this request

Returns
TypeDescription
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
TypeDescription
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
TypeDescription
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
NameDescription
requestSetSslPolicyTargetSslProxyRequest

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

Returns
TypeDescription
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
NameDescription
projectString

Project ID for this request.

targetSslProxyString

Name of the TargetSslProxy resource whose SSL policy is to be set. The name must be 1-63 characters long, and comply with RFC1035.

sslPolicyReferenceResourceSslPolicyReference

The body resource for this request

Returns
TypeDescription
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
TypeDescription
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
TypeDescription
OperationCallable<SetSslPolicyTargetSslProxyRequest,Operation,Operation>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()