Class InstanceGroupsClient

  • All Implemented Interfaces:
    com.google.api.gax.core.BackgroundResource, AutoCloseable

    @Generated("by gapic-generator-java")
    public class InstanceGroupsClient
    extends Object
    implements com.google.api.gax.core.BackgroundResource
    Service Description: The InstanceGroups 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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
       String project = "project-309310695";
       String zone = "zone3744684";
       String instanceGroup = "instanceGroup-1404696854";
       InstanceGroup response = instanceGroupsClient.get(project, zone, instanceGroup);
     }
     

    Note: close() needs to be called on the InstanceGroupsClient 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 InstanceGroupsSettings 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
     InstanceGroupsSettings instanceGroupsSettings =
         InstanceGroupsSettings.newBuilder()
             .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
             .build();
     InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create(instanceGroupsSettings);
     

    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
     InstanceGroupsSettings instanceGroupsSettings =
         InstanceGroupsSettings.newBuilder().setEndpoint(myEndpoint).build();
     InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create(instanceGroupsSettings);
     

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

    • Constructor Detail

      • InstanceGroupsClient

        protected InstanceGroupsClient​(InstanceGroupsSettings settings)
                                throws IOException
        Constructs an instance of InstanceGroupsClient, 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.
        Throws:
        IOException
    • Method Detail

      • create

        public static final InstanceGroupsClient create​(InstanceGroupsStub stub)
        Constructs an instance of InstanceGroupsClient, using the given stub for making calls. This is for advanced usage - prefer using create(InstanceGroupsSettings).
      • addInstancesAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> addInstancesAsync​(String project,
                                                                                                                 String zone,
                                                                                                                 String instanceGroup,
                                                                                                                 InstanceGroupsAddInstancesRequest instanceGroupsAddInstancesRequestResource)
        Adds a list of instances to the specified instance group. All of the instances in the instance group must be in the same network/subnetwork. Read Adding instances for more information.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String instanceGroup = "instanceGroup-1404696854";
           InstanceGroupsAddInstancesRequest instanceGroupsAddInstancesRequestResource =
               InstanceGroupsAddInstancesRequest.newBuilder().build();
           Operation response =
               instanceGroupsClient
                   .addInstancesAsync(
                       project, zone, instanceGroup, instanceGroupsAddInstancesRequestResource)
                   .get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone where the instance group is located.
        instanceGroup - The name of the instance group where you are adding instances.
        instanceGroupsAddInstancesRequestResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • addInstancesAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> addInstancesAsync​(AddInstancesInstanceGroupRequest request)
        Adds a list of instances to the specified instance group. All of the instances in the instance group must be in the same network/subnetwork. Read Adding instances for more information.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           AddInstancesInstanceGroupRequest request =
               AddInstancesInstanceGroupRequest.newBuilder()
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setInstanceGroupsAddInstancesRequestResource(
                       InstanceGroupsAddInstancesRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           Operation response = instanceGroupsClient.addInstancesAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • addInstancesOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<AddInstancesInstanceGroupRequest,​Operation,​Operation> addInstancesOperationCallable()
        Adds a list of instances to the specified instance group. All of the instances in the instance group must be in the same network/subnetwork. Read Adding instances for more information.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           AddInstancesInstanceGroupRequest request =
               AddInstancesInstanceGroupRequest.newBuilder()
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setInstanceGroupsAddInstancesRequestResource(
                       InstanceGroupsAddInstancesRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               instanceGroupsClient.addInstancesOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • addInstancesCallable

        public final com.google.api.gax.rpc.UnaryCallable<AddInstancesInstanceGroupRequest,​Operation> addInstancesCallable()
        Adds a list of instances to the specified instance group. All of the instances in the instance group must be in the same network/subnetwork. Read Adding instances for more information.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           AddInstancesInstanceGroupRequest request =
               AddInstancesInstanceGroupRequest.newBuilder()
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setInstanceGroupsAddInstancesRequestResource(
                       InstanceGroupsAddInstancesRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future = instanceGroupsClient.addInstancesCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • aggregatedList

        public final InstanceGroupsClient.AggregatedListPagedResponse aggregatedList​(String project)
        Retrieves the list of instance groups and sorts them by zone.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           String project = "project-309310695";
           for (Map.Entry<String, InstanceGroupsScopedList> element :
               instanceGroupsClient.aggregatedList(project).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        project - Project ID for this request.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • aggregatedList

        public final InstanceGroupsClient.AggregatedListPagedResponse aggregatedList​(AggregatedListInstanceGroupsRequest request)
        Retrieves the list of instance groups and sorts them by zone.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           AggregatedListInstanceGroupsRequest request =
               AggregatedListInstanceGroupsRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setIncludeAllScopes(true)
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .build();
           for (Map.Entry<String, InstanceGroupsScopedList> element :
               instanceGroupsClient.aggregatedList(request).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • aggregatedListPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<AggregatedListInstanceGroupsRequest,​InstanceGroupsClient.AggregatedListPagedResponse> aggregatedListPagedCallable()
        Retrieves the list of instance groups and sorts them by zone.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           AggregatedListInstanceGroupsRequest request =
               AggregatedListInstanceGroupsRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setIncludeAllScopes(true)
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .build();
           ApiFuture<Map.Entry<String, InstanceGroupsScopedList>> future =
               instanceGroupsClient.aggregatedListPagedCallable().futureCall(request);
           // Do something.
           for (Map.Entry<String, InstanceGroupsScopedList> element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • aggregatedListCallable

        public final com.google.api.gax.rpc.UnaryCallable<AggregatedListInstanceGroupsRequest,​InstanceGroupAggregatedList> aggregatedListCallable()
        Retrieves the list of instance groups and sorts them by zone.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           AggregatedListInstanceGroupsRequest request =
               AggregatedListInstanceGroupsRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setIncludeAllScopes(true)
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .build();
           while (true) {
             InstanceGroupAggregatedList response =
                 instanceGroupsClient.aggregatedListCallable().call(request);
             for (Map.Entry<String, InstanceGroupsScopedList> element : response.getItemsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • deleteAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> deleteAsync​(String project,
                                                                                                           String zone,
                                                                                                           String instanceGroup)
        Deletes the specified instance group. The instances in the group are not deleted. Note that instance group must not belong to a backend service. Read Deleting an instance group for more information.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String instanceGroup = "instanceGroup-1404696854";
           Operation response = instanceGroupsClient.deleteAsync(project, zone, instanceGroup).get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone where the instance group is located.
        instanceGroup - The name of the instance group to delete.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> deleteAsync​(DeleteInstanceGroupRequest request)
        Deletes the specified instance group. The instances in the group are not deleted. Note that instance group must not belong to a backend service. Read Deleting an instance group for more information.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           DeleteInstanceGroupRequest request =
               DeleteInstanceGroupRequest.newBuilder()
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           Operation response = instanceGroupsClient.deleteAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<DeleteInstanceGroupRequest,​Operation,​Operation> deleteOperationCallable()
        Deletes the specified instance group. The instances in the group are not deleted. Note that instance group must not belong to a backend service. Read Deleting an instance group for more information.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           DeleteInstanceGroupRequest request =
               DeleteInstanceGroupRequest.newBuilder()
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               instanceGroupsClient.deleteOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • deleteCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteInstanceGroupRequest,​Operation> deleteCallable()
        Deletes the specified instance group. The instances in the group are not deleted. Note that instance group must not belong to a backend service. Read Deleting an instance group for more information.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           DeleteInstanceGroupRequest request =
               DeleteInstanceGroupRequest.newBuilder()
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future = instanceGroupsClient.deleteCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • get

        public final InstanceGroup get​(String project,
                                       String zone,
                                       String instanceGroup)
        Returns the specified zonal instance group. Get a list of available zonal instance groups by making a list() request. For managed instance groups, use the instanceGroupManagers or regionInstanceGroupManagers methods instead.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String instanceGroup = "instanceGroup-1404696854";
           InstanceGroup response = instanceGroupsClient.get(project, zone, instanceGroup);
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone where the instance group is located.
        instanceGroup - The name of the instance group.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • get

        public final InstanceGroup get​(GetInstanceGroupRequest request)
        Returns the specified zonal instance group. Get a list of available zonal instance groups by making a list() request. For managed instance groups, use the instanceGroupManagers or regionInstanceGroupManagers methods instead.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           GetInstanceGroupRequest request =
               GetInstanceGroupRequest.newBuilder()
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setProject("project-309310695")
                   .setZone("zone3744684")
                   .build();
           InstanceGroup response = instanceGroupsClient.get(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetInstanceGroupRequest,​InstanceGroup> getCallable()
        Returns the specified zonal instance group. Get a list of available zonal instance groups by making a list() request. For managed instance groups, use the instanceGroupManagers or regionInstanceGroupManagers methods instead.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           GetInstanceGroupRequest request =
               GetInstanceGroupRequest.newBuilder()
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setProject("project-309310695")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<InstanceGroup> future = instanceGroupsClient.getCallable().futureCall(request);
           // Do something.
           InstanceGroup response = future.get();
         }
         
      • insertAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> insertAsync​(String project,
                                                                                                           String zone,
                                                                                                           InstanceGroup instanceGroupResource)
        Creates an instance group in the specified project using the parameters that are 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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           InstanceGroup instanceGroupResource = InstanceGroup.newBuilder().build();
           Operation response =
               instanceGroupsClient.insertAsync(project, zone, instanceGroupResource).get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone where you want to create the instance group.
        instanceGroupResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • insertAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> insertAsync​(InsertInstanceGroupRequest request)
        Creates an instance group in the specified project using the parameters that are 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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           InsertInstanceGroupRequest request =
               InsertInstanceGroupRequest.newBuilder()
                   .setInstanceGroupResource(InstanceGroup.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           Operation response = instanceGroupsClient.insertAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • insertOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<InsertInstanceGroupRequest,​Operation,​Operation> insertOperationCallable()
        Creates an instance group in the specified project using the parameters that are 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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           InsertInstanceGroupRequest request =
               InsertInstanceGroupRequest.newBuilder()
                   .setInstanceGroupResource(InstanceGroup.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               instanceGroupsClient.insertOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • insertCallable

        public final com.google.api.gax.rpc.UnaryCallable<InsertInstanceGroupRequest,​Operation> insertCallable()
        Creates an instance group in the specified project using the parameters that are 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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           InsertInstanceGroupRequest request =
               InsertInstanceGroupRequest.newBuilder()
                   .setInstanceGroupResource(InstanceGroup.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future = instanceGroupsClient.insertCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • list

        public final InstanceGroupsClient.ListPagedResponse list​(String project,
                                                                 String zone)
        Retrieves the list of zonal instance group resources contained within the specified zone. For managed instance groups, use the instanceGroupManagers or regionInstanceGroupManagers methods instead.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           for (InstanceGroup element : instanceGroupsClient.list(project, zone).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone where the instance group is located.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • list

        public final InstanceGroupsClient.ListPagedResponse list​(ListInstanceGroupsRequest request)
        Retrieves the list of zonal instance group resources contained within the specified zone. For managed instance groups, use the instanceGroupManagers or regionInstanceGroupManagers methods instead.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           ListInstanceGroupsRequest request =
               ListInstanceGroupsRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .setZone("zone3744684")
                   .build();
           for (InstanceGroup element : instanceGroupsClient.list(request).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListInstanceGroupsRequest,​InstanceGroupsClient.ListPagedResponse> listPagedCallable()
        Retrieves the list of zonal instance group resources contained within the specified zone. For managed instance groups, use the instanceGroupManagers or regionInstanceGroupManagers methods instead.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           ListInstanceGroupsRequest request =
               ListInstanceGroupsRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .setZone("zone3744684")
                   .build();
           ApiFuture<InstanceGroup> future =
               instanceGroupsClient.listPagedCallable().futureCall(request);
           // Do something.
           for (InstanceGroup element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListInstanceGroupsRequest,​InstanceGroupList> listCallable()
        Retrieves the list of zonal instance group resources contained within the specified zone. For managed instance groups, use the instanceGroupManagers or regionInstanceGroupManagers methods instead.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           ListInstanceGroupsRequest request =
               ListInstanceGroupsRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .setZone("zone3744684")
                   .build();
           while (true) {
             InstanceGroupList response = instanceGroupsClient.listCallable().call(request);
             for (InstanceGroup element : response.getItemsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • listInstances

        public final InstanceGroupsClient.ListInstancesPagedResponse listInstances​(String project,
                                                                                   String zone,
                                                                                   String instanceGroup,
                                                                                   InstanceGroupsListInstancesRequest instanceGroupsListInstancesRequestResource)
        Lists the instances in the specified instance group. The orderBy query parameter is not supported. The filter query parameter is supported, but only for expressions that use `eq` (equal) or `ne` (not equal) operators.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String instanceGroup = "instanceGroup-1404696854";
           InstanceGroupsListInstancesRequest instanceGroupsListInstancesRequestResource =
               InstanceGroupsListInstancesRequest.newBuilder().build();
           for (InstanceWithNamedPorts element :
               instanceGroupsClient
                   .listInstances(
                       project, zone, instanceGroup, instanceGroupsListInstancesRequestResource)
                   .iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone where the instance group is located.
        instanceGroup - The name of the instance group from which you want to generate a list of included instances.
        instanceGroupsListInstancesRequestResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listInstances

        public final InstanceGroupsClient.ListInstancesPagedResponse listInstances​(ListInstancesInstanceGroupsRequest request)
        Lists the instances in the specified instance group. The orderBy query parameter is not supported. The filter query parameter is supported, but only for expressions that use `eq` (equal) or `ne` (not equal) operators.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           ListInstancesInstanceGroupsRequest request =
               ListInstancesInstanceGroupsRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setInstanceGroupsListInstancesRequestResource(
                       InstanceGroupsListInstancesRequest.newBuilder().build())
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .setZone("zone3744684")
                   .build();
           for (InstanceWithNamedPorts element :
               instanceGroupsClient.listInstances(request).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listInstancesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListInstancesInstanceGroupsRequest,​InstanceGroupsClient.ListInstancesPagedResponse> listInstancesPagedCallable()
        Lists the instances in the specified instance group. The orderBy query parameter is not supported. The filter query parameter is supported, but only for expressions that use `eq` (equal) or `ne` (not equal) operators.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           ListInstancesInstanceGroupsRequest request =
               ListInstancesInstanceGroupsRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setInstanceGroupsListInstancesRequestResource(
                       InstanceGroupsListInstancesRequest.newBuilder().build())
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .setZone("zone3744684")
                   .build();
           ApiFuture<InstanceWithNamedPorts> future =
               instanceGroupsClient.listInstancesPagedCallable().futureCall(request);
           // Do something.
           for (InstanceWithNamedPorts element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listInstancesCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListInstancesInstanceGroupsRequest,​InstanceGroupsListInstances> listInstancesCallable()
        Lists the instances in the specified instance group. The orderBy query parameter is not supported. The filter query parameter is supported, but only for expressions that use `eq` (equal) or `ne` (not equal) operators.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           ListInstancesInstanceGroupsRequest request =
               ListInstancesInstanceGroupsRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setInstanceGroupsListInstancesRequestResource(
                       InstanceGroupsListInstancesRequest.newBuilder().build())
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .setZone("zone3744684")
                   .build();
           while (true) {
             InstanceGroupsListInstances response =
                 instanceGroupsClient.listInstancesCallable().call(request);
             for (InstanceWithNamedPorts element : response.getItemsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • removeInstancesAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> removeInstancesAsync​(String project,
                                                                                                                    String zone,
                                                                                                                    String instanceGroup,
                                                                                                                    InstanceGroupsRemoveInstancesRequest instanceGroupsRemoveInstancesRequestResource)
        Removes one or more instances from the specified instance group, but does not delete those instances. If the group is part of a backend service that has enabled connection draining, it can take up to 60 seconds after the connection draining duration before the VM instance is removed or deleted.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String instanceGroup = "instanceGroup-1404696854";
           InstanceGroupsRemoveInstancesRequest instanceGroupsRemoveInstancesRequestResource =
               InstanceGroupsRemoveInstancesRequest.newBuilder().build();
           Operation response =
               instanceGroupsClient
                   .removeInstancesAsync(
                       project, zone, instanceGroup, instanceGroupsRemoveInstancesRequestResource)
                   .get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone where the instance group is located.
        instanceGroup - The name of the instance group where the specified instances will be removed.
        instanceGroupsRemoveInstancesRequestResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • removeInstancesAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> removeInstancesAsync​(RemoveInstancesInstanceGroupRequest request)
        Removes one or more instances from the specified instance group, but does not delete those instances. If the group is part of a backend service that has enabled connection draining, it can take up to 60 seconds after the connection draining duration before the VM instance is removed or deleted.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           RemoveInstancesInstanceGroupRequest request =
               RemoveInstancesInstanceGroupRequest.newBuilder()
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setInstanceGroupsRemoveInstancesRequestResource(
                       InstanceGroupsRemoveInstancesRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           Operation response = instanceGroupsClient.removeInstancesAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • removeInstancesOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<RemoveInstancesInstanceGroupRequest,​Operation,​Operation> removeInstancesOperationCallable()
        Removes one or more instances from the specified instance group, but does not delete those instances. If the group is part of a backend service that has enabled connection draining, it can take up to 60 seconds after the connection draining duration before the VM instance is removed or deleted.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           RemoveInstancesInstanceGroupRequest request =
               RemoveInstancesInstanceGroupRequest.newBuilder()
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setInstanceGroupsRemoveInstancesRequestResource(
                       InstanceGroupsRemoveInstancesRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               instanceGroupsClient.removeInstancesOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • removeInstancesCallable

        public final com.google.api.gax.rpc.UnaryCallable<RemoveInstancesInstanceGroupRequest,​Operation> removeInstancesCallable()
        Removes one or more instances from the specified instance group, but does not delete those instances. If the group is part of a backend service that has enabled connection draining, it can take up to 60 seconds after the connection draining duration before the VM instance is removed or deleted.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           RemoveInstancesInstanceGroupRequest request =
               RemoveInstancesInstanceGroupRequest.newBuilder()
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setInstanceGroupsRemoveInstancesRequestResource(
                       InstanceGroupsRemoveInstancesRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future =
               instanceGroupsClient.removeInstancesCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • setNamedPortsAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> setNamedPortsAsync​(String project,
                                                                                                                  String zone,
                                                                                                                  String instanceGroup,
                                                                                                                  InstanceGroupsSetNamedPortsRequest instanceGroupsSetNamedPortsRequestResource)
        Sets the named ports for the specified instance group.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           String project = "project-309310695";
           String zone = "zone3744684";
           String instanceGroup = "instanceGroup-1404696854";
           InstanceGroupsSetNamedPortsRequest instanceGroupsSetNamedPortsRequestResource =
               InstanceGroupsSetNamedPortsRequest.newBuilder().build();
           Operation response =
               instanceGroupsClient
                   .setNamedPortsAsync(
                       project, zone, instanceGroup, instanceGroupsSetNamedPortsRequestResource)
                   .get();
         }
         
        Parameters:
        project - Project ID for this request.
        zone - The name of the zone where the instance group is located.
        instanceGroup - The name of the instance group where the named ports are updated.
        instanceGroupsSetNamedPortsRequestResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • setNamedPortsAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> setNamedPortsAsync​(SetNamedPortsInstanceGroupRequest request)
        Sets the named ports for the specified instance group.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           SetNamedPortsInstanceGroupRequest request =
               SetNamedPortsInstanceGroupRequest.newBuilder()
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setInstanceGroupsSetNamedPortsRequestResource(
                       InstanceGroupsSetNamedPortsRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           Operation response = instanceGroupsClient.setNamedPortsAsync(request).get();
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • setNamedPortsOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<SetNamedPortsInstanceGroupRequest,​Operation,​Operation> setNamedPortsOperationCallable()
        Sets the named ports for the specified instance group.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           SetNamedPortsInstanceGroupRequest request =
               SetNamedPortsInstanceGroupRequest.newBuilder()
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setInstanceGroupsSetNamedPortsRequestResource(
                       InstanceGroupsSetNamedPortsRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           OperationFuture<Operation, Operation> future =
               instanceGroupsClient.setNamedPortsOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • setNamedPortsCallable

        public final com.google.api.gax.rpc.UnaryCallable<SetNamedPortsInstanceGroupRequest,​Operation> setNamedPortsCallable()
        Sets the named ports for the specified instance group.

        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 (InstanceGroupsClient instanceGroupsClient = InstanceGroupsClient.create()) {
           SetNamedPortsInstanceGroupRequest request =
               SetNamedPortsInstanceGroupRequest.newBuilder()
                   .setInstanceGroup("instanceGroup-1404696854")
                   .setInstanceGroupsSetNamedPortsRequestResource(
                       InstanceGroupsSetNamedPortsRequest.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setZone("zone3744684")
                   .build();
           ApiFuture<Operation> future =
               instanceGroupsClient.setNamedPortsCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • shutdown

        public void shutdown()
        Specified by:
        shutdown in interface com.google.api.gax.core.BackgroundResource
      • isShutdown

        public boolean isShutdown()
        Specified by:
        isShutdown in interface com.google.api.gax.core.BackgroundResource
      • isTerminated

        public boolean isTerminated()
        Specified by:
        isTerminated in interface com.google.api.gax.core.BackgroundResource
      • shutdownNow

        public void shutdownNow()
        Specified by:
        shutdownNow in interface com.google.api.gax.core.BackgroundResource