Class DataPolicyServiceClient

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

    @BetaApi
    @Generated("by gapic-generator-java")
    public class DataPolicyServiceClient
    extends Object
    implements com.google.api.gax.core.BackgroundResource
    Service Description: Data Policy Service provides APIs for managing the label-policy bindings.

    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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
       LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
       DataPolicy dataPolicy = DataPolicy.newBuilder().build();
       DataPolicy response = dataPolicyServiceClient.createDataPolicy(parent, dataPolicy);
     }
     

    Note: close() needs to be called on the DataPolicyServiceClient 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 DataPolicyServiceSettings 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
     DataPolicyServiceSettings dataPolicyServiceSettings =
         DataPolicyServiceSettings.newBuilder()
             .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
             .build();
     DataPolicyServiceClient dataPolicyServiceClient =
         DataPolicyServiceClient.create(dataPolicyServiceSettings);
     

    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
     DataPolicyServiceSettings dataPolicyServiceSettings =
         DataPolicyServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
     DataPolicyServiceClient dataPolicyServiceClient =
         DataPolicyServiceClient.create(dataPolicyServiceSettings);
     

    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
     DataPolicyServiceSettings dataPolicyServiceSettings =
         DataPolicyServiceSettings.newHttpJsonBuilder().build();
     DataPolicyServiceClient dataPolicyServiceClient =
         DataPolicyServiceClient.create(dataPolicyServiceSettings);
     

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

    • Constructor Detail

      • DataPolicyServiceClient

        protected DataPolicyServiceClient​(DataPolicyServiceSettings settings)
                                   throws IOException
        Constructs an instance of DataPolicyServiceClient, 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 DataPolicyServiceClient create​(DataPolicyServiceStub stub)
        Constructs an instance of DataPolicyServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(DataPolicyServiceSettings).
      • createDataPolicy

        public final DataPolicy createDataPolicy​(LocationName parent,
                                                 DataPolicy dataPolicy)
        Creates a new data policy under a project with the given `dataPolicyId` (used as the display name), policy tag, and data policy type.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           DataPolicy dataPolicy = DataPolicy.newBuilder().build();
           DataPolicy response = dataPolicyServiceClient.createDataPolicy(parent, dataPolicy);
         }
         
        Parameters:
        parent - Required. Resource name of the project that the data policy will belong to. The format is `projects/{project_number}/locations/{location_id}`.
        dataPolicy - Required. The data policy to create. The `name` field does not need to be provided for the data policy creation.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createDataPolicy

        public final DataPolicy createDataPolicy​(String parent,
                                                 DataPolicy dataPolicy)
        Creates a new data policy under a project with the given `dataPolicyId` (used as the display name), policy tag, and data policy type.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           DataPolicy dataPolicy = DataPolicy.newBuilder().build();
           DataPolicy response = dataPolicyServiceClient.createDataPolicy(parent, dataPolicy);
         }
         
        Parameters:
        parent - Required. Resource name of the project that the data policy will belong to. The format is `projects/{project_number}/locations/{location_id}`.
        dataPolicy - Required. The data policy to create. The `name` field does not need to be provided for the data policy creation.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createDataPolicy

        public final DataPolicy createDataPolicy​(CreateDataPolicyRequest request)
        Creates a new data policy under a project with the given `dataPolicyId` (used as the display name), policy tag, and data policy type.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           CreateDataPolicyRequest request =
               CreateDataPolicyRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setDataPolicy(DataPolicy.newBuilder().build())
                   .build();
           DataPolicy response = dataPolicyServiceClient.createDataPolicy(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
      • createDataPolicyCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateDataPolicyRequest,​DataPolicy> createDataPolicyCallable()
        Creates a new data policy under a project with the given `dataPolicyId` (used as the display name), policy tag, and data policy type.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           CreateDataPolicyRequest request =
               CreateDataPolicyRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setDataPolicy(DataPolicy.newBuilder().build())
                   .build();
           ApiFuture<DataPolicy> future =
               dataPolicyServiceClient.createDataPolicyCallable().futureCall(request);
           // Do something.
           DataPolicy response = future.get();
         }
         
      • updateDataPolicy

        public final DataPolicy updateDataPolicy​(DataPolicy dataPolicy,
                                                 com.google.protobuf.FieldMask updateMask)
        Updates the metadata for an existing data policy. The target data policy can be specified by the resource name.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           DataPolicy dataPolicy = DataPolicy.newBuilder().build();
           FieldMask updateMask = FieldMask.newBuilder().build();
           DataPolicy response = dataPolicyServiceClient.updateDataPolicy(dataPolicy, updateMask);
         }
         
        Parameters:
        dataPolicy - Required. Update the data policy's metadata.

        The target data policy is determined by the `name` field. Other fields are updated to the specified values based on the field masks.

        updateMask - The update mask applies to the resource. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask If not set, defaults to all of the fields that are allowed to update.

        Updates to the `name` and `dataPolicyId` fields are not allowed.

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

        public final DataPolicy updateDataPolicy​(UpdateDataPolicyRequest request)
        Updates the metadata for an existing data policy. The target data policy can be specified by the resource name.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           UpdateDataPolicyRequest request =
               UpdateDataPolicyRequest.newBuilder()
                   .setDataPolicy(DataPolicy.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           DataPolicy response = dataPolicyServiceClient.updateDataPolicy(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
      • updateDataPolicyCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateDataPolicyRequest,​DataPolicy> updateDataPolicyCallable()
        Updates the metadata for an existing data policy. The target data policy can be specified by the resource name.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           UpdateDataPolicyRequest request =
               UpdateDataPolicyRequest.newBuilder()
                   .setDataPolicy(DataPolicy.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           ApiFuture<DataPolicy> future =
               dataPolicyServiceClient.updateDataPolicyCallable().futureCall(request);
           // Do something.
           DataPolicy response = future.get();
         }
         
      • deleteDataPolicy

        public final void deleteDataPolicy​(DataPolicyName name)
        Deletes the data policy specified by its resource name.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           DataPolicyName name = DataPolicyName.of("[PROJECT]", "[LOCATION]", "[DATA_POLICY]");
           dataPolicyServiceClient.deleteDataPolicy(name);
         }
         
        Parameters:
        name - Required. Resource name of the data policy to delete. Format is `projects/{project_number}/locations/{location_id}/dataPolicies/{data_policy_id}`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteDataPolicy

        public final void deleteDataPolicy​(String name)
        Deletes the data policy specified by its resource name.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           String name = DataPolicyName.of("[PROJECT]", "[LOCATION]", "[DATA_POLICY]").toString();
           dataPolicyServiceClient.deleteDataPolicy(name);
         }
         
        Parameters:
        name - Required. Resource name of the data policy to delete. Format is `projects/{project_number}/locations/{location_id}/dataPolicies/{data_policy_id}`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteDataPolicy

        public final void deleteDataPolicy​(DeleteDataPolicyRequest request)
        Deletes the data policy specified by its resource name.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           DeleteDataPolicyRequest request =
               DeleteDataPolicyRequest.newBuilder()
                   .setName(DataPolicyName.of("[PROJECT]", "[LOCATION]", "[DATA_POLICY]").toString())
                   .build();
           dataPolicyServiceClient.deleteDataPolicy(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
      • deleteDataPolicyCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteDataPolicyRequest,​com.google.protobuf.Empty> deleteDataPolicyCallable()
        Deletes the data policy specified by its resource name.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           DeleteDataPolicyRequest request =
               DeleteDataPolicyRequest.newBuilder()
                   .setName(DataPolicyName.of("[PROJECT]", "[LOCATION]", "[DATA_POLICY]").toString())
                   .build();
           ApiFuture<Empty> future =
               dataPolicyServiceClient.deleteDataPolicyCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • getDataPolicy

        public final DataPolicy getDataPolicy​(DataPolicyName name)
        Gets the data policy specified by its resource name.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           DataPolicyName name = DataPolicyName.of("[PROJECT]", "[LOCATION]", "[DATA_POLICY]");
           DataPolicy response = dataPolicyServiceClient.getDataPolicy(name);
         }
         
        Parameters:
        name - Required. Resource name of the requested data policy. Format is `projects/{project_number}/locations/{location_id}/dataPolicies/{data_policy_id}`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getDataPolicy

        public final DataPolicy getDataPolicy​(String name)
        Gets the data policy specified by its resource name.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           String name = DataPolicyName.of("[PROJECT]", "[LOCATION]", "[DATA_POLICY]").toString();
           DataPolicy response = dataPolicyServiceClient.getDataPolicy(name);
         }
         
        Parameters:
        name - Required. Resource name of the requested data policy. Format is `projects/{project_number}/locations/{location_id}/dataPolicies/{data_policy_id}`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getDataPolicy

        public final DataPolicy getDataPolicy​(GetDataPolicyRequest request)
        Gets the data policy specified by its resource name.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           GetDataPolicyRequest request =
               GetDataPolicyRequest.newBuilder()
                   .setName(DataPolicyName.of("[PROJECT]", "[LOCATION]", "[DATA_POLICY]").toString())
                   .build();
           DataPolicy response = dataPolicyServiceClient.getDataPolicy(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
      • getDataPolicyCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetDataPolicyRequest,​DataPolicy> getDataPolicyCallable()
        Gets the data policy specified by its resource name.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           GetDataPolicyRequest request =
               GetDataPolicyRequest.newBuilder()
                   .setName(DataPolicyName.of("[PROJECT]", "[LOCATION]", "[DATA_POLICY]").toString())
                   .build();
           ApiFuture<DataPolicy> future =
               dataPolicyServiceClient.getDataPolicyCallable().futureCall(request);
           // Do something.
           DataPolicy response = future.get();
         }
         
      • listDataPolicies

        public final DataPolicyServiceClient.ListDataPoliciesPagedResponse listDataPolicies​(LocationName parent)
        List all of the data policies in the specified parent project.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
           for (DataPolicy element : dataPolicyServiceClient.listDataPolicies(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. Resource name of the project for which to list data policies. Format is `projects/{project_number}/locations/{location_id}`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listDataPolicies

        public final DataPolicyServiceClient.ListDataPoliciesPagedResponse listDataPolicies​(String parent)
        List all of the data policies in the specified parent project.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
           for (DataPolicy element : dataPolicyServiceClient.listDataPolicies(parent).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - Required. Resource name of the project for which to list data policies. Format is `projects/{project_number}/locations/{location_id}`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listDataPolicies

        public final DataPolicyServiceClient.ListDataPoliciesPagedResponse listDataPolicies​(ListDataPoliciesRequest request)
        List all of the data policies in the specified parent project.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           ListDataPoliciesRequest request =
               ListDataPoliciesRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           for (DataPolicy element : dataPolicyServiceClient.listDataPolicies(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
      • listDataPoliciesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListDataPoliciesRequest,​DataPolicyServiceClient.ListDataPoliciesPagedResponse> listDataPoliciesPagedCallable()
        List all of the data policies in the specified parent project.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           ListDataPoliciesRequest request =
               ListDataPoliciesRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           ApiFuture<DataPolicy> future =
               dataPolicyServiceClient.listDataPoliciesPagedCallable().futureCall(request);
           // Do something.
           for (DataPolicy element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listDataPoliciesCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListDataPoliciesRequest,​ListDataPoliciesResponse> listDataPoliciesCallable()
        List all of the data policies in the specified parent project.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           ListDataPoliciesRequest request =
               ListDataPoliciesRequest.newBuilder()
                   .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .build();
           while (true) {
             ListDataPoliciesResponse response =
                 dataPolicyServiceClient.listDataPoliciesCallable().call(request);
             for (DataPolicy element : response.getDataPoliciesList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getIamPolicy

        public final com.google.iam.v1.Policy getIamPolicy​(com.google.iam.v1.GetIamPolicyRequest request)
        Gets the IAM policy for the specified data 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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           GetIamPolicyRequest request =
               GetIamPolicyRequest.newBuilder()
                   .setResource(DataPolicyName.of("[PROJECT]", "[LOCATION]", "[DATA_POLICY]").toString())
                   .setOptions(GetPolicyOptions.newBuilder().build())
                   .build();
           Policy response = dataPolicyServiceClient.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 IAM policy for the specified data 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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           GetIamPolicyRequest request =
               GetIamPolicyRequest.newBuilder()
                   .setResource(DataPolicyName.of("[PROJECT]", "[LOCATION]", "[DATA_POLICY]").toString())
                   .setOptions(GetPolicyOptions.newBuilder().build())
                   .build();
           ApiFuture<Policy> future = dataPolicyServiceClient.getIamPolicyCallable().futureCall(request);
           // Do something.
           Policy response = future.get();
         }
         
      • setIamPolicy

        public final com.google.iam.v1.Policy setIamPolicy​(com.google.iam.v1.SetIamPolicyRequest request)
        Sets the IAM policy for the specified data 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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           SetIamPolicyRequest request =
               SetIamPolicyRequest.newBuilder()
                   .setResource(DataPolicyName.of("[PROJECT]", "[LOCATION]", "[DATA_POLICY]").toString())
                   .setPolicy(Policy.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           Policy response = dataPolicyServiceClient.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 IAM policy for the specified data 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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           SetIamPolicyRequest request =
               SetIamPolicyRequest.newBuilder()
                   .setResource(DataPolicyName.of("[PROJECT]", "[LOCATION]", "[DATA_POLICY]").toString())
                   .setPolicy(Policy.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           ApiFuture<Policy> future = dataPolicyServiceClient.setIamPolicyCallable().futureCall(request);
           // Do something.
           Policy response = future.get();
         }
         
      • testIamPermissions

        public final com.google.iam.v1.TestIamPermissionsResponse testIamPermissions​(com.google.iam.v1.TestIamPermissionsRequest request)
        Returns the caller's permission on the specified data policy resource.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           TestIamPermissionsRequest request =
               TestIamPermissionsRequest.newBuilder()
                   .setResource(DataPolicyName.of("[PROJECT]", "[LOCATION]", "[DATA_POLICY]").toString())
                   .addAllPermissions(new ArrayList<String>())
                   .build();
           TestIamPermissionsResponse response = dataPolicyServiceClient.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 the caller's permission on the specified data policy resource.

        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 (DataPolicyServiceClient dataPolicyServiceClient = DataPolicyServiceClient.create()) {
           TestIamPermissionsRequest request =
               TestIamPermissionsRequest.newBuilder()
                   .setResource(DataPolicyName.of("[PROJECT]", "[LOCATION]", "[DATA_POLICY]").toString())
                   .addAllPermissions(new ArrayList<String>())
                   .build();
           ApiFuture<TestIamPermissionsResponse> future =
               dataPolicyServiceClient.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