Class InstanceGroupManagerResizeRequestsClient (1.53.0)

GitHub RepositoryProduct Reference

Service Description: The InstanceGroupManagerResizeRequests 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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   String project = "project-309310695";
   String zone = "zone3744684";
   String instanceGroupManager = "instanceGroupManager-388242077";
   String resizeRequest = "resizeRequest-1656358085";
   InstanceGroupManagerResizeRequest response =
       instanceGroupManagerResizeRequestsClient.get(
           project, zone, instanceGroupManager, resizeRequest);
 }
 

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

Methods
Method Description Method Variants

Cancel

Cancels the specified resize request and removes it from the queue. Cancelled resize request does no longer wait for the resources to be provisioned. Cancel is only possible for requests that are accepted in the queue.

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

  • cancelAsync(CancelInstanceGroupManagerResizeRequestRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • cancelAsync(String project, String zone, String instanceGroupManager, String resizeRequest)

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

  • cancelOperationCallable()

  • cancelCallable()

Delete

Deletes the specified, inactive resize request. Requests that are still active cannot be deleted. Deleting request does not delete instances that were provisioned previously.

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

  • deleteAsync(DeleteInstanceGroupManagerResizeRequestRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • deleteAsync(String project, String zone, String instanceGroupManager, String resizeRequest)

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

  • deleteOperationCallable()

  • deleteCallable()

Get

Returns all of the details about the specified resize request.

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

  • get(GetInstanceGroupManagerResizeRequestRequest request)

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

  • get(String project, String zone, String instanceGroupManager, String resizeRequest)

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

  • getCallable()

Insert

Creates a new resize request that starts provisioning VMs immediately or queues VM creation.

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

  • insertAsync(InsertInstanceGroupManagerResizeRequestRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • insertAsync(String project, String zone, String instanceGroupManager, InstanceGroupManagerResizeRequest instanceGroupManagerResizeRequestResource)

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

  • insertOperationCallable()

  • insertCallable()

List

Retrieves a list of resize requests that are contained in the managed instance group.

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

  • list(ListInstanceGroupManagerResizeRequestsRequest request)

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

  • list(String project, String zone, String instanceGroupManager)

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

  • listPagedCallable()

  • listCallable()

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 InstanceGroupManagerResizeRequestsSettings 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
 InstanceGroupManagerResizeRequestsSettings instanceGroupManagerResizeRequestsSettings =
     InstanceGroupManagerResizeRequestsSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create(instanceGroupManagerResizeRequestsSettings);
 

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
 InstanceGroupManagerResizeRequestsSettings instanceGroupManagerResizeRequestsSettings =
     InstanceGroupManagerResizeRequestsSettings.newBuilder().setEndpoint(myEndpoint).build();
 InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create(instanceGroupManagerResizeRequestsSettings);
 

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

Inheritance

java.lang.Object > InstanceGroupManagerResizeRequestsClient

Static Methods

create()

public static final InstanceGroupManagerResizeRequestsClient create()

Constructs an instance of InstanceGroupManagerResizeRequestsClient with default settings.

Returns
Type Description
InstanceGroupManagerResizeRequestsClient
Exceptions
Type Description
IOException

create(InstanceGroupManagerResizeRequestsSettings settings)

public static final InstanceGroupManagerResizeRequestsClient create(InstanceGroupManagerResizeRequestsSettings settings)

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

Parameter
Name Description
settings InstanceGroupManagerResizeRequestsSettings
Returns
Type Description
InstanceGroupManagerResizeRequestsClient
Exceptions
Type Description
IOException

create(InstanceGroupManagerResizeRequestsStub stub)

public static final InstanceGroupManagerResizeRequestsClient create(InstanceGroupManagerResizeRequestsStub stub)

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

Parameter
Name Description
stub InstanceGroupManagerResizeRequestsStub
Returns
Type Description
InstanceGroupManagerResizeRequestsClient

Constructors

InstanceGroupManagerResizeRequestsClient(InstanceGroupManagerResizeRequestsSettings settings)

protected InstanceGroupManagerResizeRequestsClient(InstanceGroupManagerResizeRequestsSettings settings)

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

Parameter
Name Description
settings InstanceGroupManagerResizeRequestsSettings

InstanceGroupManagerResizeRequestsClient(InstanceGroupManagerResizeRequestsStub stub)

protected InstanceGroupManagerResizeRequestsClient(InstanceGroupManagerResizeRequestsStub stub)
Parameter
Name Description
stub InstanceGroupManagerResizeRequestsStub

Methods

awaitTermination(long duration, TimeUnit unit)

public boolean awaitTermination(long duration, TimeUnit unit)
Parameters
Name Description
duration long
unit TimeUnit
Returns
Type Description
boolean
Exceptions
Type Description
InterruptedException

cancelAsync(CancelInstanceGroupManagerResizeRequestRequest request)

public final OperationFuture<Operation,Operation> cancelAsync(CancelInstanceGroupManagerResizeRequestRequest request)

Cancels the specified resize request and removes it from the queue. Cancelled resize request does no longer wait for the resources to be provisioned. Cancel is only possible for requests that are accepted in the queue.

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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   CancelInstanceGroupManagerResizeRequestRequest request =
       CancelInstanceGroupManagerResizeRequestRequest.newBuilder()
           .setInstanceGroupManager("instanceGroupManager-388242077")
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .setResizeRequest("resizeRequest-1656358085")
           .setZone("zone3744684")
           .build();
   Operation response = instanceGroupManagerResizeRequestsClient.cancelAsync(request).get();
 }
 
Parameter
Name Description
request CancelInstanceGroupManagerResizeRequestRequest

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

Returns
Type Description
OperationFuture<Operation,Operation>

cancelAsync(String project, String zone, String instanceGroupManager, String resizeRequest)

public final OperationFuture<Operation,Operation> cancelAsync(String project, String zone, String instanceGroupManager, String resizeRequest)

Cancels the specified resize request and removes it from the queue. Cancelled resize request does no longer wait for the resources to be provisioned. Cancel is only possible for requests that are accepted in the queue.

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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   String project = "project-309310695";
   String zone = "zone3744684";
   String instanceGroupManager = "instanceGroupManager-388242077";
   String resizeRequest = "resizeRequest-1656358085";
   Operation response =
       instanceGroupManagerResizeRequestsClient
           .cancelAsync(project, zone, instanceGroupManager, resizeRequest)
           .get();
 }
 
Parameters
Name Description
project String

Project ID for this request.

zone String

The name of the zone where the managed instance group is located. The name should conform to RFC1035.

instanceGroupManager String

The name of the managed instance group. The name should conform to RFC1035 or be a resource ID.

resizeRequest String

The name of the resize request to cancel. The name should conform to RFC1035 or be a resource ID.

Returns
Type Description
OperationFuture<Operation,Operation>

cancelCallable()

public final UnaryCallable<CancelInstanceGroupManagerResizeRequestRequest,Operation> cancelCallable()

Cancels the specified resize request and removes it from the queue. Cancelled resize request does no longer wait for the resources to be provisioned. Cancel is only possible for requests that are accepted in the queue.

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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   CancelInstanceGroupManagerResizeRequestRequest request =
       CancelInstanceGroupManagerResizeRequestRequest.newBuilder()
           .setInstanceGroupManager("instanceGroupManager-388242077")
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .setResizeRequest("resizeRequest-1656358085")
           .setZone("zone3744684")
           .build();
   ApiFuture<Operation> future =
       instanceGroupManagerResizeRequestsClient.cancelCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
Type Description
UnaryCallable<CancelInstanceGroupManagerResizeRequestRequest,Operation>

cancelOperationCallable()

public final OperationCallable<CancelInstanceGroupManagerResizeRequestRequest,Operation,Operation> cancelOperationCallable()

Cancels the specified resize request and removes it from the queue. Cancelled resize request does no longer wait for the resources to be provisioned. Cancel is only possible for requests that are accepted in the queue.

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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   CancelInstanceGroupManagerResizeRequestRequest request =
       CancelInstanceGroupManagerResizeRequestRequest.newBuilder()
           .setInstanceGroupManager("instanceGroupManager-388242077")
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .setResizeRequest("resizeRequest-1656358085")
           .setZone("zone3744684")
           .build();
   OperationFuture<Operation, Operation> future =
       instanceGroupManagerResizeRequestsClient.cancelOperationCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
Type Description
OperationCallable<CancelInstanceGroupManagerResizeRequestRequest,Operation,Operation>

close()

public final void close()

deleteAsync(DeleteInstanceGroupManagerResizeRequestRequest request)

public final OperationFuture<Operation,Operation> deleteAsync(DeleteInstanceGroupManagerResizeRequestRequest request)

Deletes the specified, inactive resize request. Requests that are still active cannot be deleted. Deleting request does not delete instances that were provisioned previously.

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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   DeleteInstanceGroupManagerResizeRequestRequest request =
       DeleteInstanceGroupManagerResizeRequestRequest.newBuilder()
           .setInstanceGroupManager("instanceGroupManager-388242077")
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .setResizeRequest("resizeRequest-1656358085")
           .setZone("zone3744684")
           .build();
   Operation response = instanceGroupManagerResizeRequestsClient.deleteAsync(request).get();
 }
 
