Class BatchControllerClient

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

    @Generated("by gapic-generator-java")
    public class BatchControllerClient
    extends Object
    implements com.google.api.gax.core.BackgroundResource
    Service Description: The BatchController provides methods to manage batch workloads.

    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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
       BatchName name = BatchName.of("[PROJECT]", "[LOCATION]", "[BATCH]");
       Batch response = batchControllerClient.getBatch(name);
     }
     

    Note: close() needs to be called on the BatchControllerClient 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 BatchControllerSettings 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
     BatchControllerSettings batchControllerSettings =
         BatchControllerSettings.newBuilder()
             .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
             .build();
     BatchControllerClient batchControllerClient =
         BatchControllerClient.create(batchControllerSettings);
     

    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
     BatchControllerSettings batchControllerSettings =
         BatchControllerSettings.newBuilder().setEndpoint(myEndpoint).build();
     BatchControllerClient batchControllerClient =
         BatchControllerClient.create(batchControllerSettings);
     

    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
     BatchControllerSettings batchControllerSettings =
         BatchControllerSettings.newHttpJsonBuilder().build();
     BatchControllerClient batchControllerClient =
         BatchControllerClient.create(batchControllerSettings);
     

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

    • Constructor Detail

      • BatchControllerClient

        protected BatchControllerClient​(BatchControllerSettings settings)
                                 throws IOException
        Constructs an instance of BatchControllerClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.
        Throws:
        IOException
    • Method Detail

      • create

        public static final BatchControllerClient create​(BatchControllerStub stub)
        Constructs an instance of BatchControllerClient, using the given stub for making calls. This is for advanced usage - prefer using create(BatchControllerSettings).
      • 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.
      • getHttpJsonOperationsClient

        @BetaApi
        public final com.google.api.gax.httpjson.longrunning.OperationsClient getHttpJsonOperationsClient()
        Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.
      • createBatchAsync

        public final com.google.api.gax.longrunning.OperationFuture<Batch,​BatchOperationMetadata> createBatchAsync​(LocationName parent,
                                                                                                                         Batch batch,
                                                                                                                         String batchId)
        Creates a batch workload that executes asynchronously.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           Batch batch = Batch.newBuilder().build();
           String batchId = "batchId-331744779";
           Batch response = batchControllerClient.createBatchAsync(parent, batch, batchId).get();
         }
         
        Parameters:
        parent - Required. The parent resource where this batch will be created.
        batch - Required. The batch to create.
        batchId - Optional. The ID to use for the batch, which will become the final component of the batch's resource name.

        This value must be 4-63 characters. Valid characters are `/[a-z][0-9]-/`.

        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createBatchAsync

        public final com.google.api.gax.longrunning.OperationFuture<Batch,​BatchOperationMetadata> createBatchAsync​(String parent,
                                                                                                                         Batch batch,
                                                                                                                         String batchId)
        Creates a batch workload that executes asynchronously.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           Batch batch = Batch.newBuilder().build();
           String batchId = "batchId-331744779";
           Batch response = batchControllerClient.createBatchAsync(parent, batch, batchId).get();
         }
         
        Parameters:
        parent - Required. The parent resource where this batch will be created.
        batch - Required. The batch to create.
        batchId - Optional. The ID to use for the batch, which will become the final component of the batch's resource name.

        This value must be 4-63 characters. Valid characters are `/[a-z][0-9]-/`.

        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createBatchAsync

        public final com.google.api.gax.longrunning.OperationFuture<Batch,​BatchOperationMetadata> createBatchAsync​(CreateBatchRequest request)
        Creates a batch workload that executes asynchronously.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           CreateBatchRequest request =
               CreateBatchRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setBatch(Batch.newBuilder().build())
                   .setBatchId("batchId-331744779")
                   .setRequestId("requestId693933066")
                   .build();
           Batch response = batchControllerClient.createBatchAsync(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
      • createBatchOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<CreateBatchRequest,​Batch,​BatchOperationMetadata> createBatchOperationCallable()
        Creates a batch workload that executes asynchronously.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           CreateBatchRequest request =
               CreateBatchRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setBatch(Batch.newBuilder().build())
                   .setBatchId("batchId-331744779")
                   .setRequestId("requestId693933066")
                   .build();
           OperationFuture<Batch, BatchOperationMetadata> future =
               batchControllerClient.createBatchOperationCallable().futureCall(request);
           // Do something.
           Batch response = future.get();
         }
         
      • createBatchCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateBatchRequest,​com.google.longrunning.Operation> createBatchCallable()
        Creates a batch workload that executes asynchronously.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           CreateBatchRequest request =
               CreateBatchRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setBatch(Batch.newBuilder().build())
                   .setBatchId("batchId-331744779")
                   .setRequestId("requestId693933066")
                   .build();
           ApiFuture<Operation> future = batchControllerClient.createBatchCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • getBatch

        public final Batch getBatch​(BatchName name)
        Gets the batch workload resource representation.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           BatchName name = BatchName.of("[PROJECT]", "[LOCATION]", "[BATCH]");
           Batch response = batchControllerClient.getBatch(name);
         }
         
        Parameters:
        name - Required. The fully qualified name of the batch to retrieve in the format "projects/PROJECT_ID/locations/DATAPROC_REGION/batches/BATCH_ID"
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getBatch

        public final Batch getBatch​(String name)
        Gets the batch workload resource representation.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           String name = BatchName.of("[PROJECT]", "[LOCATION]", "[BATCH]").toString();
           Batch response = batchControllerClient.getBatch(name);
         }
         
        Parameters:
        name - Required. The fully qualified name of the batch to retrieve in the format "projects/PROJECT_ID/locations/DATAPROC_REGION/batches/BATCH_ID"
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getBatch

        public final Batch getBatch​(GetBatchRequest request)
        Gets the batch workload resource representation.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           GetBatchRequest request =
               GetBatchRequest.newBuilder()
                   .setName(BatchName.of("[PROJECT]", "[LOCATION]", "[BATCH]").toString())
                   .build();
           Batch response = batchControllerClient.getBatch(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
      • getBatchCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetBatchRequest,​Batch> getBatchCallable()
        Gets the batch workload resource representation.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           GetBatchRequest request =
               GetBatchRequest.newBuilder()
                   .setName(BatchName.of("[PROJECT]", "[LOCATION]", "[BATCH]").toString())
                   .build();
           ApiFuture<Batch> future = batchControllerClient.getBatchCallable().futureCall(request);
           // Do something.
           Batch response = future.get();
         }
         
      • listBatches

        public final BatchControllerClient.ListBatchesPagedResponse listBatches​(LocationName parent)
        Lists batch workloads.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           for (Batch element : batchControllerClient.listBatches(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The parent, which owns this collection of batches.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listBatches

        public final BatchControllerClient.ListBatchesPagedResponse listBatches​(String parent)
        Lists batch workloads.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           for (Batch element : batchControllerClient.listBatches(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The parent, which owns this collection of batches.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listBatches

        public final BatchControllerClient.ListBatchesPagedResponse listBatches​(ListBatchesRequest request)
        Lists batch workloads.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           ListBatchesRequest request =
               ListBatchesRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           for (Batch element : batchControllerClient.listBatches(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
      • listBatchesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListBatchesRequest,​BatchControllerClient.ListBatchesPagedResponse> listBatchesPagedCallable()
        Lists batch workloads.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           ListBatchesRequest request =
               ListBatchesRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           ApiFuture<Batch> future =
               batchControllerClient.listBatchesPagedCallable().futureCall(request);
           // Do something.
           for (Batch element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listBatchesCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListBatchesRequest,​ListBatchesResponse> listBatchesCallable()
        Lists batch workloads.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           ListBatchesRequest request =
               ListBatchesRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setFilter("filter-1274492040")
                   .setOrderBy("orderBy-1207110587")
                   .build();
           while (true) {
             ListBatchesResponse response = batchControllerClient.listBatchesCallable().call(request);
             for (Batch element : response.getBatchesList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • deleteBatch

        public final void deleteBatch​(BatchName name)
        Deletes the batch workload resource. If the batch is not in terminal state, the delete fails and the response returns `FAILED_PRECONDITION`.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           BatchName name = BatchName.of("[PROJECT]", "[LOCATION]", "[BATCH]");
           batchControllerClient.deleteBatch(name);
         }
         
        Parameters:
        name - Required. The fully qualified name of the batch to retrieve in the format "projects/PROJECT_ID/locations/DATAPROC_REGION/batches/BATCH_ID"
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteBatch

        public final void deleteBatch​(String name)
        Deletes the batch workload resource. If the batch is not in terminal state, the delete fails and the response returns `FAILED_PRECONDITION`.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           String name = BatchName.of("[PROJECT]", "[LOCATION]", "[BATCH]").toString();
           batchControllerClient.deleteBatch(name);
         }
         
        Parameters:
        name - Required. The fully qualified name of the batch to retrieve in the format "projects/PROJECT_ID/locations/DATAPROC_REGION/batches/BATCH_ID"
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteBatch

        public final void deleteBatch​(DeleteBatchRequest request)
        Deletes the batch workload resource. If the batch is not in terminal state, the delete fails and the response returns `FAILED_PRECONDITION`.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           DeleteBatchRequest request =
               DeleteBatchRequest.newBuilder()
                   .setName(BatchName.of("[PROJECT]", "[LOCATION]", "[BATCH]").toString())
                   .build();
           batchControllerClient.deleteBatch(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
      • deleteBatchCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteBatchRequest,​com.google.protobuf.Empty> deleteBatchCallable()
        Deletes the batch workload resource. If the batch is not in terminal state, the delete fails and the response returns `FAILED_PRECONDITION`.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           DeleteBatchRequest request =
               DeleteBatchRequest.newBuilder()
                   .setName(BatchName.of("[PROJECT]", "[LOCATION]", "[BATCH]").toString())
                   .build();
           ApiFuture<Empty> future = batchControllerClient.deleteBatchCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • setIamPolicy

        public final com.google.iam.v1.Policy setIamPolicy​(com.google.iam.v1.SetIamPolicyRequest request)
        Sets the access control policy on the specified resource. Replacesany existing policy.

        Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           SetIamPolicyRequest request =
               SetIamPolicyRequest.newBuilder()
                   .setResource(
                       AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
                               "[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
                           .toString())
                   .setPolicy(Policy.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           Policy response = batchControllerClient.setIamPolicy(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
      • setIamPolicyCallable

        public final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.SetIamPolicyRequest,​com.google.iam.v1.Policy> setIamPolicyCallable()
        Sets the access control policy on the specified resource. Replacesany existing policy.

        Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           SetIamPolicyRequest request =
               SetIamPolicyRequest.newBuilder()
                   .setResource(
                       AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
                               "[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
                           .toString())
                   .setPolicy(Policy.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           ApiFuture<Policy> future = batchControllerClient.setIamPolicyCallable().futureCall(request);
           // Do something.
           Policy response = future.get();
         }
         
      • getIamPolicy

        public final com.google.iam.v1.Policy getIamPolicy​(com.google.iam.v1.GetIamPolicyRequest request)
        Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           GetIamPolicyRequest request =
               GetIamPolicyRequest.newBuilder()
                   .setResource(
                       AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
                               "[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
                           .toString())
                   .setOptions(GetPolicyOptions.newBuilder().build())
                   .build();
           Policy response = batchControllerClient.getIamPolicy(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
      • getIamPolicyCallable

        public final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.GetIamPolicyRequest,​com.google.iam.v1.Policy> getIamPolicyCallable()
        Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           GetIamPolicyRequest request =
               GetIamPolicyRequest.newBuilder()
                   .setResource(
                       AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
                               "[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
                           .toString())
                   .setOptions(GetPolicyOptions.newBuilder().build())
                   .build();
           ApiFuture<Policy> future = batchControllerClient.getIamPolicyCallable().futureCall(request);
           // Do something.
           Policy response = future.get();
         }
         
      • testIamPermissions

        public final com.google.iam.v1.TestIamPermissionsResponse testIamPermissions​(com.google.iam.v1.TestIamPermissionsRequest request)
        Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error.

        Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           TestIamPermissionsRequest request =
               TestIamPermissionsRequest.newBuilder()
                   .setResource(
                       AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
                               "[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
                           .toString())
                   .addAllPermissions(new ArrayList<String>())
                   .build();
           TestIamPermissionsResponse response = batchControllerClient.testIamPermissions(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
      • testIamPermissionsCallable

        public final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.TestIamPermissionsRequest,​com.google.iam.v1.TestIamPermissionsResponse> testIamPermissionsCallable()
        Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error.

        Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.

        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 (BatchControllerClient batchControllerClient = BatchControllerClient.create()) {
           TestIamPermissionsRequest request =
               TestIamPermissionsRequest.newBuilder()
                   .setResource(
                       AutoscalingPolicyName.ofProjectRegionAutoscalingPolicyName(
                               "[PROJECT]", "[REGION]", "[AUTOSCALING_POLICY]")
                           .toString())
                   .addAllPermissions(new ArrayList<String>())
                   .build();
           ApiFuture<TestIamPermissionsResponse> future =
               batchControllerClient.testIamPermissionsCallable().futureCall(request);
           // Do something.
           TestIamPermissionsResponse 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