Class TpuClient

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

    @Generated("by gapic-generator-java")
    public class TpuClient
    extends Object
    implements com.google.api.gax.core.BackgroundResource
    Service Description: Manages TPU nodes and other resources

    TPU API v1

    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 (TpuClient tpuClient = TpuClient.create()) {
       NodeName name = NodeName.of("[PROJECT]", "[LOCATION]", "[NODE]");
       Node response = tpuClient.getNode(name);
     }
     

    Note: close() needs to be called on the TpuClient 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 TpuSettings 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
     TpuSettings tpuSettings =
         TpuSettings.newBuilder()
             .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
             .build();
     TpuClient tpuClient = TpuClient.create(tpuSettings);
     

    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
     TpuSettings tpuSettings = TpuSettings.newBuilder().setEndpoint(myEndpoint).build();
     TpuClient tpuClient = TpuClient.create(tpuSettings);
     

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

    • Constructor Detail

      • TpuClient

        protected TpuClient​(TpuSettings settings)
                     throws IOException
        Constructs an instance of TpuClient, 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
      • TpuClient

        protected TpuClient​(TpuStub stub)
    • Method Detail

      • create

        public static final TpuClient create​(TpuSettings settings)
                                      throws IOException
        Constructs an instance of TpuClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.
        Throws:
        IOException
      • create

        public static final TpuClient create​(TpuStub stub)
        Constructs an instance of TpuClient, using the given stub for making calls. This is for advanced usage - prefer using create(TpuSettings).
      • getStub

        public TpuStub getStub()
      • getOperationsClient

        public final com.google.longrunning.OperationsClient getOperationsClient()
        Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.
      • listNodes

        public final TpuClient.ListNodesPagedResponse listNodes​(LocationName parent)
        Lists nodes.

        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 (TpuClient tpuClient = TpuClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           for (Node element : tpuClient.listNodes(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The parent resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listNodes

        public final TpuClient.ListNodesPagedResponse listNodes​(String parent)
        Lists nodes.

        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 (TpuClient tpuClient = TpuClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           for (Node element : tpuClient.listNodes(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The parent resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listNodes

        public final TpuClient.ListNodesPagedResponse listNodes​(ListNodesRequest request)
        Lists nodes.

        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 (TpuClient tpuClient = TpuClient.create()) {
           ListNodesRequest request =
               ListNodesRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           for (Node element : tpuClient.listNodes(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
      • listNodesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListNodesRequest,​TpuClient.ListNodesPagedResponse> listNodesPagedCallable()
        Lists nodes.

        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 (TpuClient tpuClient = TpuClient.create()) {
           ListNodesRequest request =
               ListNodesRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           ApiFuture<Node> future = tpuClient.listNodesPagedCallable().futureCall(request);
           // Do something.
           for (Node element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listNodesCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListNodesRequest,​ListNodesResponse> listNodesCallable()
        Lists nodes.

        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 (TpuClient tpuClient = TpuClient.create()) {
           ListNodesRequest request =
               ListNodesRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           while (true) {
             ListNodesResponse response = tpuClient.listNodesCallable().call(request);
             for (Node element : response.getNodesList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getNode

        public final Node getNode​(NodeName name)
        Gets the details of a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           NodeName name = NodeName.of("[PROJECT]", "[LOCATION]", "[NODE]");
           Node response = tpuClient.getNode(name);
         }
         
        Parameters:
        name - Required. The resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getNode

        public final Node getNode​(String name)
        Gets the details of a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           String name = NodeName.of("[PROJECT]", "[LOCATION]", "[NODE]").toString();
           Node response = tpuClient.getNode(name);
         }
         
        Parameters:
        name - Required. The resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getNode

        public final Node getNode​(GetNodeRequest request)
        Gets the details of a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           GetNodeRequest request =
               GetNodeRequest.newBuilder()
                   .setName(NodeName.of("[PROJECT]", "[LOCATION]", "[NODE]").toString())
                   .build();
           Node response = tpuClient.getNode(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
      • getNodeCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetNodeRequest,​Node> getNodeCallable()
        Gets the details of a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           GetNodeRequest request =
               GetNodeRequest.newBuilder()
                   .setName(NodeName.of("[PROJECT]", "[LOCATION]", "[NODE]").toString())
                   .build();
           ApiFuture<Node> future = tpuClient.getNodeCallable().futureCall(request);
           // Do something.
           Node response = future.get();
         }
         
      • createNodeAsync

        public final com.google.api.gax.longrunning.OperationFuture<Node,​OperationMetadata> createNodeAsync​(LocationName parent,
                                                                                                                  Node node,
                                                                                                                  String nodeId)
        Creates a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           Node node = Node.newBuilder().build();
           String nodeId = "nodeId-1040171331";
           Node response = tpuClient.createNodeAsync(parent, node, nodeId).get();
         }
         
        Parameters:
        parent - Required. The parent resource name.
        node - Required. The node.
        nodeId - The unqualified resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createNodeAsync

        public final com.google.api.gax.longrunning.OperationFuture<Node,​OperationMetadata> createNodeAsync​(String parent,
                                                                                                                  Node node,
                                                                                                                  String nodeId)
        Creates a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           Node node = Node.newBuilder().build();
           String nodeId = "nodeId-1040171331";
           Node response = tpuClient.createNodeAsync(parent, node, nodeId).get();
         }
         
        Parameters:
        parent - Required. The parent resource name.
        node - Required. The node.
        nodeId - The unqualified resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createNodeAsync

        public final com.google.api.gax.longrunning.OperationFuture<Node,​OperationMetadata> createNodeAsync​(CreateNodeRequest request)
        Creates a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           CreateNodeRequest request =
               CreateNodeRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setNodeId("nodeId-1040171331")
                   .setNode(Node.newBuilder().build())
                   .build();
           Node response = tpuClient.createNodeAsync(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
      • createNodeOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<CreateNodeRequest,​Node,​OperationMetadata> createNodeOperationCallable()
        Creates a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           CreateNodeRequest request =
               CreateNodeRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setNodeId("nodeId-1040171331")
                   .setNode(Node.newBuilder().build())
                   .build();
           OperationFuture<Node, OperationMetadata> future =
               tpuClient.createNodeOperationCallable().futureCall(request);
           // Do something.
           Node response = future.get();
         }
         
      • createNodeCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateNodeRequest,​com.google.longrunning.Operation> createNodeCallable()
        Creates a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           CreateNodeRequest request =
               CreateNodeRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setNodeId("nodeId-1040171331")
                   .setNode(Node.newBuilder().build())
                   .build();
           ApiFuture<Operation> future = tpuClient.createNodeCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • deleteNodeAsync

        public final com.google.api.gax.longrunning.OperationFuture<Node,​OperationMetadata> deleteNodeAsync​(NodeName name)
        Deletes a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           NodeName name = NodeName.of("[PROJECT]", "[LOCATION]", "[NODE]");
           Node response = tpuClient.deleteNodeAsync(name).get();
         }
         
        Parameters:
        name - Required. The resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteNodeAsync

        public final com.google.api.gax.longrunning.OperationFuture<Node,​OperationMetadata> deleteNodeAsync​(String name)
        Deletes a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           String name = NodeName.of("[PROJECT]", "[LOCATION]", "[NODE]").toString();
           Node response = tpuClient.deleteNodeAsync(name).get();
         }
         
        Parameters:
        name - Required. The resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteNodeAsync

        public final com.google.api.gax.longrunning.OperationFuture<Node,​OperationMetadata> deleteNodeAsync​(DeleteNodeRequest request)
        Deletes a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           DeleteNodeRequest request =
               DeleteNodeRequest.newBuilder()
                   .setName(NodeName.of("[PROJECT]", "[LOCATION]", "[NODE]").toString())
                   .build();
           Node response = tpuClient.deleteNodeAsync(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
      • deleteNodeOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<DeleteNodeRequest,​Node,​OperationMetadata> deleteNodeOperationCallable()
        Deletes a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           DeleteNodeRequest request =
               DeleteNodeRequest.newBuilder()
                   .setName(NodeName.of("[PROJECT]", "[LOCATION]", "[NODE]").toString())
                   .build();
           OperationFuture<Node, OperationMetadata> future =
               tpuClient.deleteNodeOperationCallable().futureCall(request);
           // Do something.
           Node response = future.get();
         }
         
      • deleteNodeCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteNodeRequest,​com.google.longrunning.Operation> deleteNodeCallable()
        Deletes a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           DeleteNodeRequest request =
               DeleteNodeRequest.newBuilder()
                   .setName(NodeName.of("[PROJECT]", "[LOCATION]", "[NODE]").toString())
                   .build();
           ApiFuture<Operation> future = tpuClient.deleteNodeCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • reimageNodeAsync

        public final com.google.api.gax.longrunning.OperationFuture<Node,​OperationMetadata> reimageNodeAsync​(ReimageNodeRequest request)
        Reimages a node's OS.

        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 (TpuClient tpuClient = TpuClient.create()) {
           ReimageNodeRequest request =
               ReimageNodeRequest.newBuilder()
                   .setName("name3373707")
                   .setTensorflowVersion("tensorflowVersion-470125103")
                   .build();
           Node response = tpuClient.reimageNodeAsync(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
      • reimageNodeOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<ReimageNodeRequest,​Node,​OperationMetadata> reimageNodeOperationCallable()
        Reimages a node's OS.

        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 (TpuClient tpuClient = TpuClient.create()) {
           ReimageNodeRequest request =
               ReimageNodeRequest.newBuilder()
                   .setName("name3373707")
                   .setTensorflowVersion("tensorflowVersion-470125103")
                   .build();
           OperationFuture<Node, OperationMetadata> future =
               tpuClient.reimageNodeOperationCallable().futureCall(request);
           // Do something.
           Node response = future.get();
         }
         
      • reimageNodeCallable

        public final com.google.api.gax.rpc.UnaryCallable<ReimageNodeRequest,​com.google.longrunning.Operation> reimageNodeCallable()
        Reimages a node's OS.

        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 (TpuClient tpuClient = TpuClient.create()) {
           ReimageNodeRequest request =
               ReimageNodeRequest.newBuilder()
                   .setName("name3373707")
                   .setTensorflowVersion("tensorflowVersion-470125103")
                   .build();
           ApiFuture<Operation> future = tpuClient.reimageNodeCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • stopNodeAsync

        public final com.google.api.gax.longrunning.OperationFuture<Node,​OperationMetadata> stopNodeAsync​(StopNodeRequest request)
        Stops a node, this operation is only available with single TPU nodes.

        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 (TpuClient tpuClient = TpuClient.create()) {
           StopNodeRequest request = StopNodeRequest.newBuilder().setName("name3373707").build();
           Node response = tpuClient.stopNodeAsync(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
      • stopNodeOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<StopNodeRequest,​Node,​OperationMetadata> stopNodeOperationCallable()
        Stops a node, this operation is only available with single TPU nodes.

        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 (TpuClient tpuClient = TpuClient.create()) {
           StopNodeRequest request = StopNodeRequest.newBuilder().setName("name3373707").build();
           OperationFuture<Node, OperationMetadata> future =
               tpuClient.stopNodeOperationCallable().futureCall(request);
           // Do something.
           Node response = future.get();
         }
         
      • stopNodeCallable

        public final com.google.api.gax.rpc.UnaryCallable<StopNodeRequest,​com.google.longrunning.Operation> stopNodeCallable()
        Stops a node, this operation is only available with single TPU nodes.

        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 (TpuClient tpuClient = TpuClient.create()) {
           StopNodeRequest request = StopNodeRequest.newBuilder().setName("name3373707").build();
           ApiFuture<Operation> future = tpuClient.stopNodeCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • startNodeAsync

        public final com.google.api.gax.longrunning.OperationFuture<Node,​OperationMetadata> startNodeAsync​(StartNodeRequest request)
        Starts a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           StartNodeRequest request = StartNodeRequest.newBuilder().setName("name3373707").build();
           Node response = tpuClient.startNodeAsync(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
      • startNodeOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<StartNodeRequest,​Node,​OperationMetadata> startNodeOperationCallable()
        Starts a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           StartNodeRequest request = StartNodeRequest.newBuilder().setName("name3373707").build();
           OperationFuture<Node, OperationMetadata> future =
               tpuClient.startNodeOperationCallable().futureCall(request);
           // Do something.
           Node response = future.get();
         }
         
      • startNodeCallable

        public final com.google.api.gax.rpc.UnaryCallable<StartNodeRequest,​com.google.longrunning.Operation> startNodeCallable()
        Starts a node.

        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 (TpuClient tpuClient = TpuClient.create()) {
           StartNodeRequest request = StartNodeRequest.newBuilder().setName("name3373707").build();
           ApiFuture<Operation> future = tpuClient.startNodeCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • listTensorFlowVersions

        public final TpuClient.ListTensorFlowVersionsPagedResponse listTensorFlowVersions​(TensorFlowVersionName parent)
        List TensorFlow versions supported by this API.

        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 (TpuClient tpuClient = TpuClient.create()) {
           TensorFlowVersionName parent =
               TensorFlowVersionName.of("[PROJECT]", "[LOCATION]", "[TENSOR_FLOW_VERSION]");
           for (TensorFlowVersion element : tpuClient.listTensorFlowVersions(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The parent resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listTensorFlowVersions

        public final TpuClient.ListTensorFlowVersionsPagedResponse listTensorFlowVersions​(String parent)
        List TensorFlow versions supported by this API.

        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 (TpuClient tpuClient = TpuClient.create()) {
           String parent =
               TensorFlowVersionName.of("[PROJECT]", "[LOCATION]", "[TENSOR_FLOW_VERSION]").toString();
           for (TensorFlowVersion element : tpuClient.listTensorFlowVersions(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The parent resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listTensorFlowVersions

        public final TpuClient.ListTensorFlowVersionsPagedResponse listTensorFlowVersions​(ListTensorFlowVersionsRequest request)
        List TensorFlow versions supported by this API.

        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 (TpuClient tpuClient = TpuClient.create()) {
           ListTensorFlowVersionsRequest request =
               ListTensorFlowVersionsRequest.newBuilder()
                   .setParent(
                       TensorFlowVersionName.of("[PROJECT]", "[LOCATION]", "[TENSOR_FLOW_VERSION]")
                           .toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           for (TensorFlowVersion element : tpuClient.listTensorFlowVersions(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
      • listTensorFlowVersionsPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListTensorFlowVersionsRequest,​TpuClient.ListTensorFlowVersionsPagedResponse> listTensorFlowVersionsPagedCallable()
        List TensorFlow versions supported by this API.

        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 (TpuClient tpuClient = TpuClient.create()) {
           ListTensorFlowVersionsRequest request =
               ListTensorFlowVersionsRequest.newBuilder()
                   .setParent(
                       TensorFlowVersionName.of("[PROJECT]", "[LOCATION]", "[TENSOR_FLOW_VERSION]")
                           .toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           ApiFuture<TensorFlowVersion> future =
               tpuClient.listTensorFlowVersionsPagedCallable().futureCall(request);
           // Do something.
           for (TensorFlowVersion element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listTensorFlowVersionsCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListTensorFlowVersionsRequest,​ListTensorFlowVersionsResponse> listTensorFlowVersionsCallable()
        List TensorFlow versions supported by this API.

        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 (TpuClient tpuClient = TpuClient.create()) {
           ListTensorFlowVersionsRequest request =
               ListTensorFlowVersionsRequest.newBuilder()
                   .setParent(
                       TensorFlowVersionName.of("[PROJECT]", "[LOCATION]", "[TENSOR_FLOW_VERSION]")
                           .toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           while (true) {
             ListTensorFlowVersionsResponse response =
                 tpuClient.listTensorFlowVersionsCallable().call(request);
             for (TensorFlowVersion element : response.getTensorflowVersionsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getTensorFlowVersion

        public final TensorFlowVersion getTensorFlowVersion​(TensorFlowVersionName name)
        Gets TensorFlow Version.

        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 (TpuClient tpuClient = TpuClient.create()) {
           TensorFlowVersionName name =
               TensorFlowVersionName.of("[PROJECT]", "[LOCATION]", "[TENSOR_FLOW_VERSION]");
           TensorFlowVersion response = tpuClient.getTensorFlowVersion(name);
         }
         
        Parameters:
        name - Required. The resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getTensorFlowVersion

        public final TensorFlowVersion getTensorFlowVersion​(String name)
        Gets TensorFlow Version.

        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 (TpuClient tpuClient = TpuClient.create()) {
           String name =
               TensorFlowVersionName.of("[PROJECT]", "[LOCATION]", "[TENSOR_FLOW_VERSION]").toString();
           TensorFlowVersion response = tpuClient.getTensorFlowVersion(name);
         }
         
        Parameters:
        name - Required. The resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getTensorFlowVersion

        public final TensorFlowVersion getTensorFlowVersion​(GetTensorFlowVersionRequest request)
        Gets TensorFlow Version.

        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 (TpuClient tpuClient = TpuClient.create()) {
           GetTensorFlowVersionRequest request =
               GetTensorFlowVersionRequest.newBuilder()
                   .setName(
                       TensorFlowVersionName.of("[PROJECT]", "[LOCATION]", "[TENSOR_FLOW_VERSION]")
                           .toString())
                   .build();
           TensorFlowVersion response = tpuClient.getTensorFlowVersion(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
      • getTensorFlowVersionCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetTensorFlowVersionRequest,​TensorFlowVersion> getTensorFlowVersionCallable()
        Gets TensorFlow Version.

        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 (TpuClient tpuClient = TpuClient.create()) {
           GetTensorFlowVersionRequest request =
               GetTensorFlowVersionRequest.newBuilder()
                   .setName(
                       TensorFlowVersionName.of("[PROJECT]", "[LOCATION]", "[TENSOR_FLOW_VERSION]")
                           .toString())
                   .build();
           ApiFuture<TensorFlowVersion> future =
               tpuClient.getTensorFlowVersionCallable().futureCall(request);
           // Do something.
           TensorFlowVersion response = future.get();
         }
         
      • listAcceleratorTypes

        public final TpuClient.ListAcceleratorTypesPagedResponse listAcceleratorTypes​(AcceleratorTypeName parent)
        Lists accelerator types supported by this API.

        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 (TpuClient tpuClient = TpuClient.create()) {
           AcceleratorTypeName parent =
               AcceleratorTypeName.of("[PROJECT]", "[LOCATION]", "[ACCELERATOR_TYPE]");
           for (AcceleratorType element : tpuClient.listAcceleratorTypes(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The parent resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listAcceleratorTypes

        public final TpuClient.ListAcceleratorTypesPagedResponse listAcceleratorTypes​(String parent)
        Lists accelerator types supported by this API.

        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 (TpuClient tpuClient = TpuClient.create()) {
           String parent =
               AcceleratorTypeName.of("[PROJECT]", "[LOCATION]", "[ACCELERATOR_TYPE]").toString();
           for (AcceleratorType element : tpuClient.listAcceleratorTypes(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The parent resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listAcceleratorTypes

        public final TpuClient.ListAcceleratorTypesPagedResponse listAcceleratorTypes​(ListAcceleratorTypesRequest request)
        Lists accelerator types supported by this API.

        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 (TpuClient tpuClient = TpuClient.create()) {
           ListAcceleratorTypesRequest request =
               ListAcceleratorTypesRequest.newBuilder()
                   .setParent(
                       AcceleratorTypeName.of("[PROJECT]", "[LOCATION]", "[ACCELERATOR_TYPE]")
                           .toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           for (AcceleratorType element : tpuClient.listAcceleratorTypes(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
      • listAcceleratorTypesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListAcceleratorTypesRequest,​TpuClient.ListAcceleratorTypesPagedResponse> listAcceleratorTypesPagedCallable()
        Lists accelerator types supported by this API.

        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 (TpuClient tpuClient = TpuClient.create()) {
           ListAcceleratorTypesRequest request =
               ListAcceleratorTypesRequest.newBuilder()
                   .setParent(
                       AcceleratorTypeName.of("[PROJECT]", "[LOCATION]", "[ACCELERATOR_TYPE]")
                           .toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           ApiFuture<AcceleratorType> future =
               tpuClient.listAcceleratorTypesPagedCallable().futureCall(request);
           // Do something.
           for (AcceleratorType element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listAcceleratorTypesCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListAcceleratorTypesRequest,​ListAcceleratorTypesResponse> listAcceleratorTypesCallable()
        Lists accelerator types supported by this API.

        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 (TpuClient tpuClient = TpuClient.create()) {
           ListAcceleratorTypesRequest request =
               ListAcceleratorTypesRequest.newBuilder()
                   .setParent(
                       AcceleratorTypeName.of("[PROJECT]", "[LOCATION]", "[ACCELERATOR_TYPE]")
                           .toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           while (true) {
             ListAcceleratorTypesResponse response =
                 tpuClient.listAcceleratorTypesCallable().call(request);
             for (AcceleratorType element : response.getAcceleratorTypesList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getAcceleratorType

        public final AcceleratorType getAcceleratorType​(AcceleratorTypeName name)
        Gets AcceleratorType.

        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 (TpuClient tpuClient = TpuClient.create()) {
           AcceleratorTypeName name =
               AcceleratorTypeName.of("[PROJECT]", "[LOCATION]", "[ACCELERATOR_TYPE]");
           AcceleratorType response = tpuClient.getAcceleratorType(name);
         }
         
        Parameters:
        name - Required. The resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getAcceleratorType

        public final AcceleratorType getAcceleratorType​(String name)
        Gets AcceleratorType.

        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 (TpuClient tpuClient = TpuClient.create()) {
           String name =
               AcceleratorTypeName.of("[PROJECT]", "[LOCATION]", "[ACCELERATOR_TYPE]").toString();
           AcceleratorType response = tpuClient.getAcceleratorType(name);
         }
         
        Parameters:
        name - Required. The resource name.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getAcceleratorType

        public final AcceleratorType getAcceleratorType​(GetAcceleratorTypeRequest request)
        Gets AcceleratorType.

        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 (TpuClient tpuClient = TpuClient.create()) {
           GetAcceleratorTypeRequest request =
               GetAcceleratorTypeRequest.newBuilder()
                   .setName(
                       AcceleratorTypeName.of("[PROJECT]", "[LOCATION]", "[ACCELERATOR_TYPE]")
                           .toString())
                   .build();
           AcceleratorType response = tpuClient.getAcceleratorType(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
      • getAcceleratorTypeCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetAcceleratorTypeRequest,​AcceleratorType> getAcceleratorTypeCallable()
        Gets AcceleratorType.

        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 (TpuClient tpuClient = TpuClient.create()) {
           GetAcceleratorTypeRequest request =
               GetAcceleratorTypeRequest.newBuilder()
                   .setName(
                       AcceleratorTypeName.of("[PROJECT]", "[LOCATION]", "[ACCELERATOR_TYPE]")
                           .toString())
                   .build();
           ApiFuture<AcceleratorType> future =
               tpuClient.getAcceleratorTypeCallable().futureCall(request);
           // Do something.
           AcceleratorType response = future.get();
         }
         
      • listLocations

        public final TpuClient.ListLocationsPagedResponse listLocations​(com.google.cloud.location.ListLocationsRequest request)
        Lists information about the supported locations for this service.

        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 (TpuClient tpuClient = TpuClient.create()) {
           ListLocationsRequest request =
               ListLocationsRequest.newBuilder()
                   .setName("name3373707")
                   .setFilter("filter-1274492040")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           for (Location element : tpuClient.listLocations(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
      • listLocationsPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.ListLocationsRequest,​TpuClient.ListLocationsPagedResponse> listLocationsPagedCallable()
        Lists information about the supported locations for this service.

        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 (TpuClient tpuClient = TpuClient.create()) {
           ListLocationsRequest request =
               ListLocationsRequest.newBuilder()
                   .setName("name3373707")
                   .setFilter("filter-1274492040")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           ApiFuture<Location> future = tpuClient.listLocationsPagedCallable().futureCall(request);
           // Do something.
           for (Location element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listLocationsCallable

        public final com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.ListLocationsRequest,​com.google.cloud.location.ListLocationsResponse> listLocationsCallable()
        Lists information about the supported locations for this service.

        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 (TpuClient tpuClient = TpuClient.create()) {
           ListLocationsRequest request =
               ListLocationsRequest.newBuilder()
                   .setName("name3373707")
                   .setFilter("filter-1274492040")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           while (true) {
             ListLocationsResponse response = tpuClient.listLocationsCallable().call(request);
             for (Location element : response.getLocationsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getLocation

        public final com.google.cloud.location.Location getLocation​(com.google.cloud.location.GetLocationRequest request)
        Gets information about a location.

        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 (TpuClient tpuClient = TpuClient.create()) {
           GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
           Location response = tpuClient.getLocation(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
      • getLocationCallable

        public final com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.GetLocationRequest,​com.google.cloud.location.Location> getLocationCallable()
        Gets information about a location.

        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 (TpuClient tpuClient = TpuClient.create()) {
           GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
           ApiFuture<Location> future = tpuClient.getLocationCallable().futureCall(request);
           // Do something.
           Location 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