Parameter
Name Description
request DeleteInstanceGroupManagerResizeRequestRequest

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

Returns
Type Description
OperationFuture<Operation,Operation>

deleteAsync(String project, String zone, String instanceGroupManager, String resizeRequest)

public final OperationFuture<Operation,Operation> deleteAsync(String project, String zone, String instanceGroupManager, String resizeRequest)

Deletes the specified, inactive resize request. Requests that are still active cannot be deleted. Deleting request does not delete instances that were provisioned previously.

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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   String project = "project-309310695";
   String zone = "zone3744684";
   String instanceGroupManager = "instanceGroupManager-388242077";
   String resizeRequest = "resizeRequest-1656358085";
   Operation response =
       instanceGroupManagerResizeRequestsClient
           .deleteAsync(project, zone, instanceGroupManager, resizeRequest)
           .get();
 }
 
Parameters
Name Description
project String

Project ID for this request.

zone String

The name of the zone where the managed instance group is located. The name should conform to RFC1035.

instanceGroupManager String

The name of the managed instance group. The name should conform to RFC1035 or be a resource ID.

resizeRequest String

The name of the resize request to delete. The name should conform to RFC1035 or be a resource ID.

Returns
Type Description
OperationFuture<Operation,Operation>

deleteCallable()

public final UnaryCallable<DeleteInstanceGroupManagerResizeRequestRequest,Operation> deleteCallable()

