Class DataCatalogClient

java.lang.Object
com.google.cloud.datacatalog.v1beta1.DataCatalogClient
All Implemented Interfaces:
BackgroundResource, AutoCloseable

@BetaApi @Deprecated @Generated("by gapic-generator-java") public class DataCatalogClient extends Object implements BackgroundResource
Deprecated.
This class is deprecated and will be removed in the next major version update.
Service Description: Deprecated: Please use Dataplex Catalog instead.

Data Catalog API service allows clients to discover, understand, and manage their data.

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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
   LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
   String entryGroupId = "entryGroupId1228924712";
   EntryGroup entryGroup = EntryGroup.newBuilder().build();
   EntryGroup response = dataCatalogClient.createEntryGroup(parent, entryGroupId, entryGroup);
 }
 

Note: close() needs to be called on the DataCatalogClient 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

SearchCatalog

Searches Data Catalog for multiple resources like entries, tags that match a query.

This is a custom method (https://cloud.google.com/apis/design/custom_methods) and does not return the complete resource, only the resource identifier and high level fields. Clients can subsequently call `Get` methods.

Note that Data Catalog search queries do not guarantee full recall. Query results that match your query may not be returned, even in subsequent result pages. Also note that results returned (and not returned) can vary across repeated search queries.

See [Data Catalog Search Syntax](https://cloud.google.com/data-catalog/docs/how-to/search-reference) for more information.

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

  • searchCatalog(SearchCatalogRequest request)

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

  • searchCatalog(SearchCatalogRequest.Scope scope, String query)

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

  • searchCatalogPagedCallable()

  • searchCatalogCallable()

CreateEntryGroup

A maximum of 10,000 entry groups may be created per organization across all locations.

Users should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

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

  • createEntryGroup(CreateEntryGroupRequest request)

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

  • createEntryGroup(LocationName parent, String entryGroupId, EntryGroup entryGroup)

  • createEntryGroup(String parent, String entryGroupId, EntryGroup entryGroup)

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

  • createEntryGroupCallable()

UpdateEntryGroup

Updates an EntryGroup. The user should enable the Data Catalog API in the project identified by the `entry_group.name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

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

  • updateEntryGroup(UpdateEntryGroupRequest request)

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

  • updateEntryGroup(EntryGroup entryGroup)

  • updateEntryGroup(EntryGroup entryGroup, 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.

  • updateEntryGroupCallable()

GetEntryGroup

Gets an EntryGroup.

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

  • getEntryGroup(GetEntryGroupRequest request)

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

  • getEntryGroup(EntryGroupName name)

  • getEntryGroup(String name)

  • getEntryGroup(EntryGroupName name, FieldMask readMask)

  • getEntryGroup(String name, FieldMask readMask)

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

  • getEntryGroupCallable()

DeleteEntryGroup

Deletes an EntryGroup. Only entry groups that do not contain entries can be deleted. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

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

  • deleteEntryGroup(DeleteEntryGroupRequest request)

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

  • deleteEntryGroup(EntryGroupName name)

  • deleteEntryGroup(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.

  • deleteEntryGroupCallable()

ListEntryGroups

Lists entry groups.

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

  • listEntryGroups(ListEntryGroupsRequest request)

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

  • listEntryGroups(LocationName parent)

  • listEntryGroups(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.

  • listEntryGroupsPagedCallable()

  • listEntryGroupsCallable()

CreateEntry

Creates an entry. Only entries of 'FILESET' type or user-specified type can be created.

Users should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

A maximum of 100,000 entries may be created per entry group.

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

  • createEntry(CreateEntryRequest request)

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

  • createEntry(EntryGroupName parent, String entryId, Entry entry)

  • createEntry(String parent, String entryId, Entry entry)

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

  • createEntryCallable()

UpdateEntry

Updates an existing entry. Users should enable the Data Catalog API in the project identified by the `entry.name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

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

  • updateEntry(UpdateEntryRequest request)

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

  • updateEntry(Entry entry)

  • updateEntry(Entry entry, 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.

  • updateEntryCallable()

DeleteEntry

Deletes an existing entry. Only entries created through [CreateEntry][google.cloud.datacatalog.v1beta1.DataCatalog.CreateEntry] method can be deleted. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

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

  • deleteEntry(DeleteEntryRequest request)

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

  • deleteEntry(EntryName name)

  • deleteEntry(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.

  • deleteEntryCallable()

GetEntry

Gets an entry.

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

  • getEntry(GetEntryRequest request)

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

  • getEntry(EntryName name)

  • getEntry(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.

  • getEntryCallable()

LookupEntry

Get an entry by target resource name. This method allows clients to use the resource name from the source Google Cloud Platform service to get the Data Catalog Entry.

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

  • lookupEntry(LookupEntryRequest request)

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

  • lookupEntryCallable()

ListEntries

Lists entries.

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

  • listEntries(ListEntriesRequest request)

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

  • listEntries(EntryGroupName parent)

  • listEntries(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.

  • listEntriesPagedCallable()

  • listEntriesCallable()

CreateTagTemplate

Creates a tag template. The user should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project](https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

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

  • createTagTemplate(CreateTagTemplateRequest request)

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

  • createTagTemplate(LocationName parent, String tagTemplateId, TagTemplate tagTemplate)

  • createTagTemplate(String parent, String tagTemplateId, TagTemplate tagTemplate)

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

  • createTagTemplateCallable()

GetTagTemplate

Gets a tag template.

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

  • getTagTemplate(GetTagTemplateRequest request)

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

  • getTagTemplate(TagTemplateName name)

  • getTagTemplate(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.

  • getTagTemplateCallable()

UpdateTagTemplate

Updates a tag template. This method cannot be used to update the fields of a template. The tag template fields are represented as separate resources and should be updated using their own create/update/delete methods. Users should enable the Data Catalog API in the project identified by the `tag_template.name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

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

  • updateTagTemplate(UpdateTagTemplateRequest request)

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

  • updateTagTemplate(TagTemplate tagTemplate)

  • updateTagTemplate(TagTemplate tagTemplate, 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.

  • updateTagTemplateCallable()

DeleteTagTemplate

Deletes a tag template and all tags using the template. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

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

  • deleteTagTemplate(DeleteTagTemplateRequest request)

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

  • deleteTagTemplate(TagTemplateName name, boolean force)

  • deleteTagTemplate(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.

  • deleteTagTemplateCallable()

CreateTagTemplateField

Creates a field in a tag template. The user should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project](https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

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

  • createTagTemplateField(CreateTagTemplateFieldRequest request)

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

  • createTagTemplateField(TagTemplateName parent, String tagTemplateFieldId, TagTemplateField tagTemplateField)

  • createTagTemplateField(String parent, String tagTemplateFieldId, TagTemplateField tagTemplateField)

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

  • createTagTemplateFieldCallable()

UpdateTagTemplateField

Updates a field in a tag template. This method cannot be used to update the field type. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

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

  • updateTagTemplateField(UpdateTagTemplateFieldRequest request)

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

  • updateTagTemplateField(TagTemplateFieldName name, TagTemplateField tagTemplateField)

  • updateTagTemplateField(String name, TagTemplateField tagTemplateField)

  • updateTagTemplateField(TagTemplateFieldName name, TagTemplateField tagTemplateField, FieldMask updateMask)

  • updateTagTemplateField(String name, TagTemplateField tagTemplateField, 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.

  • updateTagTemplateFieldCallable()

RenameTagTemplateField

Renames a field in a tag template. The user should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project](https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

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

  • renameTagTemplateField(RenameTagTemplateFieldRequest request)

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

  • renameTagTemplateField(TagTemplateFieldName name, String newTagTemplateFieldId)

  • renameTagTemplateField(String name, String newTagTemplateFieldId)

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

  • renameTagTemplateFieldCallable()

RenameTagTemplateFieldEnumValue

Renames an enum value in a tag template. The enum values have to be unique within one enum field. Thus, an enum value cannot be renamed with a name used in any other enum value within the same enum field.

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

  • renameTagTemplateFieldEnumValue(RenameTagTemplateFieldEnumValueRequest request)

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

  • renameTagTemplateFieldEnumValue(TagTemplateFieldEnumValueName name, String newEnumValueDisplayName)

  • renameTagTemplateFieldEnumValue(String name, String newEnumValueDisplayName)

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

  • renameTagTemplateFieldEnumValueCallable()

DeleteTagTemplateField

Deletes a field in a tag template and all uses of that field. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

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

  • deleteTagTemplateField(DeleteTagTemplateFieldRequest request)

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

  • deleteTagTemplateField(TagTemplateFieldName name, boolean force)

  • deleteTagTemplateField(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.

  • deleteTagTemplateFieldCallable()

CreateTag

Creates a tag on an [Entry][google.cloud.datacatalog.v1beta1.Entry]. Note: The project identified by the `parent` parameter for the [tag](https://cloud.google.com/data-catalog/docs/reference/rest/v1beta1/projects.locations.entryGroups.entries.tags/create#path-parameters) and the [tag template](https://cloud.google.com/data-catalog/docs/reference/rest/v1beta1/projects.locations.tagTemplates/create#path-parameters) used to create the tag must be from the same organization.

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

  • createTag(CreateTagRequest request)

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

  • createTag(EntryName parent, Tag tag)

  • createTag(String parent, Tag tag)

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

  • createTagCallable()

UpdateTag

Updates an existing tag.

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

  • updateTag(UpdateTagRequest request)

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

  • updateTag(Tag tag)

  • updateTag(Tag tag, 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.

  • updateTagCallable()

DeleteTag

Deletes a tag.

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

  • deleteTag(DeleteTagRequest request)

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

  • deleteTag(EntryName name)

  • deleteTag(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.

  • deleteTagCallable()

ListTags

Lists tags assigned to an [Entry][google.cloud.datacatalog.v1beta1.Entry]. The [columns][google.cloud.datacatalog.v1beta1.Tag.column] in the response are lowercased.

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

  • listTags(ListTagsRequest request)

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

  • listTags(EntryName parent)

  • listTags(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.

  • listTagsPagedCallable()

  • listTagsCallable()

SetIamPolicy

Sets the access control policy for a resource. Replaces any existing policy. Supported resources are: - Tag templates. - Entries. - Entry groups. Note, this method cannot be used to manage policies for BigQuery, Pub/Sub and any external Google Cloud Platform resources synced to Data Catalog.

Callers must have following Google IAM permission - `datacatalog.tagTemplates.setIamPolicy` to set policies on tag templates. - `datacatalog.entries.setIamPolicy` to set policies on entries. - `datacatalog.entryGroups.setIamPolicy` to set policies on entry groups.

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

  • setIamPolicy(SetIamPolicyRequest request)

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

  • setIamPolicy(ResourceName resource, Policy policy)

  • setIamPolicy(String resource, Policy policy)

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. A `NOT_FOUND` error is returned if the resource does not exist. An empty policy is returned if the resource exists but does not have a policy set on it.

Supported resources are: - Tag templates. - Entries. - Entry groups. Note, this method cannot be used to manage policies for BigQuery, Pub/Sub and any external Google Cloud Platform resources synced to Data Catalog.

Callers must have following Google IAM permission - `datacatalog.tagTemplates.getIamPolicy` to get policies on tag templates. - `datacatalog.entries.getIamPolicy` to get policies on entries. - `datacatalog.entryGroups.getIamPolicy` to get policies on entry groups.

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

  • getIamPolicy(GetIamPolicyRequest request)

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

  • getIamPolicy(ResourceName resource)

  • getIamPolicy(String resource)

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 the caller's permissions on a resource. If the resource does not exist, an empty set of permissions is returned (We don't return a `NOT_FOUND` error).

Supported resources are: - Tag templates. - Entries. - Entry groups. Note, this method cannot be used to manage policies for BigQuery, Pub/Sub and any external Google Cloud Platform resources synced to Data Catalog.

A caller is not required to have Google IAM permission to make this request.

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 DataCatalogSettings 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
 DataCatalogSettings dataCatalogSettings =
     DataCatalogSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 DataCatalogClient dataCatalogClient = DataCatalogClient.create(dataCatalogSettings);
 

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
 DataCatalogSettings dataCatalogSettings =
     DataCatalogSettings.newBuilder().setEndpoint(myEndpoint).build();
 DataCatalogClient dataCatalogClient = DataCatalogClient.create(dataCatalogSettings);
 

To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:


 // This snippet has been automatically generated and should be regarded as a code template only.
 // It will require modifications to work:
 // - It may require correct/in-range values for request initialization.
 // - It may require specifying regional endpoints when creating the service client as shown in
 // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
 DataCatalogSettings dataCatalogSettings = DataCatalogSettings.newHttpJsonBuilder().build();
 DataCatalogClient dataCatalogClient = DataCatalogClient.create(dataCatalogSettings);
 

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

  • Constructor Details

    • DataCatalogClient

      protected DataCatalogClient(DataCatalogSettings settings) throws IOException
      Deprecated.
      Constructs an instance of DataCatalogClient, 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
    • DataCatalogClient

      protected DataCatalogClient(DataCatalogStub stub)
      Deprecated.
  • Method Details

    • create

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

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

      public final DataCatalogSettings getSettings()
      Deprecated.
    • getStub

      public DataCatalogStub getStub()
      Deprecated.
    • searchCatalog

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Searches Data Catalog for multiple resources like entries, tags that match a query.

      This is a custom method (https://cloud.google.com/apis/design/custom_methods) and does not return the complete resource, only the resource identifier and high level fields. Clients can subsequently call `Get` methods.

      Note that Data Catalog search queries do not guarantee full recall. Query results that match your query may not be returned, even in subsequent result pages. Also note that results returned (and not returned) can vary across repeated search queries.

      See [Data Catalog Search Syntax](https://cloud.google.com/data-catalog/docs/how-to/search-reference) for more information.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         SearchCatalogRequest.Scope scope = SearchCatalogRequest.Scope.newBuilder().build();
         String query = "query107944136";
         for (SearchCatalogResult element :
             dataCatalogClient.searchCatalog(scope, query).iterateAll()) {
           // doThingsWith(element);
         }
       }
       
      Parameters:
      scope - Required. The scope of this search request. A `scope` that has empty `include_org_ids`, `include_project_ids` AND false `include_gcp_public_datasets` is considered invalid. Data Catalog will return an error in such a case.
      query - Optional. The query string in search query syntax. An empty query string will result in all data assets (in the specified scope) that the user has access to. Query strings can be simple as "x" or more qualified as:
      • name:x
      • column:x
      • description:y

      Note: Query tokens need to have a minimum of 3 characters for substring matching to work correctly. See [Data Catalog Search Syntax](https://cloud.google.com/data-catalog/docs/how-to/search-reference) for more information.

      Throws:
      ApiException - if the remote call fails
    • searchCatalog

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Searches Data Catalog for multiple resources like entries, tags that match a query.

      This is a custom method (https://cloud.google.com/apis/design/custom_methods) and does not return the complete resource, only the resource identifier and high level fields. Clients can subsequently call `Get` methods.

      Note that Data Catalog search queries do not guarantee full recall. Query results that match your query may not be returned, even in subsequent result pages. Also note that results returned (and not returned) can vary across repeated search queries.

      See [Data Catalog Search Syntax](https://cloud.google.com/data-catalog/docs/how-to/search-reference) for more information.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         SearchCatalogRequest request =
             SearchCatalogRequest.newBuilder()
                 .setScope(SearchCatalogRequest.Scope.newBuilder().build())
                 .setQuery("query107944136")
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .setOrderBy("orderBy-1207110587")
                 .build();
         for (SearchCatalogResult element : dataCatalogClient.searchCatalog(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
    • searchCatalogPagedCallable

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Searches Data Catalog for multiple resources like entries, tags that match a query.

      This is a custom method (https://cloud.google.com/apis/design/custom_methods) and does not return the complete resource, only the resource identifier and high level fields. Clients can subsequently call `Get` methods.

      Note that Data Catalog search queries do not guarantee full recall. Query results that match your query may not be returned, even in subsequent result pages. Also note that results returned (and not returned) can vary across repeated search queries.

      See [Data Catalog Search Syntax](https://cloud.google.com/data-catalog/docs/how-to/search-reference) for more information.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         SearchCatalogRequest request =
             SearchCatalogRequest.newBuilder()
                 .setScope(SearchCatalogRequest.Scope.newBuilder().build())
                 .setQuery("query107944136")
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .setOrderBy("orderBy-1207110587")
                 .build();
         ApiFuture<SearchCatalogResult> future =
             dataCatalogClient.searchCatalogPagedCallable().futureCall(request);
         // Do something.
         for (SearchCatalogResult element : future.get().iterateAll()) {
           // doThingsWith(element);
         }
       }
       
    • searchCatalogCallable

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Searches Data Catalog for multiple resources like entries, tags that match a query.

      This is a custom method (https://cloud.google.com/apis/design/custom_methods) and does not return the complete resource, only the resource identifier and high level fields. Clients can subsequently call `Get` methods.

      Note that Data Catalog search queries do not guarantee full recall. Query results that match your query may not be returned, even in subsequent result pages. Also note that results returned (and not returned) can vary across repeated search queries.

      See [Data Catalog Search Syntax](https://cloud.google.com/data-catalog/docs/how-to/search-reference) for more information.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         SearchCatalogRequest request =
             SearchCatalogRequest.newBuilder()
                 .setScope(SearchCatalogRequest.Scope.newBuilder().build())
                 .setQuery("query107944136")
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .setOrderBy("orderBy-1207110587")
                 .build();
         while (true) {
           SearchCatalogResponse response = dataCatalogClient.searchCatalogCallable().call(request);
           for (SearchCatalogResult element : response.getResultsList()) {
             // doThingsWith(element);
           }
           String nextPageToken = response.getNextPageToken();
           if (!Strings.isNullOrEmpty(nextPageToken)) {
             request = request.toBuilder().setPageToken(nextPageToken).build();
           } else {
             break;
           }
         }
       }
       
    • createEntryGroup

      @Deprecated public final EntryGroup createEntryGroup(LocationName parent, String entryGroupId, EntryGroup entryGroup)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      A maximum of 10,000 entry groups may be created per organization across all locations.

      Users should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
         String entryGroupId = "entryGroupId1228924712";
         EntryGroup entryGroup = EntryGroup.newBuilder().build();
         EntryGroup response = dataCatalogClient.createEntryGroup(parent, entryGroupId, entryGroup);
       }
       
      Parameters:
      parent - Required. The name of the project this entry group is in. Example:
      • projects/{project_id}/locations/{location}

      Note that this EntryGroup and its child resources may not actually be stored in the location in this name.

      entryGroupId - Required. The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.
      entryGroup - The entry group to create. Defaults to an empty entry group.
      Throws:
      ApiException - if the remote call fails
    • createEntryGroup

      @Deprecated public final EntryGroup createEntryGroup(String parent, String entryGroupId, EntryGroup entryGroup)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      A maximum of 10,000 entry groups may be created per organization across all locations.

      Users should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
         String entryGroupId = "entryGroupId1228924712";
         EntryGroup entryGroup = EntryGroup.newBuilder().build();
         EntryGroup response = dataCatalogClient.createEntryGroup(parent, entryGroupId, entryGroup);
       }
       
      Parameters:
      parent - Required. The name of the project this entry group is in. Example:
      • projects/{project_id}/locations/{location}

      Note that this EntryGroup and its child resources may not actually be stored in the location in this name.

      entryGroupId - Required. The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters.
      entryGroup - The entry group to create. Defaults to an empty entry group.
      Throws:
      ApiException - if the remote call fails
    • createEntryGroup

      @Deprecated public final EntryGroup createEntryGroup(CreateEntryGroupRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      A maximum of 10,000 entry groups may be created per organization across all locations.

      Users should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         CreateEntryGroupRequest request =
             CreateEntryGroupRequest.newBuilder()
                 .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                 .setEntryGroupId("entryGroupId1228924712")
                 .setEntryGroup(EntryGroup.newBuilder().build())
                 .build();
         EntryGroup response = dataCatalogClient.createEntryGroup(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • createEntryGroupCallable

      @Deprecated public final UnaryCallable<CreateEntryGroupRequest,EntryGroup> createEntryGroupCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      A maximum of 10,000 entry groups may be created per organization across all locations.

      Users should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         CreateEntryGroupRequest request =
             CreateEntryGroupRequest.newBuilder()
                 .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                 .setEntryGroupId("entryGroupId1228924712")
                 .setEntryGroup(EntryGroup.newBuilder().build())
                 .build();
         ApiFuture<EntryGroup> future =
             dataCatalogClient.createEntryGroupCallable().futureCall(request);
         // Do something.
         EntryGroup response = future.get();
       }
       
    • updateEntryGroup

      @Deprecated public final EntryGroup updateEntryGroup(EntryGroup entryGroup)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates an EntryGroup. The user should enable the Data Catalog API in the project identified by the `entry_group.name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         EntryGroup entryGroup = EntryGroup.newBuilder().build();
         EntryGroup response = dataCatalogClient.updateEntryGroup(entryGroup);
       }
       
      Parameters:
      entryGroup - Required. The updated entry group. "name" field must be set.
      Throws:
      ApiException - if the remote call fails
    • updateEntryGroup

      @Deprecated public final EntryGroup updateEntryGroup(EntryGroup entryGroup, com.google.protobuf.FieldMask updateMask)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates an EntryGroup. The user should enable the Data Catalog API in the project identified by the `entry_group.name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         EntryGroup entryGroup = EntryGroup.newBuilder().build();
         FieldMask updateMask = FieldMask.newBuilder().build();
         EntryGroup response = dataCatalogClient.updateEntryGroup(entryGroup, updateMask);
       }
       
      Parameters:
      entryGroup - Required. The updated entry group. "name" field must be set.
      updateMask - Names of fields whose values to overwrite on an entry group.

      If this parameter is absent or empty, all modifiable fields are overwritten. If such fields are non-required and omitted in the request body, their values are emptied.

      Throws:
      ApiException - if the remote call fails
    • updateEntryGroup

      @Deprecated public final EntryGroup updateEntryGroup(UpdateEntryGroupRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates an EntryGroup. The user should enable the Data Catalog API in the project identified by the `entry_group.name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         UpdateEntryGroupRequest request =
             UpdateEntryGroupRequest.newBuilder()
                 .setEntryGroup(EntryGroup.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         EntryGroup response = dataCatalogClient.updateEntryGroup(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • updateEntryGroupCallable

      @Deprecated public final UnaryCallable<UpdateEntryGroupRequest,EntryGroup> updateEntryGroupCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates an EntryGroup. The user should enable the Data Catalog API in the project identified by the `entry_group.name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         UpdateEntryGroupRequest request =
             UpdateEntryGroupRequest.newBuilder()
                 .setEntryGroup(EntryGroup.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         ApiFuture<EntryGroup> future =
             dataCatalogClient.updateEntryGroupCallable().futureCall(request);
         // Do something.
         EntryGroup response = future.get();
       }
       
    • getEntryGroup

      @Deprecated public final EntryGroup getEntryGroup(EntryGroupName name)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets an EntryGroup.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         EntryGroupName name = EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]");
         EntryGroup response = dataCatalogClient.getEntryGroup(name);
       }
       
      Parameters:
      name - Required. The name of the entry group. For example, `projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}`.
      Throws:
      ApiException - if the remote call fails
    • getEntryGroup

      @Deprecated public final EntryGroup getEntryGroup(String name)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets an EntryGroup.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String name = EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]").toString();
         EntryGroup response = dataCatalogClient.getEntryGroup(name);
       }
       
      Parameters:
      name - Required. The name of the entry group. For example, `projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}`.
      Throws:
      ApiException - if the remote call fails
    • getEntryGroup

      @Deprecated public final EntryGroup getEntryGroup(EntryGroupName name, com.google.protobuf.FieldMask readMask)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets an EntryGroup.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         EntryGroupName name = EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]");
         FieldMask readMask = FieldMask.newBuilder().build();
         EntryGroup response = dataCatalogClient.getEntryGroup(name, readMask);
       }
       
      Parameters:
      name - Required. The name of the entry group. For example, `projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}`.
      readMask - The fields to return. If not set or empty, all fields are returned.
      Throws:
      ApiException - if the remote call fails
    • getEntryGroup

      @Deprecated public final EntryGroup getEntryGroup(String name, com.google.protobuf.FieldMask readMask)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets an EntryGroup.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String name = EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]").toString();
         FieldMask readMask = FieldMask.newBuilder().build();
         EntryGroup response = dataCatalogClient.getEntryGroup(name, readMask);
       }
       
      Parameters:
      name - Required. The name of the entry group. For example, `projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}`.
      readMask - The fields to return. If not set or empty, all fields are returned.
      Throws:
      ApiException - if the remote call fails
    • getEntryGroup

      @Deprecated public final EntryGroup getEntryGroup(GetEntryGroupRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets an EntryGroup.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         GetEntryGroupRequest request =
             GetEntryGroupRequest.newBuilder()
                 .setName(EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]").toString())
                 .setReadMask(FieldMask.newBuilder().build())
                 .build();
         EntryGroup response = dataCatalogClient.getEntryGroup(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • getEntryGroupCallable

      @Deprecated public final UnaryCallable<GetEntryGroupRequest,EntryGroup> getEntryGroupCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets an EntryGroup.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         GetEntryGroupRequest request =
             GetEntryGroupRequest.newBuilder()
                 .setName(EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]").toString())
                 .setReadMask(FieldMask.newBuilder().build())
                 .build();
         ApiFuture<EntryGroup> future = dataCatalogClient.getEntryGroupCallable().futureCall(request);
         // Do something.
         EntryGroup response = future.get();
       }
       
    • deleteEntryGroup

      @Deprecated public final void deleteEntryGroup(EntryGroupName name)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes an EntryGroup. Only entry groups that do not contain entries can be deleted. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         EntryGroupName name = EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]");
         dataCatalogClient.deleteEntryGroup(name);
       }
       
      Parameters:
      name - Required. The name of the entry group. For example, `projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}`.
      Throws:
      ApiException - if the remote call fails
    • deleteEntryGroup

      @Deprecated public final void deleteEntryGroup(String name)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes an EntryGroup. Only entry groups that do not contain entries can be deleted. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String name = EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]").toString();
         dataCatalogClient.deleteEntryGroup(name);
       }
       
      Parameters:
      name - Required. The name of the entry group. For example, `projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}`.
      Throws:
      ApiException - if the remote call fails
    • deleteEntryGroup

      @Deprecated public final void deleteEntryGroup(DeleteEntryGroupRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes an EntryGroup. Only entry groups that do not contain entries can be deleted. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         DeleteEntryGroupRequest request =
             DeleteEntryGroupRequest.newBuilder()
                 .setName(EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]").toString())
                 .setForce(true)
                 .build();
         dataCatalogClient.deleteEntryGroup(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • deleteEntryGroupCallable

      @Deprecated public final UnaryCallable<DeleteEntryGroupRequest,com.google.protobuf.Empty> deleteEntryGroupCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes an EntryGroup. Only entry groups that do not contain entries can be deleted. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         DeleteEntryGroupRequest request =
             DeleteEntryGroupRequest.newBuilder()
                 .setName(EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]").toString())
                 .setForce(true)
                 .build();
         ApiFuture<Empty> future = dataCatalogClient.deleteEntryGroupCallable().futureCall(request);
         // Do something.
         future.get();
       }
       
    • listEntryGroups

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Lists entry groups.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
         for (EntryGroup element : dataCatalogClient.listEntryGroups(parent).iterateAll()) {
           // doThingsWith(element);
         }
       }
       
      Parameters:
      parent - Required. The name of the location that contains the entry groups, which can be provided in URL format. Example:
      • projects/{project_id}/locations/{location}
      Throws:
      ApiException - if the remote call fails
    • listEntryGroups

      @Deprecated public final DataCatalogClient.ListEntryGroupsPagedResponse listEntryGroups(String parent)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Lists entry groups.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
         for (EntryGroup element : dataCatalogClient.listEntryGroups(parent).iterateAll()) {
           // doThingsWith(element);
         }
       }
       
      Parameters:
      parent - Required. The name of the location that contains the entry groups, which can be provided in URL format. Example:
      • projects/{project_id}/locations/{location}
      Throws:
      ApiException - if the remote call fails
    • listEntryGroups

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Lists entry groups.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         ListEntryGroupsRequest request =
             ListEntryGroupsRequest.newBuilder()
                 .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .build();
         for (EntryGroup element : dataCatalogClient.listEntryGroups(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
    • listEntryGroupsPagedCallable

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Lists entry groups.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         ListEntryGroupsRequest request =
             ListEntryGroupsRequest.newBuilder()
                 .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .build();
         ApiFuture<EntryGroup> future =
             dataCatalogClient.listEntryGroupsPagedCallable().futureCall(request);
         // Do something.
         for (EntryGroup element : future.get().iterateAll()) {
           // doThingsWith(element);
         }
       }
       
    • listEntryGroupsCallable

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Lists entry groups.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         ListEntryGroupsRequest request =
             ListEntryGroupsRequest.newBuilder()
                 .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .build();
         while (true) {
           ListEntryGroupsResponse response =
               dataCatalogClient.listEntryGroupsCallable().call(request);
           for (EntryGroup element : response.getEntryGroupsList()) {
             // doThingsWith(element);
           }
           String nextPageToken = response.getNextPageToken();
           if (!Strings.isNullOrEmpty(nextPageToken)) {
             request = request.toBuilder().setPageToken(nextPageToken).build();
           } else {
             break;
           }
         }
       }
       
    • createEntry

      @Deprecated public final Entry createEntry(EntryGroupName parent, String entryId, Entry entry)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates an entry. Only entries of 'FILESET' type or user-specified type can be created.

      Users should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      A maximum of 100,000 entries may be created per entry group.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         EntryGroupName parent = EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]");
         String entryId = "entryId-1591558867";
         Entry entry = Entry.newBuilder().build();
         Entry response = dataCatalogClient.createEntry(parent, entryId, entry);
       }
       
      Parameters:
      parent - Required. The name of the entry group this entry is in. Example:
      • projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}

      Note that this Entry and its child resources may not actually be stored in the location in this name.

      entryId - Required. The id of the entry to create.
      entry - Required. The entry to create.
      Throws:
      ApiException - if the remote call fails
    • createEntry

      @Deprecated public final Entry createEntry(String parent, String entryId, Entry entry)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates an entry. Only entries of 'FILESET' type or user-specified type can be created.

      Users should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      A maximum of 100,000 entries may be created per entry group.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String parent = EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]").toString();
         String entryId = "entryId-1591558867";
         Entry entry = Entry.newBuilder().build();
         Entry response = dataCatalogClient.createEntry(parent, entryId, entry);
       }
       
      Parameters:
      parent - Required. The name of the entry group this entry is in. Example:
      • projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}

      Note that this Entry and its child resources may not actually be stored in the location in this name.

      entryId - Required. The id of the entry to create.
      entry - Required. The entry to create.
      Throws:
      ApiException - if the remote call fails
    • createEntry

      @Deprecated public final Entry createEntry(CreateEntryRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates an entry. Only entries of 'FILESET' type or user-specified type can be created.

      Users should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      A maximum of 100,000 entries may be created per entry group.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         CreateEntryRequest request =
             CreateEntryRequest.newBuilder()
                 .setParent(EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]").toString())
                 .setEntryId("entryId-1591558867")
                 .setEntry(Entry.newBuilder().build())
                 .build();
         Entry response = dataCatalogClient.createEntry(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • createEntryCallable

      @Deprecated public final UnaryCallable<CreateEntryRequest,Entry> createEntryCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates an entry. Only entries of 'FILESET' type or user-specified type can be created.

      Users should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      A maximum of 100,000 entries may be created per entry group.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         CreateEntryRequest request =
             CreateEntryRequest.newBuilder()
                 .setParent(EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]").toString())
                 .setEntryId("entryId-1591558867")
                 .setEntry(Entry.newBuilder().build())
                 .build();
         ApiFuture<Entry> future = dataCatalogClient.createEntryCallable().futureCall(request);
         // Do something.
         Entry response = future.get();
       }
       
    • updateEntry

      @Deprecated public final Entry updateEntry(Entry entry)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates an existing entry. Users should enable the Data Catalog API in the project identified by the `entry.name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         Entry entry = Entry.newBuilder().build();
         Entry response = dataCatalogClient.updateEntry(entry);
       }
       
      Parameters:
      entry - Required. The updated entry. The "name" field must be set.
      Throws:
      ApiException - if the remote call fails
    • updateEntry

      @Deprecated public final Entry updateEntry(Entry entry, com.google.protobuf.FieldMask updateMask)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates an existing entry. Users should enable the Data Catalog API in the project identified by the `entry.name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         Entry entry = Entry.newBuilder().build();
         FieldMask updateMask = FieldMask.newBuilder().build();
         Entry response = dataCatalogClient.updateEntry(entry, updateMask);
       }
       
      Parameters:
      entry - Required. The updated entry. The "name" field must be set.
      updateMask - Names of fields whose values to overwrite on an entry.

      If this parameter is absent or empty, all modifiable fields are overwritten. If such fields are non-required and omitted in the request body, their values are emptied.

      The following fields are modifiable:

      • For entries with type `DATA_STREAM`: * `schema`
      • For entries with type `FILESET`: * `schema` * `display_name` * `description` * `gcs_fileset_spec` * `gcs_fileset_spec.file_patterns`
      • For entries with `user_specified_type`: * `schema` * `display_name` * `description` * `user_specified_type` * `user_specified_system` * `linked_resource` * `source_system_timestamps`
      Throws:
      ApiException - if the remote call fails
    • updateEntry

      @Deprecated public final Entry updateEntry(UpdateEntryRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates an existing entry. Users should enable the Data Catalog API in the project identified by the `entry.name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         UpdateEntryRequest request =
             UpdateEntryRequest.newBuilder()
                 .setEntry(Entry.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         Entry response = dataCatalogClient.updateEntry(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • updateEntryCallable

      @Deprecated public final UnaryCallable<UpdateEntryRequest,Entry> updateEntryCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates an existing entry. Users should enable the Data Catalog API in the project identified by the `entry.name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         UpdateEntryRequest request =
             UpdateEntryRequest.newBuilder()
                 .setEntry(Entry.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         ApiFuture<Entry> future = dataCatalogClient.updateEntryCallable().futureCall(request);
         // Do something.
         Entry response = future.get();
       }
       
    • deleteEntry

      @Deprecated public final void deleteEntry(EntryName name)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes an existing entry. Only entries created through [CreateEntry][google.cloud.datacatalog.v1beta1.DataCatalog.CreateEntry] method can be deleted. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         EntryName name = EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]");
         dataCatalogClient.deleteEntry(name);
       }
       
      Parameters:
      name - Required. The name of the entry. Example:
      • projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
      Throws:
      ApiException - if the remote call fails
    • deleteEntry

      @Deprecated public final void deleteEntry(String name)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes an existing entry. Only entries created through [CreateEntry][google.cloud.datacatalog.v1beta1.DataCatalog.CreateEntry] method can be deleted. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String name = EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString();
         dataCatalogClient.deleteEntry(name);
       }
       
      Parameters:
      name - Required. The name of the entry. Example:
      • projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
      Throws:
      ApiException - if the remote call fails
    • deleteEntry

      @Deprecated public final void deleteEntry(DeleteEntryRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes an existing entry. Only entries created through [CreateEntry][google.cloud.datacatalog.v1beta1.DataCatalog.CreateEntry] method can be deleted. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         DeleteEntryRequest request =
             DeleteEntryRequest.newBuilder()
                 .setName(
                     EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString())
                 .build();
         dataCatalogClient.deleteEntry(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • deleteEntryCallable

      @Deprecated public final UnaryCallable<DeleteEntryRequest,com.google.protobuf.Empty> deleteEntryCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes an existing entry. Only entries created through [CreateEntry][google.cloud.datacatalog.v1beta1.DataCatalog.CreateEntry] method can be deleted. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         DeleteEntryRequest request =
             DeleteEntryRequest.newBuilder()
                 .setName(
                     EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString())
                 .build();
         ApiFuture<Empty> future = dataCatalogClient.deleteEntryCallable().futureCall(request);
         // Do something.
         future.get();
       }
       
    • getEntry

      @Deprecated public final Entry getEntry(EntryName name)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets an entry.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         EntryName name = EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]");
         Entry response = dataCatalogClient.getEntry(name);
       }
       
      Parameters:
      name - Required. The name of the entry. Example:
      • projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
      Throws:
      ApiException - if the remote call fails
    • getEntry

      @Deprecated public final Entry getEntry(String name)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets an entry.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String name = EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString();
         Entry response = dataCatalogClient.getEntry(name);
       }
       
      Parameters:
      name - Required. The name of the entry. Example:
      • projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
      Throws:
      ApiException - if the remote call fails
    • getEntry

      @Deprecated public final Entry getEntry(GetEntryRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets an entry.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         GetEntryRequest request =
             GetEntryRequest.newBuilder()
                 .setName(
                     EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString())
                 .build();
         Entry response = dataCatalogClient.getEntry(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • getEntryCallable

      @Deprecated public final UnaryCallable<GetEntryRequest,Entry> getEntryCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets an entry.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         GetEntryRequest request =
             GetEntryRequest.newBuilder()
                 .setName(
                     EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString())
                 .build();
         ApiFuture<Entry> future = dataCatalogClient.getEntryCallable().futureCall(request);
         // Do something.
         Entry response = future.get();
       }
       
    • lookupEntry

      @Deprecated public final Entry lookupEntry(LookupEntryRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Get an entry by target resource name. This method allows clients to use the resource name from the source Google Cloud Platform service to get the Data Catalog Entry.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         LookupEntryRequest request = LookupEntryRequest.newBuilder().build();
         Entry response = dataCatalogClient.lookupEntry(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • lookupEntryCallable

      @Deprecated public final UnaryCallable<LookupEntryRequest,Entry> lookupEntryCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Get an entry by target resource name. This method allows clients to use the resource name from the source Google Cloud Platform service to get the Data Catalog Entry.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         LookupEntryRequest request = LookupEntryRequest.newBuilder().build();
         ApiFuture<Entry> future = dataCatalogClient.lookupEntryCallable().futureCall(request);
         // Do something.
         Entry response = future.get();
       }
       
    • listEntries

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Lists entries.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         EntryGroupName parent = EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]");
         for (Entry element : dataCatalogClient.listEntries(parent).iterateAll()) {
           // doThingsWith(element);
         }
       }
       
      Parameters:
      parent - Required. The name of the entry group that contains the entries, which can be provided in URL format. Example:
      • projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}
      Throws:
      ApiException - if the remote call fails
    • listEntries

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Lists entries.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String parent = EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]").toString();
         for (Entry element : dataCatalogClient.listEntries(parent).iterateAll()) {
           // doThingsWith(element);
         }
       }
       
      Parameters:
      parent - Required. The name of the entry group that contains the entries, which can be provided in URL format. Example:
      • projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}
      Throws:
      ApiException - if the remote call fails
    • listEntries

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Lists entries.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         ListEntriesRequest request =
             ListEntriesRequest.newBuilder()
                 .setParent(EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]").toString())
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .setReadMask(FieldMask.newBuilder().build())
                 .build();
         for (Entry element : dataCatalogClient.listEntries(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
    • listEntriesPagedCallable

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Lists entries.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         ListEntriesRequest request =
             ListEntriesRequest.newBuilder()
                 .setParent(EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]").toString())
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .setReadMask(FieldMask.newBuilder().build())
                 .build();
         ApiFuture<Entry> future = dataCatalogClient.listEntriesPagedCallable().futureCall(request);
         // Do something.
         for (Entry element : future.get().iterateAll()) {
           // doThingsWith(element);
         }
       }
       
    • listEntriesCallable

      @Deprecated public final UnaryCallable<ListEntriesRequest,ListEntriesResponse> listEntriesCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Lists entries.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         ListEntriesRequest request =
             ListEntriesRequest.newBuilder()
                 .setParent(EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]").toString())
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .setReadMask(FieldMask.newBuilder().build())
                 .build();
         while (true) {
           ListEntriesResponse response = dataCatalogClient.listEntriesCallable().call(request);
           for (Entry element : response.getEntriesList()) {
             // doThingsWith(element);
           }
           String nextPageToken = response.getNextPageToken();
           if (!Strings.isNullOrEmpty(nextPageToken)) {
             request = request.toBuilder().setPageToken(nextPageToken).build();
           } else {
             break;
           }
         }
       }
       
    • createTagTemplate

      @Deprecated public final TagTemplate createTagTemplate(LocationName parent, String tagTemplateId, TagTemplate tagTemplate)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates a tag template. The user should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project](https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
         String tagTemplateId = "tagTemplateId-1438776721";
         TagTemplate tagTemplate = TagTemplate.newBuilder().build();
         TagTemplate response =
             dataCatalogClient.createTagTemplate(parent, tagTemplateId, tagTemplate);
       }
       
      Parameters:
      parent - Required. The name of the project and the template location [region](https://cloud.google.com/data-catalog/docs/concepts/regions.

      Example:

      • projects/{project_id}/locations/us-central1
      tagTemplateId - Required. The id of the tag template to create.
      tagTemplate - Required. The tag template to create.
      Throws:
      ApiException - if the remote call fails
    • createTagTemplate

      @Deprecated public final TagTemplate createTagTemplate(String parent, String tagTemplateId, TagTemplate tagTemplate)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates a tag template. The user should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project](https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
         String tagTemplateId = "tagTemplateId-1438776721";
         TagTemplate tagTemplate = TagTemplate.newBuilder().build();
         TagTemplate response =
             dataCatalogClient.createTagTemplate(parent, tagTemplateId, tagTemplate);
       }
       
      Parameters:
      parent - Required. The name of the project and the template location [region](https://cloud.google.com/data-catalog/docs/concepts/regions.

      Example:

      • projects/{project_id}/locations/us-central1
      tagTemplateId - Required. The id of the tag template to create.
      tagTemplate - Required. The tag template to create.
      Throws:
      ApiException - if the remote call fails
    • createTagTemplate

      @Deprecated public final TagTemplate createTagTemplate(CreateTagTemplateRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates a tag template. The user should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project](https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         CreateTagTemplateRequest request =
             CreateTagTemplateRequest.newBuilder()
                 .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                 .setTagTemplateId("tagTemplateId-1438776721")
                 .setTagTemplate(TagTemplate.newBuilder().build())
                 .build();
         TagTemplate response = dataCatalogClient.createTagTemplate(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • createTagTemplateCallable

      @Deprecated public final UnaryCallable<CreateTagTemplateRequest,TagTemplate> createTagTemplateCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates a tag template. The user should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project](https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         CreateTagTemplateRequest request =
             CreateTagTemplateRequest.newBuilder()
                 .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
                 .setTagTemplateId("tagTemplateId-1438776721")
                 .setTagTemplate(TagTemplate.newBuilder().build())
                 .build();
         ApiFuture<TagTemplate> future =
             dataCatalogClient.createTagTemplateCallable().futureCall(request);
         // Do something.
         TagTemplate response = future.get();
       }
       
    • getTagTemplate

      @Deprecated public final TagTemplate getTagTemplate(TagTemplateName name)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets a tag template.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         TagTemplateName name = TagTemplateName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]");
         TagTemplate response = dataCatalogClient.getTagTemplate(name);
       }
       
      Parameters:
      name - Required. The name of the tag template. Example:
      • projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}
      Throws:
      ApiException - if the remote call fails
    • getTagTemplate

      @Deprecated public final TagTemplate getTagTemplate(String name)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets a tag template.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String name = TagTemplateName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]").toString();
         TagTemplate response = dataCatalogClient.getTagTemplate(name);
       }
       
      Parameters:
      name - Required. The name of the tag template. Example:
      • projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}
      Throws:
      ApiException - if the remote call fails
    • getTagTemplate

      @Deprecated public final TagTemplate getTagTemplate(GetTagTemplateRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets a tag template.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         GetTagTemplateRequest request =
             GetTagTemplateRequest.newBuilder()
                 .setName(TagTemplateName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]").toString())
                 .build();
         TagTemplate response = dataCatalogClient.getTagTemplate(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • getTagTemplateCallable

      @Deprecated public final UnaryCallable<GetTagTemplateRequest,TagTemplate> getTagTemplateCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets a tag template.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         GetTagTemplateRequest request =
             GetTagTemplateRequest.newBuilder()
                 .setName(TagTemplateName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]").toString())
                 .build();
         ApiFuture<TagTemplate> future =
             dataCatalogClient.getTagTemplateCallable().futureCall(request);
         // Do something.
         TagTemplate response = future.get();
       }
       
    • updateTagTemplate

      @Deprecated public final TagTemplate updateTagTemplate(TagTemplate tagTemplate)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates a tag template. This method cannot be used to update the fields of a template. The tag template fields are represented as separate resources and should be updated using their own create/update/delete methods. Users should enable the Data Catalog API in the project identified by the `tag_template.name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         TagTemplate tagTemplate = TagTemplate.newBuilder().build();
         TagTemplate response = dataCatalogClient.updateTagTemplate(tagTemplate);
       }
       
      Parameters:
      tagTemplate - Required. The template to update. The "name" field must be set.
      Throws:
      ApiException - if the remote call fails
    • updateTagTemplate

      @Deprecated public final TagTemplate updateTagTemplate(TagTemplate tagTemplate, com.google.protobuf.FieldMask updateMask)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates a tag template. This method cannot be used to update the fields of a template. The tag template fields are represented as separate resources and should be updated using their own create/update/delete methods. Users should enable the Data Catalog API in the project identified by the `tag_template.name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         TagTemplate tagTemplate = TagTemplate.newBuilder().build();
         FieldMask updateMask = FieldMask.newBuilder().build();
         TagTemplate response = dataCatalogClient.updateTagTemplate(tagTemplate, updateMask);
       }
       
      Parameters:
      tagTemplate - Required. The template to update. The "name" field must be set.
      updateMask - Names of fields whose values to overwrite on a tag template. Currently, only `display_name` can be overwritten.

      In general, if this parameter is absent or empty, all modifiable fields are overwritten. If such fields are non-required and omitted in the request body, their values are emptied.

      Throws:
      ApiException - if the remote call fails
    • updateTagTemplate

      @Deprecated public final TagTemplate updateTagTemplate(UpdateTagTemplateRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates a tag template. This method cannot be used to update the fields of a template. The tag template fields are represented as separate resources and should be updated using their own create/update/delete methods. Users should enable the Data Catalog API in the project identified by the `tag_template.name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         UpdateTagTemplateRequest request =
             UpdateTagTemplateRequest.newBuilder()
                 .setTagTemplate(TagTemplate.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         TagTemplate response = dataCatalogClient.updateTagTemplate(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • updateTagTemplateCallable

      @Deprecated public final UnaryCallable<UpdateTagTemplateRequest,TagTemplate> updateTagTemplateCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates a tag template. This method cannot be used to update the fields of a template. The tag template fields are represented as separate resources and should be updated using their own create/update/delete methods. Users should enable the Data Catalog API in the project identified by the `tag_template.name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         UpdateTagTemplateRequest request =
             UpdateTagTemplateRequest.newBuilder()
                 .setTagTemplate(TagTemplate.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         ApiFuture<TagTemplate> future =
             dataCatalogClient.updateTagTemplateCallable().futureCall(request);
         // Do something.
         TagTemplate response = future.get();
       }
       
    • deleteTagTemplate

      @Deprecated public final void deleteTagTemplate(TagTemplateName name, boolean force)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes a tag template and all tags using the template. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         TagTemplateName name = TagTemplateName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]");
         boolean force = true;
         dataCatalogClient.deleteTagTemplate(name, force);
       }
       
      Parameters:
      name - Required. The name of the tag template to delete. Example:
      • projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}
      force - Required. Currently, this field must always be set to `true`. This confirms the deletion of any possible tags using this template. `force = false` will be supported in the future.
      Throws:
      ApiException - if the remote call fails
    • deleteTagTemplate

      @Deprecated public final void deleteTagTemplate(String name, boolean force)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes a tag template and all tags using the template. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String name = TagTemplateName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]").toString();
         boolean force = true;
         dataCatalogClient.deleteTagTemplate(name, force);
       }
       
      Parameters:
      name - Required. The name of the tag template to delete. Example:
      • projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}
      force - Required. Currently, this field must always be set to `true`. This confirms the deletion of any possible tags using this template. `force = false` will be supported in the future.
      Throws:
      ApiException - if the remote call fails
    • deleteTagTemplate

      @Deprecated public final void deleteTagTemplate(DeleteTagTemplateRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes a tag template and all tags using the template. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         DeleteTagTemplateRequest request =
             DeleteTagTemplateRequest.newBuilder()
                 .setName(TagTemplateName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]").toString())
                 .setForce(true)
                 .build();
         dataCatalogClient.deleteTagTemplate(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • deleteTagTemplateCallable

      @Deprecated public final UnaryCallable<DeleteTagTemplateRequest,com.google.protobuf.Empty> deleteTagTemplateCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes a tag template and all tags using the template. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         DeleteTagTemplateRequest request =
             DeleteTagTemplateRequest.newBuilder()
                 .setName(TagTemplateName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]").toString())
                 .setForce(true)
                 .build();
         ApiFuture<Empty> future = dataCatalogClient.deleteTagTemplateCallable().futureCall(request);
         // Do something.
         future.get();
       }
       
    • createTagTemplateField

      @Deprecated public final TagTemplateField createTagTemplateField(TagTemplateName parent, String tagTemplateFieldId, TagTemplateField tagTemplateField)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates a field in a tag template. The user should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project](https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         TagTemplateName parent = TagTemplateName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]");
         String tagTemplateFieldId = "tagTemplateFieldId-1556835615";
         TagTemplateField tagTemplateField = TagTemplateField.newBuilder().build();
         TagTemplateField response =
             dataCatalogClient.createTagTemplateField(parent, tagTemplateFieldId, tagTemplateField);
       }
       
      Parameters:
      parent - Required. The name of the project and the template location [region](https://cloud.google.com/data-catalog/docs/concepts/regions).

      Example:

      • projects/{project_id}/locations/us-central1/tagTemplates/{tag_template_id}
      tagTemplateFieldId - Required. The ID of the tag template field to create. Field ids can contain letters (both uppercase and lowercase), numbers (0-9), underscores (_) and dashes (-). Field IDs must be at least 1 character long and at most 128 characters long. Field IDs must also be unique within their template.
      tagTemplateField - Required. The tag template field to create.
      Throws:
      ApiException - if the remote call fails
    • createTagTemplateField

      @Deprecated public final TagTemplateField createTagTemplateField(String parent, String tagTemplateFieldId, TagTemplateField tagTemplateField)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates a field in a tag template. The user should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project](https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String parent = TagTemplateName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]").toString();
         String tagTemplateFieldId = "tagTemplateFieldId-1556835615";
         TagTemplateField tagTemplateField = TagTemplateField.newBuilder().build();
         TagTemplateField response =
             dataCatalogClient.createTagTemplateField(parent, tagTemplateFieldId, tagTemplateField);
       }
       
      Parameters:
      parent - Required. The name of the project and the template location [region](https://cloud.google.com/data-catalog/docs/concepts/regions).

      Example:

      • projects/{project_id}/locations/us-central1/tagTemplates/{tag_template_id}
      tagTemplateFieldId - Required. The ID of the tag template field to create. Field ids can contain letters (both uppercase and lowercase), numbers (0-9), underscores (_) and dashes (-). Field IDs must be at least 1 character long and at most 128 characters long. Field IDs must also be unique within their template.
      tagTemplateField - Required. The tag template field to create.
      Throws:
      ApiException - if the remote call fails
    • createTagTemplateField

      @Deprecated public final TagTemplateField createTagTemplateField(CreateTagTemplateFieldRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates a field in a tag template. The user should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project](https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         CreateTagTemplateFieldRequest request =
             CreateTagTemplateFieldRequest.newBuilder()
                 .setParent(TagTemplateName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]").toString())
                 .setTagTemplateFieldId("tagTemplateFieldId-1556835615")
                 .setTagTemplateField(TagTemplateField.newBuilder().build())
                 .build();
         TagTemplateField response = dataCatalogClient.createTagTemplateField(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • createTagTemplateFieldCallable

      @Deprecated public final UnaryCallable<CreateTagTemplateFieldRequest,TagTemplateField> createTagTemplateFieldCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates a field in a tag template. The user should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project](https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         CreateTagTemplateFieldRequest request =
             CreateTagTemplateFieldRequest.newBuilder()
                 .setParent(TagTemplateName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]").toString())
                 .setTagTemplateFieldId("tagTemplateFieldId-1556835615")
                 .setTagTemplateField(TagTemplateField.newBuilder().build())
                 .build();
         ApiFuture<TagTemplateField> future =
             dataCatalogClient.createTagTemplateFieldCallable().futureCall(request);
         // Do something.
         TagTemplateField response = future.get();
       }
       
    • updateTagTemplateField

      @Deprecated public final TagTemplateField updateTagTemplateField(TagTemplateFieldName name, TagTemplateField tagTemplateField)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates a field in a tag template. This method cannot be used to update the field type. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         TagTemplateFieldName name =
             TagTemplateFieldName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]", "[FIELD]");
         TagTemplateField tagTemplateField = TagTemplateField.newBuilder().build();
         TagTemplateField response = dataCatalogClient.updateTagTemplateField(name, tagTemplateField);
       }
       
      Parameters:
      name - Required. The name of the tag template field. Example:
      • projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}/fields/{tag_template_field_id}
      tagTemplateField - Required. The template to update.
      Throws:
      ApiException - if the remote call fails
    • updateTagTemplateField

      @Deprecated public final TagTemplateField updateTagTemplateField(String name, TagTemplateField tagTemplateField)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates a field in a tag template. This method cannot be used to update the field type. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String name =
             TagTemplateFieldName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]", "[FIELD]")
                 .toString();
         TagTemplateField tagTemplateField = TagTemplateField.newBuilder().build();
         TagTemplateField response = dataCatalogClient.updateTagTemplateField(name, tagTemplateField);
       }
       
      Parameters:
      name - Required. The name of the tag template field. Example:
      • projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}/fields/{tag_template_field_id}
      tagTemplateField - Required. The template to update.
      Throws:
      ApiException - if the remote call fails
    • updateTagTemplateField

      @Deprecated public final TagTemplateField updateTagTemplateField(TagTemplateFieldName name, TagTemplateField tagTemplateField, com.google.protobuf.FieldMask updateMask)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates a field in a tag template. This method cannot be used to update the field type. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         TagTemplateFieldName name =
             TagTemplateFieldName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]", "[FIELD]");
         TagTemplateField tagTemplateField = TagTemplateField.newBuilder().build();
         FieldMask updateMask = FieldMask.newBuilder().build();
         TagTemplateField response =
             dataCatalogClient.updateTagTemplateField(name, tagTemplateField, updateMask);
       }
       
      Parameters:
      name - Required. The name of the tag template field. Example:
      • projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}/fields/{tag_template_field_id}
      tagTemplateField - Required. The template to update.
      updateMask - Optional. Names of fields whose values to overwrite on an individual field of a tag template. The following fields are modifiable:

      * `display_name` * `type.enum_type` * `is_required`

      If this parameter is absent or empty, all modifiable fields are overwritten. If such fields are non-required and omitted in the request body, their values are emptied with one exception: when updating an enum type, the provided values are merged with the existing values. Therefore, enum values can only be added, existing enum values cannot be deleted or renamed.

      Additionally, updating a template field from optional to required is

      • not* allowed.
      Throws:
      ApiException - if the remote call fails
    • updateTagTemplateField

      @Deprecated public final TagTemplateField updateTagTemplateField(String name, TagTemplateField tagTemplateField, com.google.protobuf.FieldMask updateMask)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates a field in a tag template. This method cannot be used to update the field type. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String name =
             TagTemplateFieldName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]", "[FIELD]")
                 .toString();
         TagTemplateField tagTemplateField = TagTemplateField.newBuilder().build();
         FieldMask updateMask = FieldMask.newBuilder().build();
         TagTemplateField response =
             dataCatalogClient.updateTagTemplateField(name, tagTemplateField, updateMask);
       }
       
      Parameters:
      name - Required. The name of the tag template field. Example:
      • projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}/fields/{tag_template_field_id}
      tagTemplateField - Required. The template to update.
      updateMask - Optional. Names of fields whose values to overwrite on an individual field of a tag template. The following fields are modifiable:

      * `display_name` * `type.enum_type` * `is_required`

      If this parameter is absent or empty, all modifiable fields are overwritten. If such fields are non-required and omitted in the request body, their values are emptied with one exception: when updating an enum type, the provided values are merged with the existing values. Therefore, enum values can only be added, existing enum values cannot be deleted or renamed.

      Additionally, updating a template field from optional to required is

      • not* allowed.
      Throws:
      ApiException - if the remote call fails
    • updateTagTemplateField

      @Deprecated public final TagTemplateField updateTagTemplateField(UpdateTagTemplateFieldRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates a field in a tag template. This method cannot be used to update the field type. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         UpdateTagTemplateFieldRequest request =
             UpdateTagTemplateFieldRequest.newBuilder()
                 .setName(
                     TagTemplateFieldName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]", "[FIELD]")
                         .toString())
                 .setTagTemplateField(TagTemplateField.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         TagTemplateField response = dataCatalogClient.updateTagTemplateField(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • updateTagTemplateFieldCallable

      @Deprecated public final UnaryCallable<UpdateTagTemplateFieldRequest,TagTemplateField> updateTagTemplateFieldCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates a field in a tag template. This method cannot be used to update the field type. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         UpdateTagTemplateFieldRequest request =
             UpdateTagTemplateFieldRequest.newBuilder()
                 .setName(
                     TagTemplateFieldName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]", "[FIELD]")
                         .toString())
                 .setTagTemplateField(TagTemplateField.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         ApiFuture<TagTemplateField> future =
             dataCatalogClient.updateTagTemplateFieldCallable().futureCall(request);
         // Do something.
         TagTemplateField response = future.get();
       }
       
    • renameTagTemplateField

      @Deprecated public final TagTemplateField renameTagTemplateField(TagTemplateFieldName name, String newTagTemplateFieldId)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Renames a field in a tag template. The user should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project](https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         TagTemplateFieldName name =
             TagTemplateFieldName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]", "[FIELD]");
         String newTagTemplateFieldId = "newTagTemplateFieldId2008993953";
         TagTemplateField response =
             dataCatalogClient.renameTagTemplateField(name, newTagTemplateFieldId);
       }
       
      Parameters:
      name - Required. The name of the tag template. Example:
      • projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}/fields/{tag_template_field_id}
      newTagTemplateFieldId - Required. The new ID of this tag template field. For example, `my_new_field`.
      Throws:
      ApiException - if the remote call fails
    • renameTagTemplateField

      @Deprecated public final TagTemplateField renameTagTemplateField(String name, String newTagTemplateFieldId)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Renames a field in a tag template. The user should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project](https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String name =
             TagTemplateFieldName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]", "[FIELD]")
                 .toString();
         String newTagTemplateFieldId = "newTagTemplateFieldId2008993953";
         TagTemplateField response =
             dataCatalogClient.renameTagTemplateField(name, newTagTemplateFieldId);
       }
       
      Parameters:
      name - Required. The name of the tag template. Example:
      • projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}/fields/{tag_template_field_id}
      newTagTemplateFieldId - Required. The new ID of this tag template field. For example, `my_new_field`.
      Throws:
      ApiException - if the remote call fails
    • renameTagTemplateField

      @Deprecated public final TagTemplateField renameTagTemplateField(RenameTagTemplateFieldRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Renames a field in a tag template. The user should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project](https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         RenameTagTemplateFieldRequest request =
             RenameTagTemplateFieldRequest.newBuilder()
                 .setName(
                     TagTemplateFieldName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]", "[FIELD]")
                         .toString())
                 .setNewTagTemplateFieldId("newTagTemplateFieldId2008993953")
                 .build();
         TagTemplateField response = dataCatalogClient.renameTagTemplateField(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • renameTagTemplateFieldCallable

      @Deprecated public final UnaryCallable<RenameTagTemplateFieldRequest,TagTemplateField> renameTagTemplateFieldCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Renames a field in a tag template. The user should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project](https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         RenameTagTemplateFieldRequest request =
             RenameTagTemplateFieldRequest.newBuilder()
                 .setName(
                     TagTemplateFieldName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]", "[FIELD]")
                         .toString())
                 .setNewTagTemplateFieldId("newTagTemplateFieldId2008993953")
                 .build();
         ApiFuture<TagTemplateField> future =
             dataCatalogClient.renameTagTemplateFieldCallable().futureCall(request);
         // Do something.
         TagTemplateField response = future.get();
       }
       
    • renameTagTemplateFieldEnumValue

      @Deprecated public final TagTemplateField renameTagTemplateFieldEnumValue(TagTemplateFieldEnumValueName name, String newEnumValueDisplayName)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Renames an enum value in a tag template. The enum values have to be unique within one enum field. Thus, an enum value cannot be renamed with a name used in any other enum value within the same enum field.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         TagTemplateFieldEnumValueName name =
             TagTemplateFieldEnumValueName.of(
                 "[PROJECT]",
                 "[LOCATION]",
                 "[TAG_TEMPLATE]",
                 "[TAG_TEMPLATE_FIELD_ID]",
                 "[ENUM_VALUE_DISPLAY_NAME]");
         String newEnumValueDisplayName = "newEnumValueDisplayName-1119629027";
         TagTemplateField response =
             dataCatalogClient.renameTagTemplateFieldEnumValue(name, newEnumValueDisplayName);
       }
       
      Parameters:
      name - Required. The name of the enum field value. Example:
      • projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}/fields/{tag_template_field_id}/enumValues/{enum_value_display_name}
      newEnumValueDisplayName - Required. The new display name of the enum value. For example, `my_new_enum_value`.
      Throws:
      ApiException - if the remote call fails
    • renameTagTemplateFieldEnumValue

      @Deprecated public final TagTemplateField renameTagTemplateFieldEnumValue(String name, String newEnumValueDisplayName)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Renames an enum value in a tag template. The enum values have to be unique within one enum field. Thus, an enum value cannot be renamed with a name used in any other enum value within the same enum field.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String name =
             TagTemplateFieldEnumValueName.of(
                     "[PROJECT]",
                     "[LOCATION]",
                     "[TAG_TEMPLATE]",
                     "[TAG_TEMPLATE_FIELD_ID]",
                     "[ENUM_VALUE_DISPLAY_NAME]")
                 .toString();
         String newEnumValueDisplayName = "newEnumValueDisplayName-1119629027";
         TagTemplateField response =
             dataCatalogClient.renameTagTemplateFieldEnumValue(name, newEnumValueDisplayName);
       }
       
      Parameters:
      name - Required. The name of the enum field value. Example:
      • projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}/fields/{tag_template_field_id}/enumValues/{enum_value_display_name}
      newEnumValueDisplayName - Required. The new display name of the enum value. For example, `my_new_enum_value`.
      Throws:
      ApiException - if the remote call fails
    • renameTagTemplateFieldEnumValue

      @Deprecated public final TagTemplateField renameTagTemplateFieldEnumValue(RenameTagTemplateFieldEnumValueRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Renames an enum value in a tag template. The enum values have to be unique within one enum field. Thus, an enum value cannot be renamed with a name used in any other enum value within the same enum field.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         RenameTagTemplateFieldEnumValueRequest request =
             RenameTagTemplateFieldEnumValueRequest.newBuilder()
                 .setName(
                     TagTemplateFieldEnumValueName.of(
                             "[PROJECT]",
                             "[LOCATION]",
                             "[TAG_TEMPLATE]",
                             "[TAG_TEMPLATE_FIELD_ID]",
                             "[ENUM_VALUE_DISPLAY_NAME]")
                         .toString())
                 .setNewEnumValueDisplayName("newEnumValueDisplayName-1119629027")
                 .build();
         TagTemplateField response = dataCatalogClient.renameTagTemplateFieldEnumValue(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • renameTagTemplateFieldEnumValueCallable

      @Deprecated public final UnaryCallable<RenameTagTemplateFieldEnumValueRequest,TagTemplateField> renameTagTemplateFieldEnumValueCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Renames an enum value in a tag template. The enum values have to be unique within one enum field. Thus, an enum value cannot be renamed with a name used in any other enum value within the same enum field.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         RenameTagTemplateFieldEnumValueRequest request =
             RenameTagTemplateFieldEnumValueRequest.newBuilder()
                 .setName(
                     TagTemplateFieldEnumValueName.of(
                             "[PROJECT]",
                             "[LOCATION]",
                             "[TAG_TEMPLATE]",
                             "[TAG_TEMPLATE_FIELD_ID]",
                             "[ENUM_VALUE_DISPLAY_NAME]")
                         .toString())
                 .setNewEnumValueDisplayName("newEnumValueDisplayName-1119629027")
                 .build();
         ApiFuture<TagTemplateField> future =
             dataCatalogClient.renameTagTemplateFieldEnumValueCallable().futureCall(request);
         // Do something.
         TagTemplateField response = future.get();
       }
       
    • deleteTagTemplateField

      @Deprecated public final void deleteTagTemplateField(TagTemplateFieldName name, boolean force)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes a field in a tag template and all uses of that field. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         TagTemplateFieldName name =
             TagTemplateFieldName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]", "[FIELD]");
         boolean force = true;
         dataCatalogClient.deleteTagTemplateField(name, force);
       }
       
      Parameters:
      name - Required. The name of the tag template field to delete. Example:
      • projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}/fields/{tag_template_field_id}
      force - Required. Currently, this field must always be set to `true`. This confirms the deletion of this field from any tags using this field. `force = false` will be supported in the future.
      Throws:
      ApiException - if the remote call fails
    • deleteTagTemplateField

      @Deprecated public final void deleteTagTemplateField(String name, boolean force)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes a field in a tag template and all uses of that field. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String name =
             TagTemplateFieldName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]", "[FIELD]")
                 .toString();
         boolean force = true;
         dataCatalogClient.deleteTagTemplateField(name, force);
       }
       
      Parameters:
      name - Required. The name of the tag template field to delete. Example:
      • projects/{project_id}/locations/{location}/tagTemplates/{tag_template_id}/fields/{tag_template_field_id}
      force - Required. Currently, this field must always be set to `true`. This confirms the deletion of this field from any tags using this field. `force = false` will be supported in the future.
      Throws:
      ApiException - if the remote call fails
    • deleteTagTemplateField

      @Deprecated public final void deleteTagTemplateField(DeleteTagTemplateFieldRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes a field in a tag template and all uses of that field. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         DeleteTagTemplateFieldRequest request =
             DeleteTagTemplateFieldRequest.newBuilder()
                 .setName(
                     TagTemplateFieldName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]", "[FIELD]")
                         .toString())
                 .setForce(true)
                 .build();
         dataCatalogClient.deleteTagTemplateField(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • deleteTagTemplateFieldCallable

      @Deprecated public final UnaryCallable<DeleteTagTemplateFieldRequest,com.google.protobuf.Empty> deleteTagTemplateFieldCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes a field in a tag template and all uses of that field. Users should enable the Data Catalog API in the project identified by the `name` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information).

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         DeleteTagTemplateFieldRequest request =
             DeleteTagTemplateFieldRequest.newBuilder()
                 .setName(
                     TagTemplateFieldName.of("[PROJECT]", "[LOCATION]", "[TAG_TEMPLATE]", "[FIELD]")
                         .toString())
                 .setForce(true)
                 .build();
         ApiFuture<Empty> future =
             dataCatalogClient.deleteTagTemplateFieldCallable().futureCall(request);
         // Do something.
         future.get();
       }
       
    • createTag

      @Deprecated public final Tag createTag(EntryName parent, Tag tag)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates a tag on an [Entry][google.cloud.datacatalog.v1beta1.Entry]. Note: The project identified by the `parent` parameter for the [tag](https://cloud.google.com/data-catalog/docs/reference/rest/v1beta1/projects.locations.entryGroups.entries.tags/create#path-parameters) and the [tag template](https://cloud.google.com/data-catalog/docs/reference/rest/v1beta1/projects.locations.tagTemplates/create#path-parameters) used to create the tag must be from the same organization.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         EntryName parent = EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]");
         Tag tag = Tag.newBuilder().build();
         Tag response = dataCatalogClient.createTag(parent, tag);
       }
       
      Parameters:
      parent - Required. The name of the resource to attach this tag to. Tags can be attached to Entries. Example:

      * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}

      Note that this Tag and its child resources may not actually be stored in the location in this name.

      tag - Required. The tag to create.
      Throws:
      ApiException - if the remote call fails
    • createTag

      @Deprecated public final Tag createTag(String parent, Tag tag)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates a tag on an [Entry][google.cloud.datacatalog.v1beta1.Entry]. Note: The project identified by the `parent` parameter for the [tag](https://cloud.google.com/data-catalog/docs/reference/rest/v1beta1/projects.locations.entryGroups.entries.tags/create#path-parameters) and the [tag template](https://cloud.google.com/data-catalog/docs/reference/rest/v1beta1/projects.locations.tagTemplates/create#path-parameters) used to create the tag must be from the same organization.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String parent =
             EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString();
         Tag tag = Tag.newBuilder().build();
         Tag response = dataCatalogClient.createTag(parent, tag);
       }
       
      Parameters:
      parent - Required. The name of the resource to attach this tag to. Tags can be attached to Entries. Example:

      * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}

      Note that this Tag and its child resources may not actually be stored in the location in this name.

      tag - Required. The tag to create.
      Throws:
      ApiException - if the remote call fails
    • createTag

      @Deprecated public final Tag createTag(CreateTagRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates a tag on an [Entry][google.cloud.datacatalog.v1beta1.Entry]. Note: The project identified by the `parent` parameter for the [tag](https://cloud.google.com/data-catalog/docs/reference/rest/v1beta1/projects.locations.entryGroups.entries.tags/create#path-parameters) and the [tag template](https://cloud.google.com/data-catalog/docs/reference/rest/v1beta1/projects.locations.tagTemplates/create#path-parameters) used to create the tag must be from the same organization.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         CreateTagRequest request =
             CreateTagRequest.newBuilder()
                 .setParent(
                     EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString())
                 .setTag(Tag.newBuilder().build())
                 .build();
         Tag response = dataCatalogClient.createTag(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • createTagCallable

      @Deprecated public final UnaryCallable<CreateTagRequest,Tag> createTagCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Creates a tag on an [Entry][google.cloud.datacatalog.v1beta1.Entry]. Note: The project identified by the `parent` parameter for the [tag](https://cloud.google.com/data-catalog/docs/reference/rest/v1beta1/projects.locations.entryGroups.entries.tags/create#path-parameters) and the [tag template](https://cloud.google.com/data-catalog/docs/reference/rest/v1beta1/projects.locations.tagTemplates/create#path-parameters) used to create the tag must be from the same organization.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         CreateTagRequest request =
             CreateTagRequest.newBuilder()
                 .setParent(
                     EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString())
                 .setTag(Tag.newBuilder().build())
                 .build();
         ApiFuture<Tag> future = dataCatalogClient.createTagCallable().futureCall(request);
         // Do something.
         Tag response = future.get();
       }
       
    • updateTag

      @Deprecated public final Tag updateTag(Tag tag)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates an existing tag.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         Tag tag = Tag.newBuilder().build();
         Tag response = dataCatalogClient.updateTag(tag);
       }
       
      Parameters:
      tag - Required. The updated tag. The "name" field must be set.
      Throws:
      ApiException - if the remote call fails
    • updateTag

      @Deprecated public final Tag updateTag(Tag tag, com.google.protobuf.FieldMask updateMask)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates an existing tag.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         Tag tag = Tag.newBuilder().build();
         FieldMask updateMask = FieldMask.newBuilder().build();
         Tag response = dataCatalogClient.updateTag(tag, updateMask);
       }
       
      Parameters:
      tag - Required. The updated tag. The "name" field must be set.
      updateMask - Note: Currently, this parameter can only take `"fields"` as value.

      Names of fields whose values to overwrite on a tag. Currently, a tag has the only modifiable field with the name `fields`.

      In general, if this parameter is absent or empty, all modifiable fields are overwritten. If such fields are non-required and omitted in the request body, their values are emptied.

      Throws:
      ApiException - if the remote call fails
    • updateTag

      @Deprecated public final Tag updateTag(UpdateTagRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates an existing tag.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         UpdateTagRequest request =
             UpdateTagRequest.newBuilder()
                 .setTag(Tag.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         Tag response = dataCatalogClient.updateTag(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • updateTagCallable

      @Deprecated public final UnaryCallable<UpdateTagRequest,Tag> updateTagCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Updates an existing tag.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         UpdateTagRequest request =
             UpdateTagRequest.newBuilder()
                 .setTag(Tag.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         ApiFuture<Tag> future = dataCatalogClient.updateTagCallable().futureCall(request);
         // Do something.
         Tag response = future.get();
       }
       
    • deleteTag

      @Deprecated public final void deleteTag(EntryName name)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes a tag.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         EntryName name = EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]");
         dataCatalogClient.deleteTag(name);
       }
       
      Parameters:
      name - Required. The name of the tag to delete. Example:
      • projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}/tags/{tag_id}
      Throws:
      ApiException - if the remote call fails
    • deleteTag

      @Deprecated public final void deleteTag(String name)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes a tag.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String name = EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString();
         dataCatalogClient.deleteTag(name);
       }
       
      Parameters:
      name - Required. The name of the tag to delete. Example:
      • projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}/tags/{tag_id}
      Throws:
      ApiException - if the remote call fails
    • deleteTag

      @Deprecated public final void deleteTag(DeleteTagRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes a tag.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         DeleteTagRequest request =
             DeleteTagRequest.newBuilder()
                 .setName(
                     EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString())
                 .build();
         dataCatalogClient.deleteTag(request);
       }
       
      Parameters:
      request - The request object containing all of the parameters for the API call.
      Throws:
      ApiException - if the remote call fails
    • deleteTagCallable

      @Deprecated public final UnaryCallable<DeleteTagRequest,com.google.protobuf.Empty> deleteTagCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Deletes a tag.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         DeleteTagRequest request =
             DeleteTagRequest.newBuilder()
                 .setName(
                     EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString())
                 .build();
         ApiFuture<Empty> future = dataCatalogClient.deleteTagCallable().futureCall(request);
         // Do something.
         future.get();
       }
       
    • listTags

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Lists tags assigned to an [Entry][google.cloud.datacatalog.v1beta1.Entry]. The [columns][google.cloud.datacatalog.v1beta1.Tag.column] in the response are lowercased.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         EntryName parent = EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]");
         for (Tag element : dataCatalogClient.listTags(parent).iterateAll()) {
           // doThingsWith(element);
         }
       }
       
      Parameters:
      parent - Required. The name of the Data Catalog resource to list the tags of. The resource could be an [Entry][google.cloud.datacatalog.v1beta1.Entry] or an [EntryGroup][google.cloud.datacatalog.v1beta1.EntryGroup].

      Examples:

      • projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}
      • projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
      Throws:
      ApiException - if the remote call fails
    • listTags

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Lists tags assigned to an [Entry][google.cloud.datacatalog.v1beta1.Entry]. The [columns][google.cloud.datacatalog.v1beta1.Tag.column] in the response are lowercased.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String parent =
             EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString();
         for (Tag element : dataCatalogClient.listTags(parent).iterateAll()) {
           // doThingsWith(element);
         }
       }
       
      Parameters:
      parent - Required. The name of the Data Catalog resource to list the tags of. The resource could be an [Entry][google.cloud.datacatalog.v1beta1.Entry] or an [EntryGroup][google.cloud.datacatalog.v1beta1.EntryGroup].

      Examples:

      • projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}
      • projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}/entries/{entry_id}
      Throws:
      ApiException - if the remote call fails
    • listTags

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Lists tags assigned to an [Entry][google.cloud.datacatalog.v1beta1.Entry]. The [columns][google.cloud.datacatalog.v1beta1.Tag.column] in the response are lowercased.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         ListTagsRequest request =
             ListTagsRequest.newBuilder()
                 .setParent(
                     EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString())
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .build();
         for (Tag element : dataCatalogClient.listTags(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
    • listTagsPagedCallable

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Lists tags assigned to an [Entry][google.cloud.datacatalog.v1beta1.Entry]. The [columns][google.cloud.datacatalog.v1beta1.Tag.column] in the response are lowercased.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         ListTagsRequest request =
             ListTagsRequest.newBuilder()
                 .setParent(
                     EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString())
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .build();
         ApiFuture<Tag> future = dataCatalogClient.listTagsPagedCallable().futureCall(request);
         // Do something.
         for (Tag element : future.get().iterateAll()) {
           // doThingsWith(element);
         }
       }
       
    • listTagsCallable

      @Deprecated public final UnaryCallable<ListTagsRequest,ListTagsResponse> listTagsCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Lists tags assigned to an [Entry][google.cloud.datacatalog.v1beta1.Entry]. The [columns][google.cloud.datacatalog.v1beta1.Tag.column] in the response are lowercased.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         ListTagsRequest request =
             ListTagsRequest.newBuilder()
                 .setParent(
                     EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString())
                 .setPageSize(883849137)
                 .setPageToken("pageToken873572522")
                 .build();
         while (true) {
           ListTagsResponse response = dataCatalogClient.listTagsCallable().call(request);
           for (Tag element : response.getTagsList()) {
             // doThingsWith(element);
           }
           String nextPageToken = response.getNextPageToken();
           if (!Strings.isNullOrEmpty(nextPageToken)) {
             request = request.toBuilder().setPageToken(nextPageToken).build();
           } else {
             break;
           }
         }
       }
       
    • setIamPolicy

      @Deprecated public final Policy setIamPolicy(ResourceName resource, Policy policy)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Sets the access control policy for a resource. Replaces any existing policy. Supported resources are: - Tag templates. - Entries. - Entry groups. Note, this method cannot be used to manage policies for BigQuery, Pub/Sub and any external Google Cloud Platform resources synced to Data Catalog.

      Callers must have following Google IAM permission - `datacatalog.tagTemplates.setIamPolicy` to set policies on tag templates. - `datacatalog.entries.setIamPolicy` to set policies on entries. - `datacatalog.entryGroups.setIamPolicy` to set policies on entry groups.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         ResourceName resource = EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]");
         Policy policy = Policy.newBuilder().build();
         Policy response = dataCatalogClient.setIamPolicy(resource, policy);
       }
       
      Parameters:
      resource - REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.
      policy - REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud Platform services (such as Projects) might reject them.
      Throws:
      ApiException - if the remote call fails
    • setIamPolicy

      @Deprecated public final Policy setIamPolicy(String resource, Policy policy)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Sets the access control policy for a resource. Replaces any existing policy. Supported resources are: - Tag templates. - Entries. - Entry groups. Note, this method cannot be used to manage policies for BigQuery, Pub/Sub and any external Google Cloud Platform resources synced to Data Catalog.

      Callers must have following Google IAM permission - `datacatalog.tagTemplates.setIamPolicy` to set policies on tag templates. - `datacatalog.entries.setIamPolicy` to set policies on entries. - `datacatalog.entryGroups.setIamPolicy` to set policies on entry groups.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String resource =
             EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString();
         Policy policy = Policy.newBuilder().build();
         Policy response = dataCatalogClient.setIamPolicy(resource, policy);
       }
       
      Parameters:
      resource - REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.
      policy - REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud Platform services (such as Projects) might reject them.
      Throws:
      ApiException - if the remote call fails
    • setIamPolicy

      @Deprecated public final Policy setIamPolicy(SetIamPolicyRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Sets the access control policy for a resource. Replaces any existing policy. Supported resources are: - Tag templates. - Entries. - Entry groups. Note, this method cannot be used to manage policies for BigQuery, Pub/Sub and any external Google Cloud Platform resources synced to Data Catalog.

      Callers must have following Google IAM permission - `datacatalog.tagTemplates.setIamPolicy` to set policies on tag templates. - `datacatalog.entries.setIamPolicy` to set policies on entries. - `datacatalog.entryGroups.setIamPolicy` to set policies on entry groups.

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

      @Deprecated public final UnaryCallable<SetIamPolicyRequest,Policy> setIamPolicyCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Sets the access control policy for a resource. Replaces any existing policy. Supported resources are: - Tag templates. - Entries. - Entry groups. Note, this method cannot be used to manage policies for BigQuery, Pub/Sub and any external Google Cloud Platform resources synced to Data Catalog.

      Callers must have following Google IAM permission - `datacatalog.tagTemplates.setIamPolicy` to set policies on tag templates. - `datacatalog.entries.setIamPolicy` to set policies on entries. - `datacatalog.entryGroups.setIamPolicy` to set policies on entry groups.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         SetIamPolicyRequest request =
             SetIamPolicyRequest.newBuilder()
                 .setResource(EntryGroupName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]").toString())
                 .setPolicy(Policy.newBuilder().build())
                 .setUpdateMask(FieldMask.newBuilder().build())
                 .build();
         ApiFuture<Policy> future = dataCatalogClient.setIamPolicyCallable().futureCall(request);
         // Do something.
         Policy response = future.get();
       }
       
    • getIamPolicy

      @Deprecated public final Policy getIamPolicy(ResourceName resource)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets the access control policy for a resource. A `NOT_FOUND` error is returned if the resource does not exist. An empty policy is returned if the resource exists but does not have a policy set on it.

      Supported resources are: - Tag templates. - Entries. - Entry groups. Note, this method cannot be used to manage policies for BigQuery, Pub/Sub and any external Google Cloud Platform resources synced to Data Catalog.

      Callers must have following Google IAM permission - `datacatalog.tagTemplates.getIamPolicy` to get policies on tag templates. - `datacatalog.entries.getIamPolicy` to get policies on entries. - `datacatalog.entryGroups.getIamPolicy` to get policies on entry groups.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         ResourceName resource = EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]");
         Policy response = dataCatalogClient.getIamPolicy(resource);
       }
       
      Parameters:
      resource - REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.
      Throws:
      ApiException - if the remote call fails
    • getIamPolicy

      @Deprecated public final Policy getIamPolicy(String resource)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets the access control policy for a resource. A `NOT_FOUND` error is returned if the resource does not exist. An empty policy is returned if the resource exists but does not have a policy set on it.

      Supported resources are: - Tag templates. - Entries. - Entry groups. Note, this method cannot be used to manage policies for BigQuery, Pub/Sub and any external Google Cloud Platform resources synced to Data Catalog.

      Callers must have following Google IAM permission - `datacatalog.tagTemplates.getIamPolicy` to get policies on tag templates. - `datacatalog.entries.getIamPolicy` to get policies on entries. - `datacatalog.entryGroups.getIamPolicy` to get policies on entry groups.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         String resource =
             EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString();
         Policy response = dataCatalogClient.getIamPolicy(resource);
       }
       
      Parameters:
      resource - REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.
      Throws:
      ApiException - if the remote call fails
    • getIamPolicy

      @Deprecated public final Policy getIamPolicy(GetIamPolicyRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets the access control policy for a resource. A `NOT_FOUND` error is returned if the resource does not exist. An empty policy is returned if the resource exists but does not have a policy set on it.

      Supported resources are: - Tag templates. - Entries. - Entry groups. Note, this method cannot be used to manage policies for BigQuery, Pub/Sub and any external Google Cloud Platform resources synced to Data Catalog.

      Callers must have following Google IAM permission - `datacatalog.tagTemplates.getIamPolicy` to get policies on tag templates. - `datacatalog.entries.getIamPolicy` to get policies on entries. - `datacatalog.entryGroups.getIamPolicy` to get policies on entry groups.

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

      @Deprecated public final UnaryCallable<GetIamPolicyRequest,Policy> getIamPolicyCallable()
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Gets the access control policy for a resource. A `NOT_FOUND` error is returned if the resource does not exist. An empty policy is returned if the resource exists but does not have a policy set on it.

      Supported resources are: - Tag templates. - Entries. - Entry groups. Note, this method cannot be used to manage policies for BigQuery, Pub/Sub and any external Google Cloud Platform resources synced to Data Catalog.

      Callers must have following Google IAM permission - `datacatalog.tagTemplates.getIamPolicy` to get policies on tag templates. - `datacatalog.entries.getIamPolicy` to get policies on entries. - `datacatalog.entryGroups.getIamPolicy` to get policies on entry groups.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         GetIamPolicyRequest request =
             GetIamPolicyRequest.newBuilder()
                 .setResource(
                     EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString())
                 .setOptions(GetPolicyOptions.newBuilder().build())
                 .build();
         ApiFuture<Policy> future = dataCatalogClient.getIamPolicyCallable().futureCall(request);
         // Do something.
         Policy response = future.get();
       }
       
    • testIamPermissions

      @Deprecated public final TestIamPermissionsResponse testIamPermissions(TestIamPermissionsRequest request)
      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Returns the caller's permissions on a resource. If the resource does not exist, an empty set of permissions is returned (We don't return a `NOT_FOUND` error).

      Supported resources are: - Tag templates. - Entries. - Entry groups. Note, this method cannot be used to manage policies for BigQuery, Pub/Sub and any external Google Cloud Platform resources synced to Data Catalog.

      A caller is not required to have Google IAM permission to make this request.

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

      Deprecated.
      This method is deprecated and will be removed in the next major version update.
      Returns the caller's permissions on a resource. If the resource does not exist, an empty set of permissions is returned (We don't return a `NOT_FOUND` error).

      Supported resources are: - Tag templates. - Entries. - Entry groups. Note, this method cannot be used to manage policies for BigQuery, Pub/Sub and any external Google Cloud Platform resources synced to Data Catalog.

      A caller is not required to have Google IAM permission to make this request.

      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 (DataCatalogClient dataCatalogClient = DataCatalogClient.create()) {
         TestIamPermissionsRequest request =
             TestIamPermissionsRequest.newBuilder()
                 .setResource(
                     EntryName.of("[PROJECT]", "[LOCATION]", "[ENTRY_GROUP]", "[ENTRY]").toString())
                 .addAllPermissions(new ArrayList<String>())
                 .build();
         ApiFuture<TestIamPermissionsResponse> future =
             dataCatalogClient.testIamPermissionsCallable().futureCall(request);
         // Do something.
         TestIamPermissionsResponse response = future.get();
       }
       
    • close

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

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

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

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

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

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