Class NodeGroupControllerClient (4.5.0)

public class NodeGroupControllerClient implements BackgroundResource

Service Description: The NodeGroupControllerService provides methods to manage node groups of Compute Engine managed instances.

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 (NodeGroupControllerClient nodeGroupControllerClient = NodeGroupControllerClient.create()) {
   NodeGroupName name = NodeGroupName.of("[PROJECT]", "[REGION]", "[CLUSTER]", "[NODE_GROUP]");
   NodeGroup response = nodeGroupControllerClient.getNodeGroup(name);
 }
 

Note: close() needs to be called on the NodeGroupControllerClient 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 NodeGroupControllerSettings 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
 NodeGroupControllerSettings nodeGroupControllerSettings =
     NodeGroupControllerSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 NodeGroupControllerClient nodeGroupControllerClient =
     NodeGroupControllerClient.create(nodeGroupControllerSettings);
 

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
 NodeGroupControllerSettings nodeGroupControllerSettings =
     NodeGroupControllerSettings.newBuilder().setEndpoint(myEndpoint).build();
 NodeGroupControllerClient nodeGroupControllerClient =
     NodeGroupControllerClient.create(nodeGroupControllerSettings);
 

To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 NodeGroupControllerSettings nodeGroupControllerSettings =
     NodeGroupControllerSettings.newHttpJsonBuilder().build();
 NodeGroupControllerClient nodeGroupControllerClient =
     NodeGroupControllerClient.create(nodeGroupControllerSettings);
 

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

Inheritance

java.lang.Object > NodeGroupControllerClient

Implements

BackgroundResource

Static Methods

create()

public static final NodeGroupControllerClient create()

Constructs an instance of NodeGroupControllerClient with default settings.

Returns
TypeDescription
NodeGroupControllerClient
Exceptions
TypeDescription
IOException

create(NodeGroupControllerSettings settings)

public static final NodeGroupControllerClient create(NodeGroupControllerSettings settings)

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

Parameter
NameDescription
settingsNodeGroupControllerSettings
Returns
TypeDescription
NodeGroupControllerClient
Exceptions
TypeDescription
IOException

create(NodeGroupControllerStub stub)

public static final NodeGroupControllerClient create(NodeGroupControllerStub stub)

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

Parameter
NameDescription
stubNodeGroupControllerStub
Returns
TypeDescription
NodeGroupControllerClient

Constructors

NodeGroupControllerClient(NodeGroupControllerSettings settings)

protected NodeGroupControllerClient(NodeGroupControllerSettings settings)

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

Parameter
NameDescription
settingsNodeGroupControllerSettings

NodeGroupControllerClient(NodeGroupControllerStub stub)

protected NodeGroupControllerClient(NodeGroupControllerStub stub)
Parameter
NameDescription
stubNodeGroupControllerStub

Methods

awaitTermination(long duration, TimeUnit unit)

public boolean awaitTermination(long duration, TimeUnit unit)
Parameters
NameDescription
durationlong
unitTimeUnit
Returns
TypeDescription
boolean
Exceptions
TypeDescription
InterruptedException

close()

public final void close()

createNodeGroupAsync(ClusterRegionName parent, NodeGroup nodeGroup, String nodeGroupId)

public final OperationFuture<NodeGroup,NodeGroupOperationMetadata> createNodeGroupAsync(ClusterRegionName parent, NodeGroup nodeGroup, String nodeGroupId)

Creates a node group in a cluster. The returned Operation.metadata is NodeGroupOperationMetadata.

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 (NodeGroupControllerClient nodeGroupControllerClient = NodeGroupControllerClient.create()) {
   ClusterRegionName parent = ClusterRegionName.of("[PROJECT]", "[REGION]", "[CLUSTER]");
   NodeGroup nodeGroup = NodeGroup.newBuilder().build();
   String nodeGroupId = "nodeGroupId1097129880";
   NodeGroup response =
       nodeGroupControllerClient.createNodeGroupAsync(parent, nodeGroup, nodeGroupId).get();
 }
 
