pyegeria 5.4.7.3__py3-none-any.whl → 5.4.7.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. commands/cat/dr_egeria_md.py +1 -1
  2. commands/cat/list_format_set.py +6 -1
  3. commands/ops/list_catalog_targets.py +17 -14
  4. commands/ops/monitor_engine_activity.py +1 -1
  5. commands/ops/monitor_engine_activity_c.py +1 -1
  6. commands/tech/list_gov_action_processes.py +4 -8
  7. md_processing/dr_egeria.py +1 -1
  8. md_processing/md_commands/ext_ref_commands.py +1 -2
  9. md_processing/md_commands/glossary_commands.py +1 -2
  10. md_processing/md_commands/project_commands.py +1 -2
  11. pyegeria/__init__.py +3 -95
  12. pyegeria/_client_new.py +390 -10
  13. pyegeria/_globals.py +95 -1
  14. pyegeria/_output_formats.py +1 -1
  15. pyegeria/asset_catalog_omvs.py +1 -1
  16. pyegeria/automated_curation.py +33 -92
  17. pyegeria/classification_manager.py +5636 -0
  18. pyegeria/classification_manager_omvs.py +1989 -1853
  19. pyegeria/collection_manager.py +14 -2
  20. pyegeria/data_designer.py +1 -2
  21. pyegeria/egeria_tech_client.py +3 -0
  22. pyegeria/format_set_executor.py +8 -9
  23. pyegeria/full_omag_server_config.py +1 -1
  24. pyegeria/mcp_adapter.py +1 -1
  25. pyegeria/mcp_server.py +36 -21
  26. pyegeria/md_processing_utils.py +3 -3
  27. pyegeria/md_processing_utils_orig.py +3 -3
  28. pyegeria/mermaid_utilities.py +0 -152
  29. pyegeria/models.py +5 -0
  30. pyegeria/output_formatter.py +1 -1
  31. pyegeria/runtime_manager_omvs.py +1 -1
  32. pyegeria/solution_architect.py +1 -1
  33. {pyegeria-5.4.7.3.dist-info → pyegeria-5.4.7.4.dist-info}/METADATA +1 -1
  34. {pyegeria-5.4.7.3.dist-info → pyegeria-5.4.7.4.dist-info}/RECORD +38 -38
  35. pyegeria/md_processing_helpers.py +0 -58
  36. {pyegeria-5.4.7.3.dist-info → pyegeria-5.4.7.4.dist-info}/WHEEL +0 -0
  37. {pyegeria-5.4.7.3.dist-info → pyegeria-5.4.7.4.dist-info}/entry_points.txt +0 -0
  38. {pyegeria-5.4.7.3.dist-info → pyegeria-5.4.7.4.dist-info}/licenses/LICENSE +0 -0
  39. {pyegeria-5.4.7.3.dist-info → pyegeria-5.4.7.4.dist-info}/top_level.txt +0 -0
@@ -36,7 +36,7 @@ EGERIA_WIDTH = os.environ.get("EGERIA_WIDTH", 220)
36
36
  EGERIA_JUPYTER = os.environ.get("EGERIA_JUPYTER", False)
37
37
  EGERIA_HOME_GLOSSARY_GUID = os.environ.get("EGERIA_HOME_GLOSSARY_GUID", None)
38
38
  EGERIA_GLOSSARY_PATH = os.environ.get("EGERIA_GLOSSARY_PATH", None)
39
- EGERIA_ROOT_PATH = os.environ.get("EGERIA_ROOT_PATH", "../../")
39
+ EGERIA_ROOT_PATH = os.environ.get("EGERIA_ROOT_PATH", "../..")
40
40
  EGERIA_INBOX_PATH = os.environ.get("EGERIA_INBOX_PATH", "md_processing/dr_egeria_inbox")
41
41
  EGERIA_OUTBOX_PATH = os.environ.get("EGERIA_OUTBOX_PATH", "md_processing/dr_egeria_outbox")
42
42
 
@@ -40,6 +40,7 @@ import os
40
40
  import time
