google-datacatalog-apache-atlas-connector/src/google/datacatalog_connectors/apache_atlas/scrape/metadata_enricher.py [57:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if isinstance(attribute_dict, dict):
            type_name = attribute_dict.get('typeName')
            guid = attribute_dict.get('guid')
            data = attribute_dict.get('data')
            # Verify if the attribute implements an entity type
            # and if the attribute data is not fetched.
            if type_name and guid and not data:
                entity_type = entity_types_dict.get(type_name)
                if entity_type:
                    relationship_entities = entity_type['entities']
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



google-datacatalog-apache-atlas-connector/src/google/datacatalog_connectors/apache_atlas/scrape/metadata_event_enricher.py [58:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if isinstance(attribute_dict, dict):
            type_name = attribute_dict.get('typeName')
            guid = attribute_dict.get('guid')
            data = attribute_dict.get('data')
            # Verify if the attribute implements an entity type
            # and if the attribute data is not fetched.
            if type_name and guid and not data:
                entity_type = entity_types_dict.get(type_name)
                if entity_type:
                    relationship_entities = entity_type['entities']
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



