Class FeatureRegistryServiceClient

java.lang.Object
com.google.cloud.aiplatform.v1.FeatureRegistryServiceClient
All Implemented Interfaces:
BackgroundResource, AutoCloseable

@Generated("by gapic-generator-java") public class FeatureRegistryServiceClient extends Object implements BackgroundResource
Service Description: The service that handles CRUD and List for resources for FeatureRegistry.

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 (FeatureRegistryServiceClient featureRegistryServiceClient =
     FeatureRegistryServiceClient.create()) {
   FeatureGroupName name = FeatureGroupName.of("[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]");
   FeatureGroup response = featureRegistryServiceClient.getFeatureGroup(name);
 }
 

Note: close() needs to be called on the FeatureRegistryServiceClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().

Methods
Method Description Method Variants

CreateFeatureGroup

Creates a new FeatureGroup in a given project and location.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • createFeatureGroupAsync(CreateFeatureGroupRequest request)

Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.

  • createFeatureGroupAsync(LocationName parent, FeatureGroup featureGroup, String featureGroupId)

  • createFeatureGroupAsync(String parent, FeatureGroup featureGroup, String featureGroupId)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • createFeatureGroupOperationCallable()

  • createFeatureGroupCallable()

GetFeatureGroup

Gets details of a single FeatureGroup.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • getFeatureGroup(GetFeatureGroupRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • getFeatureGroup(FeatureGroupName name)

  • getFeatureGroup(String name)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getFeatureGroupCallable()

ListFeatureGroups

Lists FeatureGroups in a given project and location.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • listFeatureGroups(ListFeatureGroupsRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • listFeatureGroups(LocationName parent)

  • listFeatureGroups(String parent)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • listFeatureGroupsPagedCallable()

  • listFeatureGroupsCallable()

UpdateFeatureGroup

Updates the parameters of a single FeatureGroup.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • updateFeatureGroupAsync(UpdateFeatureGroupRequest request)

Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.

  • updateFeatureGroupAsync(FeatureGroup featureGroup, FieldMask updateMask)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • updateFeatureGroupOperationCallable()

  • updateFeatureGroupCallable()

DeleteFeatureGroup

Deletes a single FeatureGroup.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • deleteFeatureGroupAsync(DeleteFeatureGroupRequest request)

Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.

  • deleteFeatureGroupAsync(FeatureGroupName name, boolean force)

  • deleteFeatureGroupAsync(String name, boolean force)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • deleteFeatureGroupOperationCallable()

  • deleteFeatureGroupCallable()

CreateFeature

Creates a new Feature in a given FeatureGroup.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • createFeatureAsync(CreateFeatureRequest request)

Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.

  • createFeatureAsync(EntityTypeName parent, Feature feature, String featureId)

  • createFeatureAsync(FeatureGroupName parent, Feature feature, String featureId)

  • createFeatureAsync(String parent, Feature feature, String featureId)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • createFeatureOperationCallable()

  • createFeatureCallable()

BatchCreateFeatures

Creates a batch of Features in a given FeatureGroup.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • batchCreateFeaturesAsync(EntityTypeName parent, List<CreateFeatureRequest> requests)

  • batchCreateFeaturesAsync(FeatureGroupName parent, List<CreateFeatureRequest> requests)

  • batchCreateFeaturesAsync(String parent, List<CreateFeatureRequest> requests)

  • batchCreateFeaturesAsync(BatchCreateFeaturesRequest request)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • batchCreateFeaturesOperationCallable()

  • batchCreateFeaturesCallable()

GetFeature

Gets details of a single Feature.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • getFeature(GetFeatureRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • getFeature(FeatureName name)

  • getFeature(String name)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getFeatureCallable()

ListFeatures

Lists Features in a given FeatureGroup.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • listFeatures(ListFeaturesRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • listFeatures(EntityTypeName parent)

  • listFeatures(FeatureGroupName parent)

  • listFeatures(String parent)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • listFeaturesPagedCallable()

  • listFeaturesCallable()

UpdateFeature

Updates the parameters of a single Feature.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • updateFeatureAsync(UpdateFeatureRequest request)

Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.

  • updateFeatureAsync(Feature feature, FieldMask updateMask)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • updateFeatureOperationCallable()

  • updateFeatureCallable()

DeleteFeature

Deletes a single Feature.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • deleteFeatureAsync(DeleteFeatureRequest request)

Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.

  • deleteFeatureAsync(FeatureName name)

  • deleteFeatureAsync(String name)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • deleteFeatureOperationCallable()

  • deleteFeatureCallable()

ListLocations

Lists information about the supported locations for this service.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • listLocations(ListLocationsRequest request)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • listLocationsPagedCallable()

  • listLocationsCallable()

GetLocation

Gets information about a location.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • getLocation(GetLocationRequest request)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getLocationCallable()

SetIamPolicy

Sets the access control policy on the specified resource. Replacesany existing policy.

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

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • setIamPolicy(SetIamPolicyRequest request)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • setIamPolicyCallable()

GetIamPolicy

Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • getIamPolicy(GetIamPolicyRequest request)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getIamPolicyCallable()

TestIamPermissions

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.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • testIamPermissions(TestIamPermissionsRequest request)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • testIamPermissionsCallable()

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 FeatureRegistryServiceSettings 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
 FeatureRegistryServiceSettings featureRegistryServiceSettings =
     FeatureRegistryServiceSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 FeatureRegistryServiceClient featureRegistryServiceClient =
     FeatureRegistryServiceClient.create(featureRegistryServiceSettings);
 

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
 FeatureRegistryServiceSettings featureRegistryServiceSettings =
     FeatureRegistryServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
 FeatureRegistryServiceClient featureRegistryServiceClient =
     FeatureRegistryServiceClient.create(featureRegistryServiceSettings);
 

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

  • Constructor Details

    • FeatureRegistryServiceClient

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

      protected FeatureRegistryServiceClient(FeatureRegistryServiceStub stub)
  • Method Details

    • create

      public static final FeatureRegistryServiceClient create() throws IOException
      Constructs an instance of FeatureRegistryServiceClient with default settings.
      Throws:
      IOException
    • create

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

      public final FeatureRegistryServiceSettings getSettings()
    • getStub

      public FeatureRegistryServiceStub getStub()
    • getOperationsClient

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

      public final OperationFuture<FeatureGroup,CreateFeatureGroupOperationMetadata> createFeatureGroupAsync(LocationName parent, FeatureGroup featureGroup, String featureGroupId)
      Creates a new FeatureGroup in a given project and location.

      Sample code:

      
       // This snippet has been automatically generated and should be regarded as a code template only.
       // It will require modifications to work:
       // - It may require correct/in-range values for request initialization.
       // - It may require specifying regional endpoints when creating the service client as shown in
       // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
       try (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
         FeatureGroup featureGroup = FeatureGroup.newBuilder().build();
         String featureGroupId = "featureGroupId-1768466396";
         FeatureGroup response =
             featureRegistryServiceClient
                 .createFeatureGroupAsync(parent, featureGroup, featureGroupId)
                 .get();
       }
       
      Parameters:
      parent - Required. The resource name of the Location to create FeatureGroups. Format: `projects/{project}/locations/{location}`
      featureGroup - Required. The FeatureGroup to create.
      featureGroupId - Required. The ID to use for this FeatureGroup, which will become the final component of the FeatureGroup's resource name.

      This value may be up to 128 characters, and valid characters are `[a-z0-9_]`. The first character cannot be a number.

      The value must be unique within the project and location.

      Throws:
      ApiException - if the remote call fails
    • createFeatureGroupAsync

      public final OperationFuture<FeatureGroup,CreateFeatureGroupOperationMetadata> createFeatureGroupAsync(String parent, FeatureGroup featureGroup, String featureGroupId)
      Creates a new FeatureGroup in a given project and location.

      Sample code:

      
       // This snippet has been automatically generated and should be regarded as a code template only.
       // It will require modifications to work:
       // - It may require correct/in-range values for request initialization.
       // - It may require specifying regional endpoints when creating the service client as shown in
       // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
       try (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
         FeatureGroup featureGroup = FeatureGroup.newBuilder().build();
         String featureGroupId = "featureGroupId-1768466396";
         FeatureGroup response =
             featureRegistryServiceClient
                 .createFeatureGroupAsync(parent, featureGroup, featureGroupId)
                 .get();
       }
       
      Parameters:
      parent - Required. The resource name of the Location to create FeatureGroups. Format: `projects/{project}/locations/{location}`
      featureGroup - Required. The FeatureGroup to create.
      featureGroupId - Required. The ID to use for this FeatureGroup, which will become the final component of the FeatureGroup's resource name.

      This value may be up to 128 characters, and valid characters are `[a-z0-9_]`. The first character cannot be a number.

      The value must be unique within the project and location.

      Throws:
      ApiException - if the remote call fails
    • createFeatureGroupAsync

      Creates a new FeatureGroup in a given project and location.

      Sample code:

      
       // This snippet has been automatically generated and should be regarded as a code template only.
       // It will require modifications to work:
       // - It may require correct/in-range values for request initialization.
       // - It may require specifying regional endpoints when creating the service client as shown in
       // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
       try (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         CreateFeatureGroupRequest request =
             CreateFeatureGroupRequest.newBuilder()
                 .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                 .setFeatureGroup(FeatureGroup.newBuilder().build())
                 .setFeatureGroupId("featureGroupId-1768466396")
                 .build();
         FeatureGroup response = featureRegistryServiceClient.createFeatureGroupAsync(request).get();
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • createFeatureGroupOperationCallable

      Creates a new FeatureGroup in a given project and location.

      Sample code:

      
       // This snippet has been automatically generated and should be regarded as a code template only.
       // It will require modifications to work:
       // - It may require correct/in-range values for request initialization.
       // - It may require specifying regional endpoints when creating the service client as shown in
       // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
       try (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         CreateFeatureGroupRequest request =
             CreateFeatureGroupRequest.newBuilder()
                 .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                 .setFeatureGroup(FeatureGroup.newBuilder().build())
                 .setFeatureGroupId("featureGroupId-1768466396")
                 .build();
         OperationFuture<FeatureGroup, CreateFeatureGroupOperationMetadata> future =
             featureRegistryServiceClient.createFeatureGroupOperationCallable().futureCall(request);
         // Do something.
         FeatureGroup response = future.get();
       }
       
    • createFeatureGroupCallable

      public final UnaryCallable<CreateFeatureGroupRequest,Operation> createFeatureGroupCallable()
      Creates a new FeatureGroup in a given project and location.

      Sample code:

      
       // This snippet has been automatically generated and should be regarded as a code template only.
       // It will require modifications to work:
       // - It may require correct/in-range values for request initialization.
       // - It may require specifying regional endpoints when creating the service client as shown in
       // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
       try (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         CreateFeatureGroupRequest request =
             CreateFeatureGroupRequest.newBuilder()
                 .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                 .setFeatureGroup(FeatureGroup.newBuilder().build())
                 .setFeatureGroupId("featureGroupId-1768466396")
                 .build();
         ApiFuture<Operation> future =
             featureRegistryServiceClient.createFeatureGroupCallable().futureCall(request);
         // Do something.
         Operation response = future.get();
       }
       
    • getFeatureGroup

      public final FeatureGroup getFeatureGroup(FeatureGroupName name)
      Gets details of a single FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         FeatureGroupName name = FeatureGroupName.of("[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]");
         FeatureGroup response = featureRegistryServiceClient.getFeatureGroup(name);
       }
       
      Parameters:
      name - Required. The name of the FeatureGroup resource.
      Throws:
      ApiException - if the remote call fails
    • getFeatureGroup

      public final FeatureGroup getFeatureGroup(String name)
      Gets details of a single FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         String name = FeatureGroupName.of("[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]").toString();
         FeatureGroup response = featureRegistryServiceClient.getFeatureGroup(name);
       }
       
      Parameters:
      name - Required. The name of the FeatureGroup resource.
      Throws:
      ApiException - if the remote call fails
    • getFeatureGroup

      public final FeatureGroup getFeatureGroup(GetFeatureGroupRequest request)
      Gets details of a single FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         GetFeatureGroupRequest request =
             GetFeatureGroupRequest.newBuilder()
                 .setName(FeatureGroupName.of("[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]").toString())
                 .build();
         FeatureGroup response = featureRegistryServiceClient.getFeatureGroup(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • getFeatureGroupCallable

      public final UnaryCallable<GetFeatureGroupRequest,FeatureGroup> getFeatureGroupCallable()
      Gets details of a single FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         GetFeatureGroupRequest request =
             GetFeatureGroupRequest.newBuilder()
                 .setName(FeatureGroupName.of("[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]").toString())
                 .build();
         ApiFuture<FeatureGroup> future =
             featureRegistryServiceClient.getFeatureGroupCallable().futureCall(request);
         // Do something.
         FeatureGroup response = future.get();
       }
       
    • listFeatureGroups

      Lists FeatureGroups in a given project and location.

      Sample code:

      
       // This snippet has been automatically generated and should be regarded as a code template only.
       // It will require modifications to work:
       // - It may require correct/in-range values for request initialization.
       // - It may require specifying regional endpoints when creating the service client as shown in
       // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
       try (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
         for (FeatureGroup element :
             featureRegistryServiceClient.listFeatureGroups(parent).iterateAll()) {
           // doThingsWith(element);
         }
       }
       
      Parameters:
      parent - Required. The resource name of the Location to list FeatureGroups. Format: `projects/{project}/locations/{location}`
      Throws:
      ApiException - if the remote call fails
    • listFeatureGroups

      Lists FeatureGroups in a given project and location.

      Sample code:

      
       // This snippet has been automatically generated and should be regarded as a code template only.
       // It will require modifications to work:
       // - It may require correct/in-range values for request initialization.
       // - It may require specifying regional endpoints when creating the service client as shown in
       // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
       try (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
         for (FeatureGroup element :
             featureRegistryServiceClient.listFeatureGroups(parent).iterateAll()) {
           // doThingsWith(element);
         }
       }
       
      Parameters:
      parent - Required. The resource name of the Location to list FeatureGroups. Format: `projects/{project}/locations/{location}`
      Throws:
      ApiException - if the remote call fails
    • listFeatureGroups

      Lists FeatureGroups in a given project and location.

      Sample code:

      
       // This snippet has been automatically generated and should be regarded as a code template only.
       // It will require modifications to work:
       // - It may require correct/in-range values for request initialization.
       // - It may require specifying regional endpoints when creating the service client as shown in
       // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
       try (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         ListFeatureGroupsRequest request =
             ListFeatureGroupsRequest.newBuilder()
                 .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                 .setFilter("filter-1274492040")
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .setOrderBy("orderBy-1207110587")
                 .build();
         for (FeatureGroup element :
             featureRegistryServiceClient.listFeatureGroups(request).iterateAll()) {
           // doThingsWith(element);
         }
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • listFeatureGroupsPagedCallable

      Lists FeatureGroups in a given project and location.

      Sample code:

      
       // This snippet has been automatically generated and should be regarded as a code template only.
       // It will require modifications to work:
       // - It may require correct/in-range values for request initialization.
       // - It may require specifying regional endpoints when creating the service client as shown in
       // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
       try (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         ListFeatureGroupsRequest request =
             ListFeatureGroupsRequest.newBuilder()
                 .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                 .setFilter("filter-1274492040")
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .setOrderBy("orderBy-1207110587")
                 .build();
         ApiFuture<FeatureGroup> future =
             featureRegistryServiceClient.listFeatureGroupsPagedCallable().futureCall(request);
         // Do something.
         for (FeatureGroup element : future.get().iterateAll()) {
           // doThingsWith(element);
         }
       }
       
    • listFeatureGroupsCallable

      public final UnaryCallable<ListFeatureGroupsRequest,ListFeatureGroupsResponse> listFeatureGroupsCallable()
      Lists FeatureGroups in a given project and location.

      Sample code:

      
       // This snippet has been automatically generated and should be regarded as a code template only.
       // It will require modifications to work:
       // - It may require correct/in-range values for request initialization.
       // - It may require specifying regional endpoints when creating the service client as shown in
       // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
       try (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         ListFeatureGroupsRequest request =
             ListFeatureGroupsRequest.newBuilder()
                 .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                 .setFilter("filter-1274492040")
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .setOrderBy("orderBy-1207110587")
                 .build();
         while (true) {
           ListFeatureGroupsResponse response =
               featureRegistryServiceClient.listFeatureGroupsCallable().call(request);
           for (FeatureGroup element : response.getFeatureGroupsList()) {
             // doThingsWith(element);
           }
           String nextPageToken = response.getNextPageToken();
           if (!Strings.isNullOrEmpty(nextPageToken)) {
             request = request.toBuilder().setPageToken(nextPageToken).build();
           } else {
             break;
           }
         }
       }
       
    • updateFeatureGroupAsync

      public final OperationFuture<FeatureGroup,UpdateFeatureGroupOperationMetadata> updateFeatureGroupAsync(FeatureGroup featureGroup, com.google.protobuf.FieldMask updateMask)
      Updates the parameters of a single FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         FeatureGroup featureGroup = FeatureGroup.newBuilder().build();
         FieldMask updateMask = FieldMask.newBuilder().build();
         FeatureGroup response =
             featureRegistryServiceClient.updateFeatureGroupAsync(featureGroup, updateMask).get();
       }
       
      Parameters:
      featureGroup - Required. The FeatureGroup's `name` field is used to identify the FeatureGroup to be updated. Format: `projects/{project}/locations/{location}/featureGroups/{feature_group}`
      updateMask - Field mask is used to specify the fields to be overwritten in the FeatureGroup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields.

      Updatable fields:

      * `labels` * `description` * `big_query` * `big_query.entity_id_columns`

      Throws:
      ApiException - if the remote call fails
    • updateFeatureGroupAsync

      Updates the parameters of a single FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         UpdateFeatureGroupRequest request =
             UpdateFeatureGroupRequest.newBuilder()
                 .setFeatureGroup(FeatureGroup.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         FeatureGroup response = featureRegistryServiceClient.updateFeatureGroupAsync(request).get();
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • updateFeatureGroupOperationCallable

      Updates the parameters of a single FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         UpdateFeatureGroupRequest request =
             UpdateFeatureGroupRequest.newBuilder()
                 .setFeatureGroup(FeatureGroup.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         OperationFuture<FeatureGroup, UpdateFeatureGroupOperationMetadata> future =
             featureRegistryServiceClient.updateFeatureGroupOperationCallable().futureCall(request);
         // Do something.
         FeatureGroup response = future.get();
       }
       
    • updateFeatureGroupCallable

      public final UnaryCallable<UpdateFeatureGroupRequest,Operation> updateFeatureGroupCallable()
      Updates the parameters of a single FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         UpdateFeatureGroupRequest request =
             UpdateFeatureGroupRequest.newBuilder()
                 .setFeatureGroup(FeatureGroup.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         ApiFuture<Operation> future =
             featureRegistryServiceClient.updateFeatureGroupCallable().futureCall(request);
         // Do something.
         Operation response = future.get();
       }
       
    • deleteFeatureGroupAsync

      public final OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> deleteFeatureGroupAsync(FeatureGroupName name, boolean force)
      Deletes a single FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         FeatureGroupName name = FeatureGroupName.of("[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]");
         boolean force = true;
         featureRegistryServiceClient.deleteFeatureGroupAsync(name, force).get();
       }
       
      Parameters:
      name - Required. The name of the FeatureGroup to be deleted. Format: `projects/{project}/locations/{location}/featureGroups/{feature_group}`
      force - If set to true, any Features under this FeatureGroup will also be deleted. (Otherwise, the request will only work if the FeatureGroup has no Features.)
      Throws:
      ApiException - if the remote call fails
    • deleteFeatureGroupAsync

      public final OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> deleteFeatureGroupAsync(String name, boolean force)
      Deletes a single FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         String name = FeatureGroupName.of("[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]").toString();
         boolean force = true;
         featureRegistryServiceClient.deleteFeatureGroupAsync(name, force).get();
       }
       
      Parameters:
      name - Required. The name of the FeatureGroup to be deleted. Format: `projects/{project}/locations/{location}/featureGroups/{feature_group}`
      force - If set to true, any Features under this FeatureGroup will also be deleted. (Otherwise, the request will only work if the FeatureGroup has no Features.)
      Throws:
      ApiException - if the remote call fails
    • deleteFeatureGroupAsync

      public final OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> deleteFeatureGroupAsync(DeleteFeatureGroupRequest request)
      Deletes a single FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         DeleteFeatureGroupRequest request =
             DeleteFeatureGroupRequest.newBuilder()
                 .setName(FeatureGroupName.of("[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]").toString())
                 .setForce(true)
                 .build();
         featureRegistryServiceClient.deleteFeatureGroupAsync(request).get();
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • deleteFeatureGroupOperationCallable

      public final OperationCallable<DeleteFeatureGroupRequest,com.google.protobuf.Empty,DeleteOperationMetadata> deleteFeatureGroupOperationCallable()
      Deletes a single FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         DeleteFeatureGroupRequest request =
             DeleteFeatureGroupRequest.newBuilder()
                 .setName(FeatureGroupName.of("[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]").toString())
                 .setForce(true)
                 .build();
         OperationFuture<Empty, DeleteOperationMetadata> future =
             featureRegistryServiceClient.deleteFeatureGroupOperationCallable().futureCall(request);
         // Do something.
         future.get();
       }
       
    • deleteFeatureGroupCallable

      public final UnaryCallable<DeleteFeatureGroupRequest,Operation> deleteFeatureGroupCallable()
      Deletes a single FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         DeleteFeatureGroupRequest request =
             DeleteFeatureGroupRequest.newBuilder()
                 .setName(FeatureGroupName.of("[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]").toString())
                 .setForce(true)
                 .build();
         ApiFuture<Operation> future =
             featureRegistryServiceClient.deleteFeatureGroupCallable().futureCall(request);
         // Do something.
         future.get();
       }
       
    • createFeatureAsync

      public final OperationFuture<Feature,CreateFeatureOperationMetadata> createFeatureAsync(EntityTypeName parent, Feature feature, String featureId)
      Creates a new Feature in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         EntityTypeName parent =
             EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]");
         Feature feature = Feature.newBuilder().build();
         String featureId = "featureId-420503887";
         Feature response =
             featureRegistryServiceClient.createFeatureAsync(parent, feature, featureId).get();
       }
       
      Parameters:
      parent - Required. The resource name of the EntityType or FeatureGroup to create a Feature. Format for entity_type as parent: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` Format for feature_group as parent: `projects/{project}/locations/{location}/featureGroups/{feature_group}`
      feature - Required. The Feature to create.
      featureId - Required. The ID to use for the Feature, which will become the final component of the Feature's resource name.

      This value may be up to 128 characters, and valid characters are `[a-z0-9_]`. The first character cannot be a number.

      The value must be unique within an EntityType/FeatureGroup.

      Throws:
      ApiException - if the remote call fails
    • createFeatureAsync

      public final OperationFuture<Feature,CreateFeatureOperationMetadata> createFeatureAsync(FeatureGroupName parent, Feature feature, String featureId)
      Creates a new Feature in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         FeatureGroupName parent = FeatureGroupName.of("[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]");
         Feature feature = Feature.newBuilder().build();
         String featureId = "featureId-420503887";
         Feature response =
             featureRegistryServiceClient.createFeatureAsync(parent, feature, featureId).get();
       }
       
      Parameters:
      parent - Required. The resource name of the EntityType or FeatureGroup to create a Feature. Format for entity_type as parent: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` Format for feature_group as parent: `projects/{project}/locations/{location}/featureGroups/{feature_group}`
      feature - Required. The Feature to create.
      featureId - Required. The ID to use for the Feature, which will become the final component of the Feature's resource name.

      This value may be up to 128 characters, and valid characters are `[a-z0-9_]`. The first character cannot be a number.

      The value must be unique within an EntityType/FeatureGroup.

      Throws:
      ApiException - if the remote call fails
    • createFeatureAsync

      public final OperationFuture<Feature,CreateFeatureOperationMetadata> createFeatureAsync(String parent, Feature feature, String featureId)
      Creates a new Feature in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         String parent =
             EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]")
                 .toString();
         Feature feature = Feature.newBuilder().build();
         String featureId = "featureId-420503887";
         Feature response =
             featureRegistryServiceClient.createFeatureAsync(parent, feature, featureId).get();
       }
       
      Parameters:
      parent - Required. The resource name of the EntityType or FeatureGroup to create a Feature. Format for entity_type as parent: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` Format for feature_group as parent: `projects/{project}/locations/{location}/featureGroups/{feature_group}`
      feature - Required. The Feature to create.
      featureId - Required. The ID to use for the Feature, which will become the final component of the Feature's resource name.

      This value may be up to 128 characters, and valid characters are `[a-z0-9_]`. The first character cannot be a number.

      The value must be unique within an EntityType/FeatureGroup.

      Throws:
      ApiException - if the remote call fails
    • createFeatureAsync

      public final OperationFuture<Feature,CreateFeatureOperationMetadata> createFeatureAsync(CreateFeatureRequest request)
      Creates a new Feature in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         CreateFeatureRequest request =
             CreateFeatureRequest.newBuilder()
                 .setParent(
                     EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]")
                         .toString())
                 .setFeature(Feature.newBuilder().build())
                 .setFeatureId("featureId-420503887")
                 .build();
         Feature response = featureRegistryServiceClient.createFeatureAsync(request).get();
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • createFeatureOperationCallable

      public final OperationCallable<CreateFeatureRequest,Feature,CreateFeatureOperationMetadata> createFeatureOperationCallable()
      Creates a new Feature in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         CreateFeatureRequest request =
             CreateFeatureRequest.newBuilder()
                 .setParent(
                     EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]")
                         .toString())
                 .setFeature(Feature.newBuilder().build())
                 .setFeatureId("featureId-420503887")
                 .build();
         OperationFuture<Feature, CreateFeatureOperationMetadata> future =
             featureRegistryServiceClient.createFeatureOperationCallable().futureCall(request);
         // Do something.
         Feature response = future.get();
       }
       
    • createFeatureCallable

      public final UnaryCallable<CreateFeatureRequest,Operation> createFeatureCallable()
      Creates a new Feature in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         CreateFeatureRequest request =
             CreateFeatureRequest.newBuilder()
                 .setParent(
                     EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]")
                         .toString())
                 .setFeature(Feature.newBuilder().build())
                 .setFeatureId("featureId-420503887")
                 .build();
         ApiFuture<Operation> future =
             featureRegistryServiceClient.createFeatureCallable().futureCall(request);
         // Do something.
         Operation response = future.get();
       }
       
    • batchCreateFeaturesAsync

      Creates a batch of Features in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         EntityTypeName parent =
             EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]");
         List<CreateFeatureRequest> requests = new ArrayList<>();
         BatchCreateFeaturesResponse response =
             featureRegistryServiceClient.batchCreateFeaturesAsync(parent, requests).get();
       }
       
      Parameters:
      parent - Required. The resource name of the EntityType/FeatureGroup to create the batch of Features under. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` `projects/{project}/locations/{location}/featureGroups/{feature_group}`
      requests - Required. The request message specifying the Features to create. All Features must be created under the same parent EntityType / FeatureGroup. The `parent` field in each child request message can be omitted. If `parent` is set in a child request, then the value must match the `parent` value in this request message.
      Throws:
      ApiException - if the remote call fails
    • batchCreateFeaturesAsync

      Creates a batch of Features in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         FeatureGroupName parent = FeatureGroupName.of("[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]");
         List<CreateFeatureRequest> requests = new ArrayList<>();
         BatchCreateFeaturesResponse response =
             featureRegistryServiceClient.batchCreateFeaturesAsync(parent, requests).get();
       }
       
      Parameters:
      parent - Required. The resource name of the EntityType/FeatureGroup to create the batch of Features under. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` `projects/{project}/locations/{location}/featureGroups/{feature_group}`
      requests - Required. The request message specifying the Features to create. All Features must be created under the same parent EntityType / FeatureGroup. The `parent` field in each child request message can be omitted. If `parent` is set in a child request, then the value must match the `parent` value in this request message.
      Throws:
      ApiException - if the remote call fails
    • batchCreateFeaturesAsync

      Creates a batch of Features in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         String parent =
             EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]")
                 .toString();
         List<CreateFeatureRequest> requests = new ArrayList<>();
         BatchCreateFeaturesResponse response =
             featureRegistryServiceClient.batchCreateFeaturesAsync(parent, requests).get();
       }
       
      Parameters:
      parent - Required. The resource name of the EntityType/FeatureGroup to create the batch of Features under. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` `projects/{project}/locations/{location}/featureGroups/{feature_group}`
      requests - Required. The request message specifying the Features to create. All Features must be created under the same parent EntityType / FeatureGroup. The `parent` field in each child request message can be omitted. If `parent` is set in a child request, then the value must match the `parent` value in this request message.
      Throws:
      ApiException - if the remote call fails
    • batchCreateFeaturesAsync

      Creates a batch of Features in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         BatchCreateFeaturesRequest request =
             BatchCreateFeaturesRequest.newBuilder()
                 .setParent(
                     EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]")
                         .toString())
                 .addAllRequests(new ArrayList<CreateFeatureRequest>())
                 .build();
         BatchCreateFeaturesResponse response =
             featureRegistryServiceClient.batchCreateFeaturesAsync(request).get();
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • batchCreateFeaturesOperationCallable

      Creates a batch of Features in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         BatchCreateFeaturesRequest request =
             BatchCreateFeaturesRequest.newBuilder()
                 .setParent(
                     EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]")
                         .toString())
                 .addAllRequests(new ArrayList<CreateFeatureRequest>())
                 .build();
         OperationFuture<BatchCreateFeaturesResponse, BatchCreateFeaturesOperationMetadata> future =
             featureRegistryServiceClient.batchCreateFeaturesOperationCallable().futureCall(request);
         // Do something.
         BatchCreateFeaturesResponse response = future.get();
       }
       
    • batchCreateFeaturesCallable

      public final UnaryCallable<BatchCreateFeaturesRequest,Operation> batchCreateFeaturesCallable()
      Creates a batch of Features in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         BatchCreateFeaturesRequest request =
             BatchCreateFeaturesRequest.newBuilder()
                 .setParent(
                     EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]")
                         .toString())
                 .addAllRequests(new ArrayList<CreateFeatureRequest>())
                 .build();
         ApiFuture<Operation> future =
             featureRegistryServiceClient.batchCreateFeaturesCallable().futureCall(request);
         // Do something.
         Operation response = future.get();
       }
       
    • getFeature

      public final Feature getFeature(FeatureName name)
      Gets details of a single Feature.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         FeatureName name =
             FeatureName.ofProjectLocationFeatureGroupFeatureName(
                 "[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]", "[FEATURE]");
         Feature response = featureRegistryServiceClient.getFeature(name);
       }
       
      Parameters:
      name - Required. The name of the Feature resource. Format for entity_type as parent: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` Format for feature_group as parent: `projects/{project}/locations/{location}/featureGroups/{feature_group}`
      Throws:
      ApiException - if the remote call fails
    • getFeature

      public final Feature getFeature(String name)
      Gets details of a single Feature.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         String name =
             FeatureName.ofProjectLocationFeaturestoreEntityTypeFeatureName(
                     "[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]", "[FEATURE]")
                 .toString();
         Feature response = featureRegistryServiceClient.getFeature(name);
       }
       
      Parameters:
      name - Required. The name of the Feature resource. Format for entity_type as parent: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` Format for feature_group as parent: `projects/{project}/locations/{location}/featureGroups/{feature_group}`
      Throws:
      ApiException - if the remote call fails
    • getFeature

      public final Feature getFeature(GetFeatureRequest request)
      Gets details of a single Feature.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         GetFeatureRequest request =
             GetFeatureRequest.newBuilder()
                 .setName(
                     FeatureName.ofProjectLocationFeatureGroupFeatureName(
                             "[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]", "[FEATURE]")
                         .toString())
                 .build();
         Feature response = featureRegistryServiceClient.getFeature(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • getFeatureCallable

      public final UnaryCallable<GetFeatureRequest,Feature> getFeatureCallable()
      Gets details of a single Feature.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         GetFeatureRequest request =
             GetFeatureRequest.newBuilder()
                 .setName(
                     FeatureName.ofProjectLocationFeatureGroupFeatureName(
                             "[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]", "[FEATURE]")
                         .toString())
                 .build();
         ApiFuture<Feature> future =
             featureRegistryServiceClient.getFeatureCallable().futureCall(request);
         // Do something.
         Feature response = future.get();
       }
       
    • listFeatures

      Lists Features in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         EntityTypeName parent =
             EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]");
         for (Feature element : featureRegistryServiceClient.listFeatures(parent).iterateAll()) {
           // doThingsWith(element);
         }
       }
       
      Parameters:
      parent - Required. The resource name of the Location to list Features. Format for entity_type as parent: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` Format for feature_group as parent: `projects/{project}/locations/{location}/featureGroups/{feature_group}`
      Throws:
      ApiException - if the remote call fails
    • listFeatures

      Lists Features in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         FeatureGroupName parent = FeatureGroupName.of("[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]");
         for (Feature element : featureRegistryServiceClient.listFeatures(parent).iterateAll()) {
           // doThingsWith(element);
         }
       }
       
      Parameters:
      parent - Required. The resource name of the Location to list Features. Format for entity_type as parent: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` Format for feature_group as parent: `projects/{project}/locations/{location}/featureGroups/{feature_group}`
      Throws:
      ApiException - if the remote call fails
    • listFeatures

      Lists Features in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         String parent =
             EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]")
                 .toString();
         for (Feature element : featureRegistryServiceClient.listFeatures(parent).iterateAll()) {
           // doThingsWith(element);
         }
       }
       
      Parameters:
      parent - Required. The resource name of the Location to list Features. Format for entity_type as parent: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` Format for feature_group as parent: `projects/{project}/locations/{location}/featureGroups/{feature_group}`
      Throws:
      ApiException - if the remote call fails
    • listFeatures

      Lists Features in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         ListFeaturesRequest request =
             ListFeaturesRequest.newBuilder()
                 .setParent(
                     EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]")
                         .toString())
                 .setFilter("filter-1274492040")
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .setOrderBy("orderBy-1207110587")
                 .setReadMask(FieldMask.newBuilder().build())
                 .setLatestStatsCount(-878108489)
                 .build();
         for (Feature element : featureRegistryServiceClient.listFeatures(request).iterateAll()) {
           // doThingsWith(element);
         }
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • listFeaturesPagedCallable

      Lists Features in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         ListFeaturesRequest request =
             ListFeaturesRequest.newBuilder()
                 .setParent(
                     EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]")
                         .toString())
                 .setFilter("filter-1274492040")
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .setOrderBy("orderBy-1207110587")
                 .setReadMask(FieldMask.newBuilder().build())
                 .setLatestStatsCount(-878108489)
                 .build();
         ApiFuture<Feature> future =
             featureRegistryServiceClient.listFeaturesPagedCallable().futureCall(request);
         // Do something.
         for (Feature element : future.get().iterateAll()) {
           // doThingsWith(element);
         }
       }
       
    • listFeaturesCallable

      public final UnaryCallable<ListFeaturesRequest,ListFeaturesResponse> listFeaturesCallable()
      Lists Features in a given FeatureGroup.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         ListFeaturesRequest request =
             ListFeaturesRequest.newBuilder()
                 .setParent(
                     EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]")
                         .toString())
                 .setFilter("filter-1274492040")
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .setOrderBy("orderBy-1207110587")
                 .setReadMask(FieldMask.newBuilder().build())
                 .setLatestStatsCount(-878108489)
                 .build();
         while (true) {
           ListFeaturesResponse response =
               featureRegistryServiceClient.listFeaturesCallable().call(request);
           for (Feature element : response.getFeaturesList()) {
             // doThingsWith(element);
           }
           String nextPageToken = response.getNextPageToken();
           if (!Strings.isNullOrEmpty(nextPageToken)) {
             request = request.toBuilder().setPageToken(nextPageToken).build();
           } else {
             break;
           }
         }
       }
       
    • updateFeatureAsync

      public final OperationFuture<Feature,UpdateFeatureOperationMetadata> updateFeatureAsync(Feature feature, com.google.protobuf.FieldMask updateMask)
      Updates the parameters of a single Feature.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         Feature feature = Feature.newBuilder().build();
         FieldMask updateMask = FieldMask.newBuilder().build();
         Feature response = featureRegistryServiceClient.updateFeatureAsync(feature, updateMask).get();
       }
       
      Parameters:
      feature - Required. The Feature's `name` field is used to identify the Feature to be updated. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}` `projects/{project}/locations/{location}/featureGroups/{feature_group}/features/{feature}`
      updateMask - Field mask is used to specify the fields to be overwritten in the Features resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields.

      Updatable fields:

      * `description` * `labels` * `disable_monitoring` (Not supported for FeatureRegistryService Feature) * `point_of_contact` (Not supported for FeaturestoreService FeatureStore)

      Throws:
      ApiException - if the remote call fails
    • updateFeatureAsync

      public final OperationFuture<Feature,UpdateFeatureOperationMetadata> updateFeatureAsync(UpdateFeatureRequest request)
      Updates the parameters of a single Feature.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         UpdateFeatureRequest request =
             UpdateFeatureRequest.newBuilder()
                 .setFeature(Feature.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         Feature response = featureRegistryServiceClient.updateFeatureAsync(request).get();
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • updateFeatureOperationCallable

      public final OperationCallable<UpdateFeatureRequest,Feature,UpdateFeatureOperationMetadata> updateFeatureOperationCallable()
      Updates the parameters of a single Feature.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         UpdateFeatureRequest request =
             UpdateFeatureRequest.newBuilder()
                 .setFeature(Feature.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         OperationFuture<Feature, UpdateFeatureOperationMetadata> future =
             featureRegistryServiceClient.updateFeatureOperationCallable().futureCall(request);
         // Do something.
         Feature response = future.get();
       }
       
    • updateFeatureCallable

      public final UnaryCallable<UpdateFeatureRequest,Operation> updateFeatureCallable()
      Updates the parameters of a single Feature.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         UpdateFeatureRequest request =
             UpdateFeatureRequest.newBuilder()
                 .setFeature(Feature.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         ApiFuture<Operation> future =
             featureRegistryServiceClient.updateFeatureCallable().futureCall(request);
         // Do something.
         Operation response = future.get();
       }
       
    • deleteFeatureAsync

      public final OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> deleteFeatureAsync(FeatureName name)
      Deletes a single Feature.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         FeatureName name =
             FeatureName.ofProjectLocationFeatureGroupFeatureName(
                 "[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]", "[FEATURE]");
         featureRegistryServiceClient.deleteFeatureAsync(name).get();
       }
       
      Parameters:
      name - Required. The name of the Features to be deleted. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}` `projects/{project}/locations/{location}/featureGroups/{feature_group}/features/{feature}`
      Throws:
      ApiException - if the remote call fails
    • deleteFeatureAsync

      public final OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> deleteFeatureAsync(String name)
      Deletes a single Feature.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         String name =
             FeatureName.ofProjectLocationFeaturestoreEntityTypeFeatureName(
                     "[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]", "[FEATURE]")
                 .toString();
         featureRegistryServiceClient.deleteFeatureAsync(name).get();
       }
       
      Parameters:
      name - Required. The name of the Features to be deleted. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}` `projects/{project}/locations/{location}/featureGroups/{feature_group}/features/{feature}`
      Throws:
      ApiException - if the remote call fails
    • deleteFeatureAsync

      public final OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> deleteFeatureAsync(DeleteFeatureRequest request)
      Deletes a single Feature.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         DeleteFeatureRequest request =
             DeleteFeatureRequest.newBuilder()
                 .setName(
                     FeatureName.ofProjectLocationFeatureGroupFeatureName(
                             "[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]", "[FEATURE]")
                         .toString())
                 .build();
         featureRegistryServiceClient.deleteFeatureAsync(request).get();
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • deleteFeatureOperationCallable

      public final OperationCallable<DeleteFeatureRequest,com.google.protobuf.Empty,DeleteOperationMetadata> deleteFeatureOperationCallable()
      Deletes a single Feature.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         DeleteFeatureRequest request =
             DeleteFeatureRequest.newBuilder()
                 .setName(
                     FeatureName.ofProjectLocationFeatureGroupFeatureName(
                             "[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]", "[FEATURE]")
                         .toString())
                 .build();
         OperationFuture<Empty, DeleteOperationMetadata> future =
             featureRegistryServiceClient.deleteFeatureOperationCallable().futureCall(request);
         // Do something.
         future.get();
       }
       
    • deleteFeatureCallable

      public final UnaryCallable<DeleteFeatureRequest,Operation> deleteFeatureCallable()
      Deletes a single Feature.

      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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         DeleteFeatureRequest request =
             DeleteFeatureRequest.newBuilder()
                 .setName(
                     FeatureName.ofProjectLocationFeatureGroupFeatureName(
                             "[PROJECT]", "[LOCATION]", "[FEATURE_GROUP]", "[FEATURE]")
                         .toString())
                 .build();
         ApiFuture<Operation> future =
             featureRegistryServiceClient.deleteFeatureCallable().futureCall(request);
         // Do something.
         future.get();
       }
       
    • listLocations

      Lists information about the supported locations for this service.

      Sample code:

      
       // This snippet has been automatically generated and should be regarded as a code template only.
       // It will require modifications to work:
       // - It may require correct/in-range values for request initialization.
       // - It may require specifying regional endpoints when creating the service client as shown in
       // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
       try (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         ListLocationsRequest request =
             ListLocationsRequest.newBuilder()
                 .setName("name3373707")
                 .setFilter("filter-1274492040")
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .build();
         for (Location element : featureRegistryServiceClient.listLocations(request).iterateAll()) {
           // doThingsWith(element);
         }
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • listLocationsPagedCallable

      Lists information about the supported locations for this service.

      Sample code:

      
       // This snippet has been automatically generated and should be regarded as a code template only.
       // It will require modifications to work:
       // - It may require correct/in-range values for request initialization.
       // - It may require specifying regional endpoints when creating the service client as shown in
       // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
       try (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         ListLocationsRequest request =
             ListLocationsRequest.newBuilder()
                 .setName("name3373707")
                 .setFilter("filter-1274492040")
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .build();
         ApiFuture<Location> future =
             featureRegistryServiceClient.listLocationsPagedCallable().futureCall(request);
         // Do something.
         for (Location element : future.get().iterateAll()) {
           // doThingsWith(element);
         }
       }
       
    • listLocationsCallable

      public final UnaryCallable<ListLocationsRequest,ListLocationsResponse> listLocationsCallable()
      Lists information about the supported locations for this service.

      Sample code:

      
       // This snippet has been automatically generated and should be regarded as a code template only.
       // It will require modifications to work:
       // - It may require correct/in-range values for request initialization.
       // - It may require specifying regional endpoints when creating the service client as shown in
       // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
       try (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         ListLocationsRequest request =
             ListLocationsRequest.newBuilder()
                 .setName("name3373707")
                 .setFilter("filter-1274492040")
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .build();
         while (true) {
           ListLocationsResponse response =
               featureRegistryServiceClient.listLocationsCallable().call(request);
           for (Location element : response.getLocationsList()) {
             // doThingsWith(element);
           }
           String nextPageToken = response.getNextPageToken();
           if (!Strings.isNullOrEmpty(nextPageToken)) {
             request = request.toBuilder().setPageToken(nextPageToken).build();
           } else {
             break;
           }
         }
       }
       
    • getLocation

      public final Location getLocation(GetLocationRequest request)
      Gets information about a location.

      Sample code:

      
       // This snippet has been automatically generated and should be regarded as a code template only.
       // It will require modifications to work:
       // - It may require correct/in-range values for request initialization.
       // - It may require specifying regional endpoints when creating the service client as shown in
       // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
       try (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
         Location response = featureRegistryServiceClient.getLocation(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • getLocationCallable

      public final UnaryCallable<GetLocationRequest,Location> getLocationCallable()
      Gets information about a location.

      Sample code:

      
       // This snippet has been automatically generated and should be regarded as a code template only.
       // It will require modifications to work:
       // - It may require correct/in-range values for request initialization.
       // - It may require specifying regional endpoints when creating the service client as shown in
       // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
       try (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
         ApiFuture<Location> future =
             featureRegistryServiceClient.getLocationCallable().futureCall(request);
         // Do something.
         Location response = future.get();
       }
       
    • setIamPolicy

      public final Policy setIamPolicy(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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         SetIamPolicyRequest request =
             SetIamPolicyRequest.newBuilder()
                 .setResource(
                     EndpointName.ofProjectLocationEndpointName(
                             "[PROJECT]", "[LOCATION]", "[ENDPOINT]")
                         .toString())
                 .setPolicy(Policy.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         Policy response = featureRegistryServiceClient.setIamPolicy(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • setIamPolicyCallable

      public final UnaryCallable<SetIamPolicyRequest,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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         SetIamPolicyRequest request =
             SetIamPolicyRequest.newBuilder()
                 .setResource(
                     EndpointName.ofProjectLocationEndpointName(
                             "[PROJECT]", "[LOCATION]", "[ENDPOINT]")
                         .toString())
                 .setPolicy(Policy.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         ApiFuture<Policy> future =
             featureRegistryServiceClient.setIamPolicyCallable().futureCall(request);
         // Do something.
         Policy response = future.get();
       }
       
    • getIamPolicy

      public final Policy getIamPolicy(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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         GetIamPolicyRequest request =
             GetIamPolicyRequest.newBuilder()
                 .setResource(
                     EndpointName.ofProjectLocationEndpointName(
                             "[PROJECT]", "[LOCATION]", "[ENDPOINT]")
                         .toString())
                 .setOptions(GetPolicyOptions.newBuilder().build())
                 .build();
         Policy response = featureRegistryServiceClient.getIamPolicy(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • getIamPolicyCallable

      public final UnaryCallable<GetIamPolicyRequest,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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         GetIamPolicyRequest request =
             GetIamPolicyRequest.newBuilder()
                 .setResource(
                     EndpointName.ofProjectLocationEndpointName(
                             "[PROJECT]", "[LOCATION]", "[ENDPOINT]")
                         .toString())
                 .setOptions(GetPolicyOptions.newBuilder().build())
                 .build();
         ApiFuture<Policy> future =
             featureRegistryServiceClient.getIamPolicyCallable().futureCall(request);
         // Do something.
         Policy response = future.get();
       }
       
    • testIamPermissions

      public final TestIamPermissionsResponse testIamPermissions(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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         TestIamPermissionsRequest request =
             TestIamPermissionsRequest.newBuilder()
                 .setResource(
                     EndpointName.ofProjectLocationEndpointName(
                             "[PROJECT]", "[LOCATION]", "[ENDPOINT]")
                         .toString())
                 .addAllPermissions(new ArrayList<String>())
                 .build();
         TestIamPermissionsResponse response =
             featureRegistryServiceClient.testIamPermissions(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • testIamPermissionsCallable

      public final UnaryCallable<TestIamPermissionsRequest,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 (FeatureRegistryServiceClient featureRegistryServiceClient =
           FeatureRegistryServiceClient.create()) {
         TestIamPermissionsRequest request =
             TestIamPermissionsRequest.newBuilder()
                 .setResource(
                     EndpointName.ofProjectLocationEndpointName(
                             "[PROJECT]", "[LOCATION]", "[ENDPOINT]")
                         .toString())
                 .addAllPermissions(new ArrayList<String>())
                 .build();
         ApiFuture<TestIamPermissionsResponse> future =
             featureRegistryServiceClient.testIamPermissionsCallable().futureCall(request);
         // Do something.
         TestIamPermissionsResponse response = future.get();
       }
       
    • close

      public final void close()
      Specified by:
      close in interface AutoCloseable
    • shutdown

      public void shutdown()
      Specified by:
      shutdown in interface BackgroundResource
    • isShutdown

      public boolean isShutdown()
      Specified by:
      isShutdown in interface BackgroundResource
    • isTerminated

      public boolean isTerminated()
      Specified by:
      isTerminated in interface BackgroundResource
    • shutdownNow

      public void shutdownNow()
      Specified by:
      shutdownNow in interface BackgroundResource
    • awaitTermination

      public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException
      Specified by:
      awaitTermination in interface BackgroundResource
      Throws:
      InterruptedException