Deletes the specified, inactive resize request. Requests that are still active cannot be deleted. Deleting request does not delete instances that were provisioned previously.

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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   DeleteInstanceGroupManagerResizeRequestRequest request =
       DeleteInstanceGroupManagerResizeRequestRequest.newBuilder()
           .setInstanceGroupManager("instanceGroupManager-388242077")
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .setResizeRequest("resizeRequest-1656358085")
           .setZone("zone3744684")
           .build();
   ApiFuture<Operation> future =
       instanceGroupManagerResizeRequestsClient.deleteCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
Type Description
UnaryCallable<DeleteInstanceGroupManagerResizeRequestRequest,Operation>

deleteOperationCallable()

public final OperationCallable<DeleteInstanceGroupManagerResizeRequestRequest,Operation,Operation> deleteOperationCallable()

Deletes the specified, inactive resize request. Requests that are still active cannot be deleted. Deleting request does not delete instances that were provisioned previously.

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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   DeleteInstanceGroupManagerResizeRequestRequest request =
       DeleteInstanceGroupManagerResizeRequestRequest.newBuilder()
           .setInstanceGroupManager("instanceGroupManager-388242077")
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .setResizeRequest("resizeRequest-1656358085")
           .setZone("zone3744684")
           .build();
   OperationFuture<Operation, Operation> future =
       instanceGroupManagerResizeRequestsClient.deleteOperationCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
