@@ -226,6 +226,10 @@ service DataCatalog {
226226 }
227227
228228 // Lists entries.
229+ //
230+ // Note: Currently, this method can list only custom entries.
231+ // To get a list of both custom and automatically created entries, use
232+ // [SearchCatalog][google.cloud.datacatalog.v1.DataCatalog.SearchCatalog].
229233 rpc ListEntries (ListEntriesRequest ) returns (ListEntriesResponse ) {
230234 option (google.api.http ) = {
231235 get : "/v1/{parent=projects/*/locations/*/entryGroups/*}/entries"
@@ -566,7 +570,7 @@ message SearchCatalogRequest {
566570
567571 // Optional. The query string with a minimum of 3 characters and specific syntax.
568572 // For more information, see
569- // [Data Catalog search syntax](https://cloud.google.com /data-catalog/docs/how-to/search-reference).
573+ // [Data Catalog search syntax](/data-catalog/docs/how-to/search-reference).
570574 //
571575 // An empty query string returns all data assets (in the specified scope)
572576 // that you have access to.
@@ -1224,11 +1228,16 @@ message UpdateTagTemplateRequest {
12241228 TagTemplate tag_template = 1 [(google.api.field_behavior ) = REQUIRED ];
12251229
12261230 // Names of fields whose values to overwrite on a tag template. Currently,
1227- // only `display_name` can be overwritten.
1231+ // only `display_name` and `is_publicly_readable` can be overwritten.
12281232 //
12291233 // If this parameter is absent or empty, all modifiable fields
12301234 // are overwritten. If such fields are non-required and omitted in the
12311235 // request body, their values are emptied.
1236+ //
1237+ // Note: Updating the ``is_publicly_readable`` field may require up to 12
1238+ // hours to take effect in search results. Additionally, it also requires
1239+ // the ``tagTemplates.getIamPolicy`` and ``tagTemplates.setIamPolicy``
1240+ // permissions.
12321241 google.protobuf.FieldMask update_mask = 2 ;
12331242}
12341243
@@ -1359,7 +1368,7 @@ message UpdateTagTemplateFieldRequest {
13591368// Request message for
13601369// [RenameTagTemplateField][google.cloud.datacatalog.v1.DataCatalog.RenameTagTemplateField].
13611370message RenameTagTemplateFieldRequest {
1362- // Required. The name of the tag template.
1371+ // Required. The name of the tag template field .
13631372 string name = 1 [
13641373 (google.api.field_behavior ) = REQUIRED ,
13651374 (google.api.resource_reference ) = {
0 commit comments