google-cloud-datacatalog 0.8.0 is missing TagTemplate option

102 views Asked by At

I am working on developing a datacatalog integration pipeline in google cloud composer. Since I am using composer version composer-1.12.4-airflow-1.10.10, its not allowing me to install google-cloud-datacatalog version 3 or above at the same time its allowing only 0.8.0 or below. This is because an internal conflict. When I tried to use version 0.8.0, while creating TagTemplate object, its giving a TagTemplate Not Found exception. So I am left with an option to upgrade the composer, which is very difficult at this point, since I need to test the compatibility of more than 200 existing pipelines. Is there any other option programatically I can tackle this using the 0.8.0 version.

Here is an excerpt of my module:

from google.cloud import datacatalog
        
dc_client = datacatalog.DataCatalogClient()
tag_template = datacatalog.TagTemplate() <Here is I am getting the not found error>

enter image description here

0

There are 0 answers