Type Description
OperationCallable<DeleteInstanceGroupManagerResizeRequestRequest,Operation,Operation>

get(GetInstanceGroupManagerResizeRequestRequest request)

public final InstanceGroupManagerResizeRequest get(GetInstanceGroupManagerResizeRequestRequest request)

Returns all of the details about the specified resize 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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   GetInstanceGroupManagerResizeRequestRequest request =
       GetInstanceGroupManagerResizeRequestRequest.newBuilder()
           .setInstanceGroupManager("instanceGroupManager-388242077")
           .setProject("project-309310695")
           .setResizeRequest("resizeRequest-1656358085")
           .setZone("zone3744684")
           .build();
   InstanceGroupManagerResizeRequest response =
       instanceGroupManagerResizeRequestsClient.get(request);
 }
 
Parameter
Name Description
request GetInstanceGroupManagerResizeRequestRequest

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

Returns
Type Description
InstanceGroupManagerResizeRequest

get(String project, String zone, String instanceGroupManager, String resizeRequest)

public final InstanceGroupManagerResizeRequest get(String project, String zone, String instanceGroupManager, String resizeRequest)

Returns all of the details about the specified resize 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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   String project = "project-309310695";
   String zone = "zone3744684";
   String instanceGroupManager = "instanceGroupManager-388242077";
   String resizeRequest = "resizeRequest-1656358085";
   InstanceGroupManagerResizeRequest response =
       instanceGroupManagerResizeRequestsClient.get(
           project, zone, instanceGroupManager, resizeRequest);
 }
 
Parameters
Name Description
project String

Project ID for this request.

zone String

Name of the href="/compute/docs/regions-zones/#available">zone scoping this request. Name should conform to RFC1035.

instanceGroupManager String

The name of the managed instance group. Name should conform to RFC1035 or be a resource ID.

resizeRequest String

The name of the resize request. Name should conform to RFC1035 or be a resource ID.

Returns
Type Description
InstanceGroupManagerResizeRequest

getCallable()

public final UnaryCallable<GetInstanceGroupManagerResizeRequestRequest,InstanceGroupManagerResizeRequest> getCallable()

Returns all of the details about the specified resize 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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   GetInstanceGroupManagerResizeRequestRequest request =
       GetInstanceGroupManagerResizeRequestRequest.newBuilder()
           .setInstanceGroupManager("instanceGroupManager-388242077")
           .setProject("project-309310695")
           .setResizeRequest("resizeRequest-1656358085")
           .setZone("zone3744684")
           .build();
   ApiFuture<InstanceGroupManagerResizeRequest> future =
       instanceGroupManagerResizeRequestsClient.getCallable().futureCall(request);
   // Do something.
   InstanceGroupManagerResizeRequest response = future.get();
 }
 
Returns
Type Description
UnaryCallable<GetInstanceGroupManagerResizeRequestRequest,InstanceGroupManagerResizeRequest>

getSettings()

public final InstanceGroupManagerResizeRequestsSettings getSettings()
Returns
Type Description
InstanceGroupManagerResizeRequestsSettings

getStub()

public InstanceGroupManagerResizeRequestsStub getStub()
Returns
Type Description
InstanceGroupManagerResizeRequestsStub

insertAsync(InsertInstanceGroupManagerResizeRequestRequest request)

public final OperationFuture<Operation,Operation> insertAsync(InsertInstanceGroupManagerResizeRequestRequest request)

Creates a new resize request that starts provisioning VMs immediately or queues VM creation.

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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   InsertInstanceGroupManagerResizeRequestRequest request =
       InsertInstanceGroupManagerResizeRequestRequest.newBuilder()
           .setInstanceGroupManager("instanceGroupManager-388242077")
           .setInstanceGroupManagerResizeRequestResource(
               InstanceGroupManagerResizeRequest.newBuilder().build())
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .setZone("zone3744684")
           .build();
   Operation response = instanceGroupManagerResizeRequestsClient.insertAsync(request).get();
 }
 