Parameters
NameDescription
parentClusterRegionName

Required. The parent resource where this node group will be created. Format: projects/{project}/regions/{region}/clusters/{cluster}

nodeGroupNodeGroup

Required. The node group to create.

nodeGroupIdString

Optional. An optional node group ID. Generated if not specified.

The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). Cannot begin or end with underscore or hyphen. Must consist of from 3 to 33 characters.

Returns
TypeDescription
OperationFuture<NodeGroup,NodeGroupOperationMetadata>

createNodeGroupAsync(CreateNodeGroupRequest request)

public final OperationFuture<NodeGroup,NodeGroupOperationMetadata> createNodeGroupAsync(CreateNodeGroupRequest request)

Creates a node group in a cluster. The returned Operation.metadata is NodeGroupOperationMetadata.

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 (NodeGroupControllerClient nodeGroupControllerClient = NodeGroupControllerClient.create()) {
   CreateNodeGroupRequest request =
       CreateNodeGroupRequest.newBuilder()
           .setParent(ClusterRegionName.of("[PROJECT]", "[REGION]", "[CLUSTER]").toString())
           .setNodeGroup(NodeGroup.newBuilder().build())
           .setNodeGroupId("nodeGroupId1097129880")
           .setRequestId("requestId693933066")
           .build();
   NodeGroup response = nodeGroupControllerClient.createNodeGroupAsync(request).get();
 }
 
Parameter
NameDescription
requestCreateNodeGroupRequest

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

Returns
TypeDescription
OperationFuture<NodeGroup,NodeGroupOperationMetadata>

createNodeGroupAsync(String parent, NodeGroup nodeGroup, String nodeGroupId)

public final OperationFuture<NodeGroup,NodeGroupOperationMetadata> createNodeGroupAsync(String parent, NodeGroup nodeGroup, String nodeGroupId)

Creates a node group in a cluster. The returned Operation.metadata is NodeGroupOperationMetadata.

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 (NodeGroupControllerClient nodeGroupControllerClient = NodeGroupControllerClient.create()) {
   String parent = ClusterRegionName.of("[PROJECT]", "[REGION]", "[CLUSTER]").toString();
   NodeGroup nodeGroup = NodeGroup.newBuilder().build();
   String nodeGroupId = "nodeGroupId1097129880";
   NodeGroup response =
       nodeGroupControllerClient.createNodeGroupAsync(parent, nodeGroup, nodeGroupId).get();
 }
 
Parameters
NameDescription
parentString

Required. The parent resource where this node group will be created. Format: projects/{project}/regions/{region}/clusters/{cluster}

nodeGroupNodeGroup

Required. The node group to create.

nodeGroupIdString

Optional. An optional node group ID. Generated if not specified.

The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). Cannot begin or end with underscore or hyphen. Must consist of from 3 to 33 characters.

Returns
TypeDescription
OperationFuture<NodeGroup,NodeGroupOperationMetadata>

createNodeGroupCallable()

public final UnaryCallable<CreateNodeGroupRequest,Operation> createNodeGroupCallable()

