@@ -537,7 +537,7 @@ def delete_tag_template_field(
537
537
:type metadata: Sequence[Tuple[str, str]]
538
538
"""
539
539
client = self .get_conn ()
540
- name = DataCatalogClient .field_path (project_id , location , tag_template , field )
540
+ name = DataCatalogClient .tag_template_field_path (project_id , location , tag_template , field )
541
541
542
542
self .log .info ('Deleting a tag template field: name=%s' , name )
543
543
client .delete_tag_template_field (
@@ -860,7 +860,7 @@ def rename_tag_template_field(
860
860
:type metadata: Sequence[Tuple[str, str]]
861
861
"""
862
862
client = self .get_conn ()
863
- name = DataCatalogClient .field_path (project_id , location , tag_template , field )
863
+ name = DataCatalogClient .tag_template_field_path (project_id , location , tag_template , field )
864
864
865
865
self .log .info (
866
866
'Renaming field: old_name=%s, new_tag_template_field_id=%s' , name , new_tag_template_field_id
@@ -1246,7 +1246,7 @@ def update_tag_template_field( # pylint: disable=too-many-arguments
1246
1246
"""
1247
1247
client = self .get_conn ()
1248
1248
if project_id and location and tag_template and tag_template_field_id :
1249
- tag_template_field_name = DataCatalogClient .field_path (
1249
+ tag_template_field_name = DataCatalogClient .tag_template_field_path (
1250
1250
project_id , location , tag_template , tag_template_field_id
1251
1251
)
1252
1252
0 commit comments