Parameter
Name Description
request InsertInstanceGroupManagerResizeRequestRequest

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

Returns
Type Description
OperationFuture<Operation,Operation>

insertAsync(String project, String zone, String instanceGroupManager, InstanceGroupManagerResizeRequest instanceGroupManagerResizeRequestResource)

public final OperationFuture<Operation,Operation> insertAsync(String project, String zone, String instanceGroupManager, InstanceGroupManagerResizeRequest instanceGroupManagerResizeRequestResource)

Creates a new resize request that starts provisioning VMs immediately or queues VM creation.

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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   String project = "project-309310695";
   String zone = "zone3744684";
   String instanceGroupManager = "instanceGroupManager-388242077";
   InstanceGroupManagerResizeRequest instanceGroupManagerResizeRequestResource =
       InstanceGroupManagerResizeRequest.newBuilder().build();
   Operation response =
       instanceGroupManagerResizeRequestsClient
           .insertAsync(
               project, zone, instanceGroupManager, instanceGroupManagerResizeRequestResource)
           .get();
 }
 
Parameters
Name Description
project String

Project ID for this request.

zone String

The name of the zone where the managed instance group is located and where the resize request will be created. Name should conform to RFC1035.

instanceGroupManager String

The name of the managed instance group to which the resize request will be added. Name should conform to RFC1035 or be a resource ID.

instanceGroupManagerResizeRequestResource InstanceGroupManagerResizeRequest

The body resource for this request

Returns
Type Description
OperationFuture<Operation,Operation>

insertCallable()

public final UnaryCallable<InsertInstanceGroupManagerResizeRequestRequest,Operation> insertCallable()

Creates a new resize request that starts provisioning VMs immediately or queues VM creation.

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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   InsertInstanceGroupManagerResizeRequestRequest request =
       InsertInstanceGroupManagerResizeRequestRequest.newBuilder()
           .setInstanceGroupManager("instanceGroupManager-388242077")
           .setInstanceGroupManagerResizeRequestResource(
               InstanceGroupManagerResizeRequest.newBuilder().build())
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .setZone("zone3744684")
           .build();
   ApiFuture<Operation> future =
       instanceGroupManagerResizeRequestsClient.insertCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
Type Description
UnaryCallable<InsertInstanceGroupManagerResizeRequestRequest,Operation>

insertOperationCallable()

public final OperationCallable<InsertInstanceGroupManagerResizeRequestRequest,Operation,Operation> insertOperationCallable()

Creates a new resize request that starts provisioning VMs immediately or queues VM creation.

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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   InsertInstanceGroupManagerResizeRequestRequest request =
       InsertInstanceGroupManagerResizeRequestRequest.newBuilder()
           .setInstanceGroupManager("instanceGroupManager-388242077")
           .setInstanceGroupManagerResizeRequestResource(
               InstanceGroupManagerResizeRequest.newBuilder().build())
           .setProject("project-309310695")
           .setRequestId("requestId693933066")
           .setZone("zone3744684")
           .build();
   OperationFuture<Operation, Operation> future =
       instanceGroupManagerResizeRequestsClient.insertOperationCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
Type Description
OperationCallable<InsertInstanceGroupManagerResizeRequestRequest,Operation,Operation>

isShutdown()

public boolean isShutdown()
Returns
Type Description
boolean

isTerminated()

public boolean isTerminated()
Returns
Type Description
boolean

list(ListInstanceGroupManagerResizeRequestsRequest request)

public final InstanceGroupManagerResizeRequestsClient.ListPagedResponse list(ListInstanceGroupManagerResizeRequestsRequest request)