Creates a node group in a cluster. The returned Operation.metadata is NodeGroupOperationMetadata.

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 (NodeGroupControllerClient nodeGroupControllerClient = NodeGroupControllerClient.create()) {
   CreateNodeGroupRequest request =
       CreateNodeGroupRequest.newBuilder()
           .setParent(ClusterRegionName.of("[PROJECT]", "[REGION]", "[CLUSTER]").toString())
           .setNodeGroup(NodeGroup.newBuilder().build())
           .setNodeGroupId("nodeGroupId1097129880")
           .setRequestId("requestId693933066")
           .build();
   ApiFuture<Operation> future =
       nodeGroupControllerClient.createNodeGroupCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CreateNodeGroupRequest,Operation>

createNodeGroupOperationCallable()

public final OperationCallable<CreateNodeGroupRequest,NodeGroup,NodeGroupOperationMetadata> createNodeGroupOperationCallable()

Creates a node group in a cluster. The returned Operation.metadata is NodeGroupOperationMetadata.

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 (NodeGroupControllerClient nodeGroupControllerClient = NodeGroupControllerClient.create()) {
   CreateNodeGroupRequest request =
       CreateNodeGroupRequest.newBuilder()
           .setParent(ClusterRegionName.of("[PROJECT]", "[REGION]", "[CLUSTER]").toString())
           .setNodeGroup(NodeGroup.newBuilder().build())
           .setNodeGroupId("nodeGroupId1097129880")
           .setRequestId("requestId693933066")
           .build();
   OperationFuture<NodeGroup, NodeGroupOperationMetadata> future =
       nodeGroupControllerClient.createNodeGroupOperationCallable().futureCall(request);
   // Do something.
   NodeGroup response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<CreateNodeGroupRequest,NodeGroup,NodeGroupOperationMetadata>

getHttpJsonOperationsClient()

public final OperationsClient getHttpJsonOperationsClient()

Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.

Returns
TypeDescription
OperationsClient

getNodeGroup(GetNodeGroupRequest request)

public final NodeGroup getNodeGroup(GetNodeGroupRequest request)

Gets the resource representation for a node group in a cluster.

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 (NodeGroupControllerClient nodeGroupControllerClient = NodeGroupControllerClient.create()) {
   GetNodeGroupRequest request =
       GetNodeGroupRequest.newBuilder()
           .setName(
               NodeGroupName.of("[PROJECT]", "[REGION]", "[CLUSTER]", "[NODE_GROUP]").toString())
           .build();
   NodeGroup response = nodeGroupControllerClient.getNodeGroup(request);
 }
 
Parameter
NameDescription
requestGetNodeGroupRequest

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

Returns
TypeDescription
NodeGroup

getNodeGroup(NodeGroupName name)

public final NodeGroup getNodeGroup(NodeGroupName name)

Gets the resource representation for a node group in a cluster.

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 (NodeGroupControllerClient nodeGroupControllerClient = NodeGroupControllerClient.create()) {
   NodeGroupName name = NodeGroupName.of("[PROJECT]", "[REGION]", "[CLUSTER]", "[NODE_GROUP]");
   NodeGroup response = nodeGroupControllerClient.getNodeGroup(name);
 }
 
Parameter
NameDescription
nameNodeGroupName

Required. The name of the node group to retrieve. Format: projects/{project}/regions/{region}/clusters/{cluster}/nodeGroups/{nodeGroup}

Returns
TypeDescription
NodeGroup

getNodeGroup(String name)

public final NodeGroup getNodeGroup(String name)

Gets the resource representation for a node group in a cluster.

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 (NodeGroupControllerClient nodeGroupControllerClient = NodeGroupControllerClient.create()) {
   String name =
       NodeGroupName.of("[PROJECT]", "[REGION]", "[CLUSTER]", "[NODE_GROUP]").toString();
   NodeGroup response = nodeGroupControllerClient.getNodeGroup(name);
 }
 
Parameter
NameDescription
nameString

Required. The name of the node group to retrieve. Format: projects/{project}/regions/{region}/clusters/{cluster}/nodeGroups/{nodeGroup}

Returns
TypeDescription
NodeGroup

getNodeGroupCallable()

public final UnaryCallable<GetNodeGroupRequest,NodeGroup> getNodeGroupCallable()

Gets the resource representation for a node group in a cluster.

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 (NodeGroupControllerClient nodeGroupControllerClient = NodeGroupControllerClient.create()) {
   GetNodeGroupRequest request =
       GetNodeGroupRequest.newBuilder()
           .setName(
               NodeGroupName.of("[PROJECT]", "[REGION]", "[CLUSTER]", "[NODE_GROUP]").toString())
           .build();
   ApiFuture<NodeGroup> future =
       nodeGroupControllerClient.getNodeGroupCallable().futureCall(request);
   // Do something.
   NodeGroup response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetNodeGroupRequest,NodeGroup>

getOperationsClient()

public final OperationsClient getOperationsClient()

Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.

Returns
TypeDescription
OperationsClient

getSettings()

public final NodeGroupControllerSettings getSettings()
Returns
TypeDescription
NodeGroupControllerSettings

getStub()

public NodeGroupControllerStub getStub()
Returns
TypeDescription
NodeGroupControllerStub

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean

resizeNodeGroupAsync(ResizeNodeGroupRequest request)

public final OperationFuture<NodeGroup,NodeGroupOperationMetadata> resizeNodeGroupAsync(ResizeNodeGroupRequest request)

Resizes a node group in a cluster. The returned Operation.metadata is NodeGroupOperationMetadata.

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 (NodeGroupControllerClient nodeGroupControllerClient = NodeGroupControllerClient.create()) {
   ResizeNodeGroupRequest request =
       ResizeNodeGroupRequest.newBuilder()
           .setName("name3373707")
           .setSize(3530753)
           .setRequestId("requestId693933066")
           .setGracefulDecommissionTimeout(Duration.newBuilder().build())
           .build();
   NodeGroup response = nodeGroupControllerClient.resizeNodeGroupAsync(request).get();
 }
 
Parameter
NameDescription
requestResizeNodeGroupRequest

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

Returns
TypeDescription
OperationFuture<NodeGroup,NodeGroupOperationMetadata>

resizeNodeGroupAsync(String name, int size)

public final OperationFuture<NodeGroup,NodeGroupOperationMetadata> resizeNodeGroupAsync(String name, int size)

Resizes a node group in a cluster. The returned Operation.metadata is NodeGroupOperationMetadata.

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 (NodeGroupControllerClient nodeGroupControllerClient = NodeGroupControllerClient.create()) {
   String name = "name3373707";
   int size = 3530753;
   NodeGroup response = nodeGroupControllerClient.resizeNodeGroupAsync(name, size).get();
 }
 
Parameters
NameDescription
nameString

Required. The name of the node group to resize. Format: projects/{project}/regions/{region}/clusters/{cluster}/nodeGroups/{nodeGroup}

sizeint

Required. The number of running instances for the node group to maintain. The group adds or removes instances to maintain the number of instances specified by this parameter.

Returns
TypeDescription
OperationFuture<NodeGroup,NodeGroupOperationMetadata>

resizeNodeGroupCallable()

public final UnaryCallable<ResizeNodeGroupRequest,Operation> resizeNodeGroupCallable()

Resizes a node group in a cluster. The returned Operation.metadata is NodeGroupOperationMetadata.

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 (NodeGroupControllerClient nodeGroupControllerClient = NodeGroupControllerClient.create()) {
   ResizeNodeGroupRequest request =
       ResizeNodeGroupRequest.newBuilder()
           .setName("name3373707")
           .setSize(3530753)
           .setRequestId("requestId693933066")
           .setGracefulDecommissionTimeout(Duration.newBuilder().build())
           .build();
   ApiFuture<Operation> future =
       nodeGroupControllerClient.resizeNodeGroupCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<ResizeNodeGroupRequest,Operation>

resizeNodeGroupOperationCallable()

public final OperationCallable<ResizeNodeGroupRequest,NodeGroup,NodeGroupOperationMetadata> resizeNodeGroupOperationCallable()

Resizes a node group in a cluster. The returned Operation.metadata is NodeGroupOperationMetadata.

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 (NodeGroupControllerClient nodeGroupControllerClient = NodeGroupControllerClient.create()) {
   ResizeNodeGroupRequest request =
       ResizeNodeGroupRequest.newBuilder()
           .setName("name3373707")
           .setSize(3530753)
           .setRequestId("requestId693933066")
           .setGracefulDecommissionTimeout(Duration.newBuilder().build())
           .build();
   OperationFuture<NodeGroup, NodeGroupOperationMetadata> future =
       nodeGroupControllerClient.resizeNodeGroupOperationCallable().futureCall(request);
   // Do something.
   NodeGroup response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<ResizeNodeGroupRequest,NodeGroup,NodeGroupOperationMetadata>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()