41
41
 
42
42
  from loguru import logger
43
+ from pydantic import ValidationError
43
44
  from rich import box
44
45
  from rich.console import Console
45
46
  from rich.markdown import Markdown
@@ -51,7 +52,7 @@ import pydevd_pycharm
51
52
  from pyegeria import (
52
53
  EgeriaTech,
53
54
  CollectionManager,
54
- NO_ELEMENTS_FOUND, GovernanceOfficer, GlossaryManager,
55
+ NO_ELEMENTS_FOUND, GovernanceOfficer, GlossaryManager, print_validation_error,
55
56
  )
56
57
  from pyegeria.config import settings
57
58
  from pyegeria.external_references import ExternalReferences
@@ -238,6 +239,10 @@ def execute_format_set_action(
238
239
  else:
239
240
  # For standalone functions, call with client as first argument
240
241
  output = func(client, **params)
242
+ except ValidationError as e:
243
+ print_validation_error(e)
244
+ return
245
+
241
246
  except TypeError as e:
242
247
  # Handle parameter mismatch errors
243
248
  print(f"Error calling function: {e}")
@@ -10,6 +10,7 @@ List catalog targets
10
10
  """
11
11
  import argparse
12
12
  import os
13
+ import sys
13
14
  import time
14
15
 
15
16
  from rich import box
@@ -18,13 +19,13 @@ from rich.markdown import Markdown
18
19
  from rich.prompt import Prompt
19
20
  from rich.table import Table
20
21
 
22
+
21
23
  from pyegeria import (
22
24
  INTEGRATION_GUIDS,
23
25
  AutomatedCuration,
24
- InvalidParameterException,
25
- PropertyServerException,
26
- UserNotAuthorizedException,
27
- print_exception_response,
26
+ EgeriaTech,
27
+ PyegeriaException,
28
+ print_basic_exception,
28
29
  )
29
30
 
30
31
  EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
@@ -144,26 +145,28 @@ def display_catalog_targets(
144
145
  return table
145
146
 
146
147
  try:
147
- a_client = AutomatedCuration(view_server, view_url, user)
148
+ a_client = EgeriaTech(view_server, view_url, user)
148
149
  token = a_client.create_egeria_bearer_token(user, user_pass)
149
150
  connector = connector.strip()
150
- if connector not in INTEGRATION_GUIDS.keys():
151
- raise Exception
152
151
 
153
- connector_guid = INTEGRATION_GUIDS[connector]
152
+
153
+ connector_guid = a_client.get_connector_guid(connector)
154
+ if connector_guid is None or connector_guid == "No connector found":
155
+ console.print(f"\n\n===> No connector found with name '{connector}'\n\n")
156
+ sys.exit(1)
157
+
154
158
  cat_targets = a_client.get_catalog_targets(connector_guid)
155
159
  console = Console(force_terminal=not jupyter, width=width, soft_wrap=True)
156
160
  with console.pager(styles=True):
157
161
  console.print(generate_table(), soft_wrap=True)
158
162
 
163
+
164
+ except PyegeriaException as e:
165
+ print(f"\n\n===> Perhaps integration connector {connector} is not known?\n\n")
166
+ print_basic_exception(e)
159
167
  except (
160
- InvalidParameterException,
161
- PropertyServerException,
162
- UserNotAuthorizedException,
168
+ Exception
163
169
  ) as e:
164
- print_exception_response(e)
165
- except Exception as e:
166
- print(f"\n\n===> Perhaps integration connector {connector} is not known?\n\n")
167
170
  console.print_exception()
168
171
  finally:
169
172
  a_client.close_session()
@@ -146,7 +146,7 @@ def display_engine_activity(
146
146
  "ACTIVATING",
147
147
  ):
148
148
  action_status = f"[yellow]{action['actionStatus']}"
149
- elif action["actionStatus"] in ("IN_PROGRESS", "ACTIONED"):
149
+ elif action["actionStatus"] in ("IN_PROGRESS", "COMPLETED"):
150
150
  action_status = f"[green]{action['actionStatus']}"
151
151
  else:
152
152
  action_status = f"[red]{action['actionStatus']}"
@@ -148,7 +148,7 @@ def display_engine_activity_c(
148
148
  "ACTIVATING",
149
149
  ):
150
150
  action_status = f"[yellow]{action['actionStatus']}"
151
- elif action["actionStatus"] in ("IN_PROGRESS", "ACTIONED"):
151
+ elif action["actionStatus"] in ("IN_PROGRESS", "COMPLETED"):
152
152
  action_status = f"[green]{action['actionStatus']}"
153
153
  else:
154
154
  action_status = f"[red]{action['actionStatus']}"
@@ -19,11 +19,9 @@ from rich.table import Table
19
19
 
20
20
  from pyegeria import (
21
21
  EgeriaTech,
22
- InvalidParameterException,
23
- PropertyServerException,
24
- UserNotAuthorizedException,
22
+ PyegeriaException,
25
23
  ValidMetadataManager,
26
- print_exception_response,
24
+ print_basic_exception,
27
25
  )
28
26
 
29
27
  EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
@@ -104,15 +102,13 @@ def display_gov_processes(
104
102
  console.print(generate_table(type_name))
105
103
 
106
104
  except (
107
- InvalidParameterException,
108
- PropertyServerException,
109
- UserNotAuthorizedException,
105
+ PyegeriaException,
110
106
  ValueError,
111
107
  ) as e:
112
108
  if type(e) is str:
113
109
  print(e)
114
110
  else:
115
- print_exception_response(e)
111
+ print_basic_exception(e)
116
112
 
117
113
 
118
114
  def main():
@@ -42,7 +42,7 @@ from md_processing import (extract_command, process_glossary_upsert_command, pro
42
42
  process_link_to_external_reference_command, process_link_to_media_reference_command,
43
43
  process_link_to_cited_document_command, EXT_REF_UPSERT, LINK_CITED_DOC, LINK_MEDIA,LINK_EXT_REF)
44
44
 
45
- from .md_commands.data_designer_commands import (process_data_spec_upsert_command,
45
+ from md_processing.md_commands.data_designer_commands import (process_data_spec_upsert_command,
46
46
  process_data_dict_upsert_command,
47
47
  process_data_field_upsert_command,
48
48
  process_data_structure_upsert_command,
@@ -21,9 +21,8 @@ from md_processing.md_processing_utils.common_md_utils import (update_element_di
21
21
  from md_processing.md_processing_utils.extraction_utils import (extract_command_plus, update_a_command)
22
22
 
23
23
  from pyegeria import PyegeriaException, print_basic_exception, print_validation_error
24
- from pyegeria import body_slimmer
25
24
  from pyegeria.egeria_tech_client import EgeriaTech
26
- from pyegeria.utils import make_format_set_name_from_type
25
+ from pyegeria.utils import make_format_set_name_from_type, body_slimmer
27
26
 
28
27
 
29
28
  # EGERIA_WIDTH = int(os.environ.get("EGERIA_WIDTH", "170"))
@@ -32,10 +32,9 @@ from md_processing.md_processing_utils.extraction_utils import (extract_command_
32
32
  update_a_command, extract_attribute,
33
33
  get_element_by_name, process_name_list)
34
34
 
35
- from pyegeria import body_slimmer
36
35
  from pyegeria._globals import (NO_GLOSSARIES_FOUND, NO_ELEMENTS_FOUND, NO_CATEGORIES_FOUND)
37
36
  from pyegeria.egeria_tech_client import EgeriaTech
38
- from pyegeria.utils import make_format_set_name_from_type
37
+ from pyegeria.utils import make_format_set_name_from_type, body_slimmer
39
38
 
40
39
 
41
40
  # EGERIA_WIDTH = int(os.environ.get("EGERIA_WIDTH", "170"))
@@ -36,10 +36,9 @@ from md_processing.md_processing_utils.extraction_utils import (extract_command_
36
36
  update_a_command, extract_attribute,
37
37
  get_element_by_name, process_name_list)
38
38
 
39
- from pyegeria import body_slimmer
40
39
  from pyegeria._globals import (NO_GLOSSARIES_FOUND, NO_ELEMENTS_FOUND, NO_CATEGORIES_FOUND)
41
40
  from pyegeria.egeria_tech_client import EgeriaTech
42
- from pyegeria.utils import make_format_set_name_from_type
41
+ from pyegeria.utils import make_format_set_name_from_type, body_slimmer
43
42
 
44
43
 
45
44
  # EGERIA_WIDTH = int(os.environ.get("EGERIA_WIDTH", "170"))
pyegeria/__init__.py CHANGED
@@ -15,7 +15,8 @@ the server platform and servers.
15
15
  from ._globals import (INTEGRATION_GUIDS, TEMPLATE_GUIDS, default_time_out, disable_ssl_warnings, enable_ssl_check,
16
16
  is_debug, max_paging_size, NO_ELEMENTS_FOUND, NO_ASSETS_FOUND, NO_SERVERS_FOUND,
17
17
  NO_CATALOGS_FOUND, NO_GLOSSARIES_FOUND, NO_TERMS_FOUND, NO_CATEGORIES_FOUND, NO_ELEMENT_FOUND,
18
- NO_PROJECTS_FOUND, DEBUG_LEVEL, NO_COLLECTION_FOUND, NO_GUID_RETURNED)
18
+ NO_PROJECTS_FOUND, DEBUG_LEVEL, NO_COLLECTION_FOUND, NO_GUID_RETURNED, TEMPLATE_GUIDS,
19
+ INTEGRATION_GUIDS)
19
20
 
20
21
 
21
22
 
@@ -52,7 +53,7 @@ from .feedback_manager_omvs import FeedbackManager
52
53
  from .full_omag_server_config import FullServerConfig
53
54
  from .glossary_manager import GlossaryManager
54
55
  from .governance_officer import GovernanceOfficer
55
- from .mermaid_utilities import (construct_mermaid_web, construct_mermaid_jup, generate_process_graph, load_mermaid,
56
+ from .mermaid_utilities import (construct_mermaid_web, construct_mermaid_jup, load_mermaid,
56
57
  parse_mermaid_code, render_mermaid, save_mermaid_graph, save_mermaid_html, )
57
58
  from .metadata_explorer_omvs import MetadataExplorer
58
59
  from .my_profile_omvs import MyProfile
@@ -74,99 +75,6 @@ from .mcp_adapter import list_reports, describe_report, run_report, _async_run_r
74
75
  global template_guids, integration_guids
75
76
 
76
77
  # 2/12/25
77
- #
78
- TEMPLATE_GUIDS['File System Directory'] = 'c353fd5d-9523-4a5e-a5e2-723ae490fe54'
79
- INTEGRATION_GUIDS['GeneralFilesMonitor'] = '1b98cdac-dd0a-4621-93db-99ef5a1098bc'
80
- INTEGRATION_GUIDS['OpenLineageFilePublisher'] = '6271b678-7d22-4cdf-87b1-45b366beaf4e'
81
- INTEGRATION_GUIDS['ContentPacksMonitor'] = '6bb2181e-7724-4515-ba3c-877cded55980'
82
- INTEGRATION_GUIDS['HarvestActivity'] = '856501d9-ec29-4e67-9cd7-120f53710ffa'
83
- INTEGRATION_GUIDS['SampleDataFilesMonitor'] = 'cd6479e1-2fe7-4426-b358-8a0cf70be117'
84
- TEMPLATE_GUIDS['CSV Data File'] = '13770f93-13c8-42be-9bb8-e0b1b1e52b1f'
85
- TEMPLATE_GUIDS['Keystore File'] = 'fbcfcc0c-1652-421f-b49b-c3e1c108768f'
86
- TEMPLATE_GUIDS['Unity Catalog Registered Model Version'] = '1364bfe7-8295-4e99-9243-8840aeac4cf1'
87
- TEMPLATE_GUIDS['Unity Catalog Server'] = 'dcca9788-b30f-4007-b1ac-ec634aff6879'
88
- INTEGRATION_GUIDS['UnityCatalogInsideCatalog'] = '74dde22f-2249-4ea3-af2b-b39e73f79b81'
89
- INTEGRATION_GUIDS['UnityCatalogServer'] = '06d068d9-9e08-4e67-8c59-073bbf1013af'
90
- TEMPLATE_GUIDS['Databricks Unity Catalog Server'] = '3f7f62f6-4abc-424e-9f92-523306e7d5d5'
91
- INTEGRATION_GUIDS['JDBC'] = '70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa'
92
- TEMPLATE_GUIDS['Data File'] = '66d8dda9-00cf-4e59-938c-4b0583596b1e'
93
- TEMPLATE_GUIDS['Unity Catalog Catalog'] = '5ee006aa-a6d6-411b-9b8d-5f720c079cae'
94
- TEMPLATE_GUIDS['View Server'] = 'fd61ca01-390d-4aa2-a55d-426826aa4e1b'
95
- TEMPLATE_GUIDS['Archive File'] = '7578e504-d00f-406d-a194-3fc0a351cdf9'
96
- TEMPLATE_GUIDS['Executable File'] = '3d99a163-7a13-4576-a212-784010a8302a'
97
- INTEGRATION_GUIDS['OpenLineageAPIPublisher'] = '2156bc98-973a-4859-908d-4ccc96f53cc5'
98
- TEMPLATE_GUIDS['PostgreSQL Relational Database'] = '3d398b3f-7ae6-4713-952a-409f3dea8520'
99
- INTEGRATION_GUIDS['PostgreSQLDatabase'] = 'ef301220-7dfe-4c6c-bb9d-8f92d9f63823'
100
- TEMPLATE_GUIDS['Unity Catalog Table'] = '6cc1e5f5-4c1e-4290-a80e-e06643ffb13d'
101
- TEMPLATE_GUIDS['JSON Data File'] = 'c4836635-7e9e-446a-83b5-15e206b1aff3'
102
- TEMPLATE_GUIDS['File System'] = '522f228c-097c-4f90-9efc-26c1f2696f87'
103
- TEMPLATE_GUIDS['Source Code File'] = '9c7013ef-f29b-4b01-a8ea-5ea14f64c67a'
104
- TEMPLATE_GUIDS['Program File'] = '32d27e9c-1fdf-455a-ad2a-42b4d7d99108'
105
- TEMPLATE_GUIDS['Apple MacBook Pro'] = '32a9fd56-85c9-47fe-a211-9da3871bf4da'
106
- TEMPLATE_GUIDS['Build Instruction File'] = 'fbb2fa2e-8bcb-402e-9be7-5c6db9f2c504'
107
- TEMPLATE_GUIDS['Spreadsheet Data File'] = 'e4fabff5-2ba9-4050-9076-6ed917970b4c'
108
- TEMPLATE_GUIDS['UNIX File System'] = '27117270-8667-41d0-a99a-9118f9b60199'
109
- TEMPLATE_GUIDS['Video Data File'] = '93b2b722-ec0f-4da4-960a-b8d4922f8bf5'
110
- TEMPLATE_GUIDS['JDBC Endpoint'] = '3d79ce50-1887-4627-ad71-ba4649aba2bc'
111
- TEMPLATE_GUIDS['Unity Catalog Function'] = 'a490ba65-6104-4213-9be9-524e16fed8aa'
112
- TEMPLATE_GUIDS['Unity Catalog Registered Model'] = '0d762ec5-c1f5-4364-aa64-e7e00d27f837'
113
- TEMPLATE_GUIDS['PostgreSQL Relational Database Schema'] = '82a5417c-d882-4271-8444-4c6a996a8bfc'
114
- INTEGRATION_GUIDS['HarvestSurveys'] = 'fae162c3-2bfd-467f-9c47-2e3b63a655de'
115
- INTEGRATION_GUIDS['HarvestActivity'] = '856501d9-ec29-4e67-9cd7-120f53710ffa'
116
- INTEGRATION_GUIDS['HarvestOpenMetadata'] = 'f8bf326b-d613-4ece-a12e-a1423bc272d7'
117
- TEMPLATE_GUIDS['PostgreSQL Server'] = '542134e6-b9ce-4dce-8aef-22e8daf34fdb'
118
- INTEGRATION_GUIDS['PostgreSQLServer'] = '36f69fd0-54ba-4f59-8a44-11ccf2687a34'
119
- TEMPLATE_GUIDS['Audio Data File'] = '39b4b670-7f15-4744-a5ba-62e8edafbcee'
120
- TEMPLATE_GUIDS['Document File'] = 'eb6f728d-fa54-4350-9807-1199cbf96851'
121
- TEMPLATE_GUIDS['Engine Host'] = '1764a891-4234-45f1-8cc3-536af40c790d'
122
- TEMPLATE_GUIDS['Integration Daemon'] = '6b3516f0-dd13-4786-9601-07215f995197'
123
- TEMPLATE_GUIDS['XML Data File'] = 'ea67ae71-c674-473e-b38b-689879d2a7d9'
124
- TEMPLATE_GUIDS['Avro Data File'] = '9f5be428-058e-41dd-b506-3a222283b579'
125
- TEMPLATE_GUIDS['REST API Endpoint'] = '9ea4bff4-d193-492f-bcad-6e68c07c6f9e'
126
- TEMPLATE_GUIDS['Unity Catalog Schema'] = '5bf92b0f-3970-41ea-b0a3-aacfbf6fd92e'
127
- TEMPLATE_GUIDS['Unity Catalog Volume'] = '92d2d2dc-0798-41f0-9512-b10548d312b7'
128
- TEMPLATE_GUIDS['Parquet Data File'] = '7f6cd744-79c3-4d25-a056-eeb1a91574c3'
129
- TEMPLATE_GUIDS['File'] = 'ae3067c7-cc72-4a18-88e1-746803c2c86f'
130
- TEMPLATE_GUIDS['3D Image Data File'] = '0059ea2b-6292-4cac-aa6f-a80a605f1114'
131
- TEMPLATE_GUIDS['YAML File'] = '2221855b-2b64-4b45-a2ee-c40adc5e2a64'
132
- TEMPLATE_GUIDS['Apache Kafka Topic'] = 'ea8f81c9-c59c-47de-9525-7cc59d1251e5'
133
- INTEGRATION_GUIDS['OpenLineageKafkaListener'] = '980b989c-de78-4e6a-a58d-51049d7381bf'
134
- TEMPLATE_GUIDS['Script File'] = 'dbd5e6bb-1ff8-46f4-a007-fb0485f68c92'
135
- TEMPLATE_GUIDS['Apache Atlas Server'] = 'fe6dce45-a978-4417-ab55-17f05b8bcea7'
136
- INTEGRATION_GUIDS['ApacheAtlasServer'] = '5721627a-2dd4-4f95-a274-6cfb128edb97'
137
- TEMPLATE_GUIDS['Raster Data File'] = '47211156-f03f-4881-8526-015e695a3dac'
138
- TEMPLATE_GUIDS['Metadata Access Server'] = 'bd8de890-fa79-4c24-aab8-20b41b5893dd'
139
- TEMPLATE_GUIDS['Data Folder'] = '372a0379-7060-4c9d-8d84-bc709b31794c'
140
- INTEGRATION_GUIDS['MaintainDataFolderLastUpdateDate'] = 'fd26f07c-ae44-4bc5-b457-37b43112224f'
141
- INTEGRATION_GUIDS['OpenLineageFilePublisher'] = '6271b678-7d22-4cdf-87b1-45b366beaf4e'
142
- TEMPLATE_GUIDS['Properties File'] = '3b281111-a0ef-4fc4-99e7-9a0ef84a7636'
143
- TEMPLATE_GUIDS['Vector Data File'] = 'db1bec7f-55a9-40d3-91c0-a57b76d422e2'
144
- TEMPLATE_GUIDS['OMAG Server Platform'] = '9b06c4dc-ddc8-47ae-b56b-28775d3a96f0'
145
- INTEGRATION_GUIDS['OpenAPI'] = 'b89d9a5a-2ea6-49bc-a4fc-e7df9f3ca93e'
146
- INTEGRATION_GUIDS['OMAGServerPlatform'] = 'dee84e6e-7a96-4975-86c1-152fb3ab759b'
147
- TEMPLATE_GUIDS['Apache Kafka Server'] = '5e1ff810-5418-43f7-b7c4-e6e062f9aff7'
148
- INTEGRATION_GUIDS['KafkaTopic'] = 'fa1f711c-0b34-4b57-8e6e-16162b132b0c'
149
- INTEGRATION_GUIDS['OpenLineageAPIPublisher'] = '2156bc98-973a-4859-908d-4ccc96f53cc5'
150
- INTEGRATION_GUIDS['JDBCDatabaseCataloguer'] = '70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa'
151
- INTEGRATION_GUIDS['ApacheKafkaCataloguer'] = 'fa1f711c-0b34-4b57-8e6e-16162b132b0c'
152
- INTEGRATION_GUIDS['FilesCataloguer'] = '1b98cdac-dd0a-4621-93db-99ef5a1098bc'
153
- INTEGRATION_GUIDS['UnityCatalogServerSynchronizer'] = '06d068d9-9e08-4e67-8c59-073bbf1013af'
154
- INTEGRATION_GUIDS['SampleDataCataloguer'] = 'cd6479e1-2fe7-4426-b358-8a0cf70be117'
155
- INTEGRATION_GUIDS['OpenLineageGovernanceActionPublisher'] = '206f8faf-04da-4b6f-8280-eeee3943afeb'
156
- INTEGRATION_GUIDS['OMAGServerPlatformCataloguer'] = 'dee84e6e-7a96-4975-86c1-152fb3ab759b'
157
- INTEGRATION_GUIDS['HarvestActivity'] = '856501d9-ec29-4e67-9cd7-120f53710ffa'
158
- INTEGRATION_GUIDS['MaintainLastUpdateDate'] = 'fd26f07c-ae44-4bc5-b457-37b43112224f'
159
- INTEGRATION_GUIDS['UnityCatalogInsideCatalogSynchronizer'] = '74dde22f-2249-4ea3-af2b-b39e73f79b81'
160
- INTEGRATION_GUIDS['OpenLineageKafkaListener'] = '980b989c-de78-4e6a-a58d-51049d7381bf'
161
- INTEGRATION_GUIDS['HarvestOpenMetadata'] = 'f8bf326b-d613-4ece-a12e-a1423bc272d7'
162
- INTEGRATION_GUIDS['OpenAPICataloguer'] = 'b89d9a5a-2ea6-49bc-a4fc-e7df9f3ca93e'
163
- INTEGRATION_GUIDS['OpenLineageFilePublisher'] = '6271b678-7d22-4cdf-87b1-45b366beaf4e'
164
- INTEGRATION_GUIDS['PostgreSQLServerCataloguer'] = '36f69fd0-54ba-4f59-8a44-11ccf2687a34'
165
- INTEGRATION_GUIDS['PostgreSQLDatabaseCataloguer'] = 'ef301220-7dfe-4c6c-bb9d-8f92d9f63823'
166
- INTEGRATION_GUIDS['ContentPacksCataloguer'] = '6bb2181e-7724-4515-ba3c-877cded55980'
167
- INTEGRATION_GUIDS['OpenLineageCataloguer'] = '3347ac71-8dd2-403a-bc16-75a71be64bd7'
168
- INTEGRATION_GUIDS['ApacheAtlasExchange'] = '5721627a-2dd4-4f95-a274-6cfb128edb97'
169
- INTEGRATION_GUIDS['HarvestSurveys'] = 'fae162c3-2bfd-467f-9c47-2e3b63a655de'
170
78
 
171
79
  def __getattr__(name):
172
80
  """