Class PoliciesClient

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

    @Generated("by gapic-generator-java")
    public class PoliciesClient
    extends Object
    implements com.google.api.gax.core.BackgroundResource
    Service Description: An interface for managing Identity and Access Management (IAM) policies.

    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 (PoliciesClient policiesClient = PoliciesClient.create()) {
       String name = "name3373707";
       Policy response = policiesClient.getPolicy(name);
     }
     

    Note: close() needs to be called on the PoliciesClient 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 PoliciesSettings 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
     PoliciesSettings policiesSettings =
         PoliciesSettings.newBuilder()
             .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
             .build();
     PoliciesClient policiesClient = PoliciesClient.create(policiesSettings);
     

    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
     PoliciesSettings policiesSettings =
         PoliciesSettings.newBuilder().setEndpoint(myEndpoint).build();
     PoliciesClient policiesClient = PoliciesClient.create(policiesSettings);
     

    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
     PoliciesSettings policiesSettings = PoliciesSettings.newHttpJsonBuilder().build();
     PoliciesClient policiesClient = PoliciesClient.create(policiesSettings);
     

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

    • Constructor Detail

      • PoliciesClient

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

        protected PoliciesClient​(PoliciesStub stub)
    • Method Detail

      • create

        public static final PoliciesClient create​(PoliciesSettings settings)
                                           throws IOException
        Constructs an instance of PoliciesClient, 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 PoliciesClient create​(PoliciesStub stub)
        Constructs an instance of PoliciesClient, using the given stub for making calls. This is for advanced usage - prefer using create(PoliciesSettings).
      • 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.
      • listPolicies

        public final PoliciesClient.ListPoliciesPagedResponse listPolicies​(String parent)
        Retrieves the policies of the specified kind that are attached to a resource.

        The response lists only policy metadata. In particular, policy rules are omitted.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           String parent = "parent-995424086";
           for (Policy element : policiesClient.listPolicies(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. The resource that the policy is attached to, along with the kind of policy to list. Format: `policies/{attachment_point}/denypolicies`

        The attachment point is identified by its URL-encoded full resource name, which means that the forward-slash character, `/`, must be written as `%2F`. For example, `policies/cloudresourcemanager.googleapis.com%2Fprojects%2Fmy-project/denypolicies`.

        For organizations and folders, use the numeric ID in the full resource name. For projects, you can use the alphanumeric or the numeric ID.

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

        public final PoliciesClient.ListPoliciesPagedResponse listPolicies​(com.google.iam.v2.ListPoliciesRequest request)
        Retrieves the policies of the specified kind that are attached to a resource.

        The response lists only policy metadata. In particular, policy rules are omitted.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           ListPoliciesRequest request =
               ListPoliciesRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           for (Policy element : policiesClient.listPolicies(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
      • listPoliciesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v2.ListPoliciesRequest,​PoliciesClient.ListPoliciesPagedResponse> listPoliciesPagedCallable()
        Retrieves the policies of the specified kind that are attached to a resource.

        The response lists only policy metadata. In particular, policy rules are omitted.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           ListPoliciesRequest request =
               ListPoliciesRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           ApiFuture<Policy> future = policiesClient.listPoliciesPagedCallable().futureCall(request);
           // Do something.
           for (Policy element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listPoliciesCallable

        public final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v2.ListPoliciesRequest,​com.google.iam.v2.ListPoliciesResponse> listPoliciesCallable()
        Retrieves the policies of the specified kind that are attached to a resource.

        The response lists only policy metadata. In particular, policy rules are omitted.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           ListPoliciesRequest request =
               ListPoliciesRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           while (true) {
             ListPoliciesResponse response = policiesClient.listPoliciesCallable().call(request);
             for (Policy element : response.getPoliciesList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getPolicy

        public final com.google.iam.v2.Policy getPolicy​(String name)
        Gets a policy.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           String name = "name3373707";
           Policy response = policiesClient.getPolicy(name);
         }
         
        Parameters:
        name - Required. The resource name of the policy to retrieve. Format: `policies/{attachment_point}/denypolicies/{policy_id}`

        Use the URL-encoded full resource name, which means that the forward-slash character, `/`, must be written as `%2F`. For example, `policies/cloudresourcemanager.googleapis.com%2Fprojects%2Fmy-project/denypolicies/my-policy`.

        For organizations and folders, use the numeric ID in the full resource name. For projects, you can use the alphanumeric or the numeric ID.

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

        public final com.google.iam.v2.Policy getPolicy​(com.google.iam.v2.GetPolicyRequest request)
        Gets a policy.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           GetPolicyRequest request = GetPolicyRequest.newBuilder().setName("name3373707").build();
           Policy response = policiesClient.getPolicy(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
      • getPolicyCallable

        public final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v2.GetPolicyRequest,​com.google.iam.v2.Policy> getPolicyCallable()
        Gets a policy.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           GetPolicyRequest request = GetPolicyRequest.newBuilder().setName("name3373707").build();
           ApiFuture<Policy> future = policiesClient.getPolicyCallable().futureCall(request);
           // Do something.
           Policy response = future.get();
         }
         
      • createPolicyAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.iam.v2.Policy,​com.google.iam.v2.PolicyOperationMetadata> createPolicyAsync​(String parent,
                                                                                                                                                                com.google.iam.v2.Policy policy,
                                                                                                                                                                String policyId)
        Creates a policy.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           String parent = "parent-995424086";
           Policy policy = Policy.newBuilder().build();
           String policyId = "policyId546908653";
           Policy response = policiesClient.createPolicyAsync(parent, policy, policyId).get();
         }
         
        Parameters:
        parent - Required. The resource that the policy is attached to, along with the kind of policy to create. Format: `policies/{attachment_point}/denypolicies`

        The attachment point is identified by its URL-encoded full resource name, which means that the forward-slash character, `/`, must be written as `%2F`. For example, `policies/cloudresourcemanager.googleapis.com%2Fprojects%2Fmy-project/denypolicies`.

        For organizations and folders, use the numeric ID in the full resource name. For projects, you can use the alphanumeric or the numeric ID.

        policy - Required. The policy to create.
        policyId - The ID to use for this policy, which will become the final component of the policy's resource name. The ID must contain 3 to 63 characters. It can contain lowercase letters and numbers, as well as dashes (`-`) and periods (`.`). The first character must be a lowercase letter.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createPolicyAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.iam.v2.Policy,​com.google.iam.v2.PolicyOperationMetadata> createPolicyAsync​(com.google.iam.v2.CreatePolicyRequest request)
        Creates a policy.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           CreatePolicyRequest request =
               CreatePolicyRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setPolicy(Policy.newBuilder().build())
                   .setPolicyId("policyId546908653")
                   .build();
           Policy response = policiesClient.createPolicyAsync(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
      • createPolicyOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<com.google.iam.v2.CreatePolicyRequest,​com.google.iam.v2.Policy,​com.google.iam.v2.PolicyOperationMetadata> createPolicyOperationCallable()
        Creates a policy.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           CreatePolicyRequest request =
               CreatePolicyRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setPolicy(Policy.newBuilder().build())
                   .setPolicyId("policyId546908653")
                   .build();
           OperationFuture<Policy, PolicyOperationMetadata> future =
               policiesClient.createPolicyOperationCallable().futureCall(request);
           // Do something.
           Policy response = future.get();
         }
         
      • createPolicyCallable

        public final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v2.CreatePolicyRequest,​com.google.longrunning.Operation> createPolicyCallable()
        Creates a policy.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           CreatePolicyRequest request =
               CreatePolicyRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setPolicy(Policy.newBuilder().build())
                   .setPolicyId("policyId546908653")
                   .build();
           ApiFuture<Operation> future = policiesClient.createPolicyCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • updatePolicyAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.iam.v2.Policy,​com.google.iam.v2.PolicyOperationMetadata> updatePolicyAsync​(com.google.iam.v2.UpdatePolicyRequest request)
        Updates the specified policy.

        You can update only the rules and the display name for the policy.

        To update a policy, you should use a read-modify-write loop:

        1. Use [GetPolicy][google.iam.v2.Policies.GetPolicy] to read the current version of the policy. 2. Modify the policy as needed. 3. Use `UpdatePolicy` to write the updated policy.

        This pattern helps prevent conflicts between concurrent updates.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           UpdatePolicyRequest request =
               UpdatePolicyRequest.newBuilder().setPolicy(Policy.newBuilder().build()).build();
           Policy response = policiesClient.updatePolicyAsync(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
      • updatePolicyOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<com.google.iam.v2.UpdatePolicyRequest,​com.google.iam.v2.Policy,​com.google.iam.v2.PolicyOperationMetadata> updatePolicyOperationCallable()
        Updates the specified policy.

        You can update only the rules and the display name for the policy.

        To update a policy, you should use a read-modify-write loop:

        1. Use [GetPolicy][google.iam.v2.Policies.GetPolicy] to read the current version of the policy. 2. Modify the policy as needed. 3. Use `UpdatePolicy` to write the updated policy.

        This pattern helps prevent conflicts between concurrent updates.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           UpdatePolicyRequest request =
               UpdatePolicyRequest.newBuilder().setPolicy(Policy.newBuilder().build()).build();
           OperationFuture<Policy, PolicyOperationMetadata> future =
               policiesClient.updatePolicyOperationCallable().futureCall(request);
           // Do something.
           Policy response = future.get();
         }
         
      • updatePolicyCallable

        public final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v2.UpdatePolicyRequest,​com.google.longrunning.Operation> updatePolicyCallable()
        Updates the specified policy.

        You can update only the rules and the display name for the policy.

        To update a policy, you should use a read-modify-write loop:

        1. Use [GetPolicy][google.iam.v2.Policies.GetPolicy] to read the current version of the policy. 2. Modify the policy as needed. 3. Use `UpdatePolicy` to write the updated policy.

        This pattern helps prevent conflicts between concurrent updates.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           UpdatePolicyRequest request =
               UpdatePolicyRequest.newBuilder().setPolicy(Policy.newBuilder().build()).build();
           ApiFuture<Operation> future = policiesClient.updatePolicyCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • deletePolicyAsync

        public final com.google.api.gax.longrunning.OperationFuture<com.google.iam.v2.Policy,​com.google.iam.v2.PolicyOperationMetadata> deletePolicyAsync​(String name)
        Deletes a policy. This action is permanent.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           String name = "name3373707";
           Policy response = policiesClient.deletePolicyAsync(name).get();
         }
         
        Parameters:
        name - Required. The resource name of the policy to delete. Format: `policies/{attachment_point}/denypolicies/{policy_id}`

        Use the URL-encoded full resource name, which means that the forward-slash character, `/`, must be written as `%2F`. For example, `policies/cloudresourcemanager.googleapis.com%2Fprojects%2Fmy-project/denypolicies/my-policy`.

        For organizations and folders, use the numeric ID in the full resource name. For projects, you can use the alphanumeric or the numeric ID.

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

        public final com.google.api.gax.longrunning.OperationFuture<com.google.iam.v2.Policy,​com.google.iam.v2.PolicyOperationMetadata> deletePolicyAsync​(com.google.iam.v2.DeletePolicyRequest request)
        Deletes a policy. This action is permanent.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           DeletePolicyRequest request =
               DeletePolicyRequest.newBuilder().setName("name3373707").setEtag("etag3123477").build();
           Policy response = policiesClient.deletePolicyAsync(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
      • deletePolicyOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<com.google.iam.v2.DeletePolicyRequest,​com.google.iam.v2.Policy,​com.google.iam.v2.PolicyOperationMetadata> deletePolicyOperationCallable()
        Deletes a policy. This action is permanent.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           DeletePolicyRequest request =
               DeletePolicyRequest.newBuilder().setName("name3373707").setEtag("etag3123477").build();
           OperationFuture<Policy, PolicyOperationMetadata> future =
               policiesClient.deletePolicyOperationCallable().futureCall(request);
           // Do something.
           Policy response = future.get();
         }
         
      • deletePolicyCallable

        public final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v2.DeletePolicyRequest,​com.google.longrunning.Operation> deletePolicyCallable()
        Deletes a policy. This action is permanent.

        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 (PoliciesClient policiesClient = PoliciesClient.create()) {
           DeletePolicyRequest request =
               DeletePolicyRequest.newBuilder().setName("name3373707").setEtag("etag3123477").build();
           ApiFuture<Operation> future = policiesClient.deletePolicyCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • shutdown

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

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

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

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