Retrieves a list of resize requests that are contained in the managed 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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   ListInstanceGroupManagerResizeRequestsRequest request =
       ListInstanceGroupManagerResizeRequestsRequest.newBuilder()
           .setFilter("filter-1274492040")
           .setInstanceGroupManager("instanceGroupManager-388242077")
           .setMaxResults(1128457243)
           .setOrderBy("orderBy-1207110587")
           .setPageToken("pageToken873572522")
           .setProject("project-309310695")
           .setReturnPartialSuccess(true)
           .setZone("zone3744684")
           .build();
   for (InstanceGroupManagerResizeRequest element :
       instanceGroupManagerResizeRequestsClient.list(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
Name Description
request ListInstanceGroupManagerResizeRequestsRequest

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

Returns
Type Description
InstanceGroupManagerResizeRequestsClient.ListPagedResponse

list(String project, String zone, String instanceGroupManager)

public final InstanceGroupManagerResizeRequestsClient.ListPagedResponse list(String project, String zone, String instanceGroupManager)

Retrieves a list of resize requests that are contained in the managed 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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   String project = "project-309310695";
   String zone = "zone3744684";
   String instanceGroupManager = "instanceGroupManager-388242077";
   for (InstanceGroupManagerResizeRequest element :
       instanceGroupManagerResizeRequestsClient
           .list(project, zone, instanceGroupManager)
           .iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameters
Name Description
project String

Project ID for this request.

zone String

The name of the zone where the managed instance group is located. The name should conform to RFC1035.

instanceGroupManager String

The name of the managed instance group. The name should conform to RFC1035.

Returns
Type Description
InstanceGroupManagerResizeRequestsClient.ListPagedResponse

listCallable()

public final UnaryCallable<ListInstanceGroupManagerResizeRequestsRequest,InstanceGroupManagerResizeRequestsListResponse> listCallable()

Retrieves a list of resize requests that are contained in the managed 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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   ListInstanceGroupManagerResizeRequestsRequest request =
       ListInstanceGroupManagerResizeRequestsRequest.newBuilder()
           .setFilter("filter-1274492040")
           .setInstanceGroupManager("instanceGroupManager-388242077")
           .setMaxResults(1128457243)
           .setOrderBy("orderBy-1207110587")
           .setPageToken("pageToken873572522")
           .setProject("project-309310695")
           .setReturnPartialSuccess(true)
           .setZone("zone3744684")
           .build();
   while (true) {
     InstanceGroupManagerResizeRequestsListResponse response =
         instanceGroupManagerResizeRequestsClient.listCallable().call(request);
     for (InstanceGroupManagerResizeRequest element : response.getItemsList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
Type Description
UnaryCallable<ListInstanceGroupManagerResizeRequestsRequest,InstanceGroupManagerResizeRequestsListResponse>

listPagedCallable()

public final UnaryCallable<ListInstanceGroupManagerResizeRequestsRequest,InstanceGroupManagerResizeRequestsClient.ListPagedResponse> listPagedCallable()

Retrieves a list of resize requests that are contained in the managed 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 (InstanceGroupManagerResizeRequestsClient instanceGroupManagerResizeRequestsClient =
     InstanceGroupManagerResizeRequestsClient.create()) {
   ListInstanceGroupManagerResizeRequestsRequest request =
       ListInstanceGroupManagerResizeRequestsRequest.newBuilder()
           .setFilter("filter-1274492040")
           .setInstanceGroupManager("instanceGroupManager-388242077")
           .setMaxResults(1128457243)
           .setOrderBy("orderBy-1207110587")
           .setPageToken("pageToken873572522")
           .setProject("project-309310695")
           .setReturnPartialSuccess(true)
           .setZone("zone3744684")
           .build();
   ApiFuture<InstanceGroupManagerResizeRequest> future =
       instanceGroupManagerResizeRequestsClient.listPagedCallable().futureCall(request);
   // Do something.
   for (InstanceGroupManagerResizeRequest element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
Type Description
UnaryCallable<ListInstanceGroupManagerResizeRequestsRequest,ListPagedResponse>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()