pyegeria 5.4.0.24__py3-none-any.whl → 5.4.0.26__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.
- commands/cat/debug_log +7373 -1452
- commands/cat/dr_egeria_md.py +21 -4
- commands/cat/logs/pyegeria.log +4 -0
- md_processing/.DS_Store +0 -0
- md_processing/__init__.py +7 -3
- md_processing/data/commands.json +1683 -2801
- md_processing/dr_egeria_inbox/product.md +69 -20
- md_processing/dr_egeria_outbox/.obsidian/workspace.json +5 -5
- md_processing/dr_egeria_outbox/monday/processed-2025-08-19 07:05-product.md +426 -0
- md_processing/dr_egeria_outbox/monday/processed-2025-08-19 07:56-product.md +212 -0
- md_processing/dr_egeria_outbox/monday/processed-2025-08-19 09:43-product.md +201 -0
- md_processing/dr_egeria_outbox/tuesday/processed-2025-08-19 10:55-product.md +209 -0
- md_processing/md_commands/governance_officer_commands.py +1 -73
- md_processing/md_commands/product_manager_commands.py +453 -211
- md_processing/md_processing_utils/common_md_proc_utils.py +60 -5
- md_processing/md_processing_utils/common_md_utils.py +21 -9
- md_processing/md_processing_utils/extraction_utils.py +2 -2
- md_processing/md_processing_utils/md_processing_constants.py +8 -7
- pyegeria/.DS_Store +0 -0
- pyegeria/__init__.py +4 -300
- pyegeria/_client_new.py +59 -11
- pyegeria/_output_formats.py +43 -0
- pyegeria/collection_manager.py +79 -14
- pyegeria/{data_designer_omvs.py → data_designer.py} +1171 -1675
- pyegeria/egeria_cat_client.py +2 -2
- pyegeria/egeria_client.py +4 -4
- pyegeria/egeria_tech_client.py +1 -1
- pyegeria/glossary_browser.py +1259 -0
- pyegeria/{glossary_manager_omvs.py → glossary_manager.py} +1181 -1099
- pyegeria/models.py +9 -3
- pyegeria/output_formatter.py +2 -1
- pyegeria/project_manager.py +1743 -0
- pyegeria/solution_architect_omvs.py +1 -1
- pyegeria/utils.py +4 -1
- {pyegeria-5.4.0.24.dist-info → pyegeria-5.4.0.26.dist-info}/METADATA +1 -1
- {pyegeria-5.4.0.24.dist-info → pyegeria-5.4.0.26.dist-info}/RECORD +39 -43
- commands/cat/debug_log.2025-08-15_09-14-07_444802.zip +0 -0
- commands/cat/debug_log.2025-08-16_10-21-59_388912.zip +0 -0
- md_processing/dr_egeria_outbox/monday/processed-2025-07-14 12:38-data_designer_out.md +0 -663
- md_processing/dr_egeria_outbox/monday/processed-2025-07-21 10:52-generated_help_report.md +0 -2744
- md_processing/dr_egeria_outbox/monday/processed-2025-07-21 18:38-collections.md +0 -62
- md_processing/dr_egeria_outbox/monday/processed-2025-08-01 11:34-gov_def.md +0 -444
- md_processing/dr_egeria_outbox/monday/processed-2025-08-17 21:04-product.md +0 -97
- pyegeria/collection_manager_omvs.py +0 -6541
- pyegeria/glossary_browser_omvs.py +0 -3840
- pyegeria/governance_officer_omvs.py +0 -2367
- pyegeria/project_manager_omvs.py +0 -1933
- {pyegeria-5.4.0.24.dist-info → pyegeria-5.4.0.26.dist-info}/LICENSE +0 -0
- {pyegeria-5.4.0.24.dist-info → pyegeria-5.4.0.26.dist-info}/WHEEL +0 -0
- {pyegeria-5.4.0.24.dist-info → pyegeria-5.4.0.26.dist-info}/entry_points.txt +0 -0
@@ -129,8 +129,12 @@ def parse_upsert_command(egeria_client: EgeriaTech, object_type: str, object_act
|
|
129
129
|
default_value = attr[key].get('default_value', None)
|
130
130
|
|
131
131
|
style = attr[key]['style']
|
132
|
-
if style in ['Simple', '
|
132
|
+
if style in ['Simple', 'Comment']:
|
133
133
|
parsed_attributes[key] = proc_simple_attribute(txt, object_action, labels, if_missing, default_value)
|
134
|
+
elif style == 'Dictionary':
|
135
|
+
parsed_attributes[key] = proc_dictionary_attribute(txt, object_action, labels, if_missing, default_value)
|
136
|
+
parsed_attributes[key]['name_list'] = json.dumps(parsed_attributes[key]['value'], indent=2)
|
137
|
+
|
134
138
|
elif style == 'Valid Value':
|
135
139
|
parsed_attributes[key] = proc_valid_value(txt, object_action, labels,
|
136
140
|
attr[key].get('valid_values', None), if_missing,
|
@@ -330,8 +334,12 @@ def parse_view_command(egeria_client: EgeriaTech, object_type: str, object_actio
|
|
330
334
|
default_value = attr[key].get('default_value', None)
|
331
335
|
|
332
336
|
style = attr[key]['style']
|
333
|
-
if style in ['Simple', '
|
337
|
+
if style in ['Simple', 'Comment']:
|
334
338
|
parsed_attributes[key] = proc_simple_attribute(txt, object_action, labels, if_missing, default_value)
|
339
|
+
elif style == 'Dictionary':
|
340
|
+
parsed_attributes[key] = proc_dictionary_attribute(txt, object_action, labels, if_missing,
|
341
|
+
default_value)
|
342
|
+
parsed_attributes[key]['name_list'] = json.dumps(parsed_attributes[key]['value'], indent=2)
|
335
343
|
elif style == 'Valid Value':
|
336
344
|
parsed_attributes[key] = proc_valid_value(txt, object_action, labels,
|
337
345
|
attr[key].get('valid_values', None), if_missing,
|
@@ -406,7 +414,7 @@ def parse_view_command(egeria_client: EgeriaTech, object_type: str, object_actio
|
|
406
414
|
value = parsed_attributes[key].get('value', None)
|
407
415
|
|
408
416
|
if value is not None:
|
409
|
-
# if the value is a dict, get the
|
417
|
+
# if the value is a dict or list, get the stringifiedt
|
410
418
|
value = parsed_attributes[key].get('name_list', None) if isinstance(value, (dict, list)) else value
|
411
419
|
parsed_output['display'] += f"\n\t* {key}: `{value}`\n\t"
|
412
420
|
|
@@ -469,6 +477,50 @@ def proc_simple_attribute(txt: str, action: str, labels: set, if_missing: str =
|
|
469
477
|
|
470
478
|
return {"status": INFO, "OK": None, "value": attribute, "valid": valid, "exists": True}
|
471
479
|
|
480
|
+
@logger.catch
|
481
|
+
def proc_dictionary_attribute(txt: str, action: str, labels: set, if_missing: str = INFO, default_value=None,
|
482
|
+
simp_type: str = None) -> dict:
|
483
|
+
"""Process a dictionary attribute based on the provided labels and if_missing value.
|
484
|
+
Extract the attribute value from the text and store it in a dictionary along with valid.
|
485
|
+
If it doesn`t exist, mark the dictionary entry as invalid and print an error message with severity of if_missing.
|
486
|
+
|
487
|
+
Parameters:
|
488
|
+
----------
|
489
|
+
txt: str
|
490
|
+
The block of object_action text to extract attributes from.
|
491
|
+
labels: list
|
492
|
+
The possible attribute labels to search for. The first label will be used in messages.
|
493
|
+
if_missing: str, default is INFO
|
494
|
+
Can be one of "WARNING", "ERROR", "INFO". The severity of the missing attribute.
|
495
|
+
default_value: default is None
|
496
|
+
The default value to return if the attribute is missing.
|
497
|
+
"""
|
498
|
+
valid = True
|
499
|
+
|
500
|
+
if if_missing not in ["WARNING", "ERROR", "INFO"]:
|
501
|
+
msg = "Invalid severity for missing attribute"
|
502
|
+
logger.error(msg)
|
503
|
+
return {"status": ERROR, "reason": msg, "value": None, "valid": False}
|
504
|
+
|
505
|
+
if default_value == "":
|
506
|
+
default_value = None
|
507
|
+
|
508
|
+
attr = extract_attribute(txt, labels)
|
509
|
+
attribute = json.loads(attr) if attr is not None else default_value
|
510
|
+
|
511
|
+
|
512
|
+
if attribute is None:
|
513
|
+
if if_missing == INFO or if_missing == WARNING:
|
514
|
+
msg = f"Optional attribute with labels: `{labels}` missing"
|
515
|
+
valid = True
|
516
|
+
logger.info(msg)
|
517
|
+
else:
|
518
|
+
msg = f"Missing attribute with labels `{labels}` "
|
519
|
+
valid = False
|
520
|
+
logger.error(msg)
|
521
|
+
return {"status": if_missing, "reason": msg, "value": None, "valid": valid, "exists": False}
|
522
|
+
|
523
|
+
return {"status": INFO, "OK": None, "value": attribute, "valid": valid, "exists": True}
|
472
524
|
|
473
525
|
@logger.catch
|
474
526
|
def proc_valid_value(txt: str, action: str, labels: set, valid_values: [], if_missing: str = INFO,
|
@@ -529,8 +581,11 @@ def proc_valid_value(txt: str, action: str, labels: set, valid_values: [], if_mi
|
|
529
581
|
logger.error(msg)
|
530
582
|
return {"status": if_missing, "reason": msg, "value": None, "valid": valid, "exists": False}
|
531
583
|
else:
|
584
|
+
# Todo: look at moving validation into pydantic or another style...
|
585
|
+
if "Status" in labels:
|
586
|
+
attribute = attribute.upper()
|
532
587
|
if attribute not in v_values:
|
533
|
-
msg = f"Invalid value for attribute `{labels}`"
|
588
|
+
msg = f"Invalid value for attribute `{labels}` attribute is `{attribute}`"
|
534
589
|
logger.warning(msg)
|
535
590
|
return {"status": WARNING, "reason": msg, "value": attribute, "valid": False, "exists": True}
|
536
591
|
|
@@ -656,7 +711,7 @@ def proc_el_id(egeria_client: EgeriaTech, element_type: str, qn_prefix: str, ele
|
|
656
711
|
logger.error(msg)
|
657
712
|
identifier_output = {"status": ERROR, "reason": msg, "value": element_name, "valid": False, "exists": False, }
|
658
713
|
|
659
|
-
elif action in ["Update", "View"] and exists:
|
714
|
+
elif action in ["Update", "View", "Link", "Detach"] and exists:
|
660
715
|
msg = f"Element {element_name} exists"
|
661
716
|
logger.info(msg)
|
662
717
|
identifier_output = {
|
@@ -307,12 +307,15 @@ def set_prop_body(object_type: str, qualified_name: str, attributes: dict)->dict
|
|
307
307
|
"qualifiedName" : qualified_name,
|
308
308
|
"description": attributes['Description'].get('value', None),
|
309
309
|
"category": attributes.get('Category', {}).get('value', None),
|
310
|
+
"identifier": attributes.get('Identifier', {}).get('value', None),
|
310
311
|
"userDefinedStatus": attributes.get('User Defined Status', {}).get('value', None),
|
311
312
|
"versionIdentifier": attributes.get('Version Identifier', {}).get('value', None),
|
312
313
|
"effectiveFrom": attributes.get('Effective From', {}).get('value', None),
|
313
314
|
"effectiveTo": attributes.get('Effective To', {}).get('value', None),
|
314
315
|
"additionalProperties": attributes.get('Additional Properties', {}).get('value', None),
|
315
|
-
"extendedProperties": attributes.get('Extended Properties', {}).get('value', None)
|
316
|
+
"extendedProperties": attributes.get('Extended Properties', {}).get('value', None),
|
317
|
+
"supportLevel": attributes.get('Support Level', {}).get('value', None),
|
318
|
+
"serviceLevels": attributes.get('Service Levels', {}).get('value', None),
|
316
319
|
}
|
317
320
|
|
318
321
|
def set_product_body(object_type: str, qualified_name: str, attributes: dict)->dict:
|
@@ -324,6 +327,9 @@ def set_product_body(object_type: str, qualified_name: str, attributes: dict)->d
|
|
324
327
|
prop_bod["introductionDate"] = attributes.get('Introduction Date', {}).get('value', [])
|
325
328
|
prop_bod["withdrawalDate"] = attributes.get('Withdrawal Date', {}).get('value', [])
|
326
329
|
prop_bod["nextVersion"] = attributes.get('Next Version Date', {}).get('value', [])
|
330
|
+
return prop_bod
|
331
|
+
|
332
|
+
|
327
333
|
|
328
334
|
def set_update_status_body(object_type: str, attributes: dict)->dict:
|
329
335
|
return {
|
@@ -425,6 +431,8 @@ def set_delete_request_body(object_type: str, attributes: dict)->dict:
|
|
425
431
|
"forDuplicateProcessing": attributes.get('For Duplicate Processing', {}).get('value', False)
|
426
432
|
}
|
427
433
|
|
434
|
+
|
435
|
+
|
428
436
|
def set_filter_request_body(object_type: str, attributes: dict)->dict:
|
429
437
|
return {
|
430
438
|
"class": "FilterRequestBody",
|
@@ -457,14 +465,18 @@ def set_classifications(object_type: str, attributes: dict)->dict:
|
|
457
465
|
body = {classification: {} for classification in classifications} if cclassifications else {}
|
458
466
|
return body
|
459
467
|
|
460
|
-
def set_collection_classifications(object_type: str, attributes: dict)->dict:
|
468
|
+
def set_collection_classifications(object_type: str, attributes: dict, obj_types: list[str])->dict:
|
461
469
|
classifications = attributes.get('Classifications', {}).get('name_list', None)
|
462
|
-
|
463
|
-
if object_type in
|
464
|
-
if
|
465
|
-
classifications
|
466
|
-
|
467
|
-
|
470
|
+
obj = object_type.replace(" ", "")
|
471
|
+
if object_type in obj_types:
|
472
|
+
if classifications:
|
473
|
+
if object_type not in classifications:
|
474
|
+
classifications.append(obj)
|
475
|
+
else:
|
476
|
+
classifications = [obj]
|
477
|
+
|
478
|
+
body = {}
|
468
479
|
if classifications:
|
469
|
-
|
480
|
+
for classification in classifications:
|
481
|
+
body[classification] = {"class" : f"{classification}Properties"}
|
470
482
|
return body
|
@@ -91,7 +91,7 @@ def extract_attribute(text: str, labels: set) -> str | None:
|
|
91
91
|
# Iterate over the list of labels
|
92
92
|
for label in labels:
|
93
93
|
# Construct pattern for the current label
|
94
|
-
# text = re.sub(r'\s+', ' ', text).strip()
|
94
|
+
# text = re.sub(r'\s+', ' ', text).strip() # just added
|
95
95
|
text = re.sub(r'\n\n+', '\n\n', text).strip()
|
96
96
|
|
97
97
|
label = label.strip()
|
@@ -395,7 +395,7 @@ def get_element_by_name(egeria_client, element_type: str, element_name: str) ->
|
|
395
395
|
return q_name, guid, unique, exists
|
396
396
|
|
397
397
|
else: # Missing guid from element_dictionary
|
398
|
-
guid = egeria_client.
|
398
|
+
guid = egeria_client.__get_guid__(qualified_name=q_name)
|
399
399
|
if guid == NO_ELEMENTS_FOUND:
|
400
400
|
guid = None
|
401
401
|
exists = False
|
@@ -131,20 +131,21 @@ command_list = ["Provenance", "Create Glossary", "Update Glossary", "Create Term
|
|
131
131
|
"View Dataa Classes", "View Data Class", "Create Data Class", "Update Data Class",
|
132
132
|
"Create Digital Product", "Create Data Product", "Update Digital Product", "Update Data Product",
|
133
133
|
"Create Agreement", "Update Agreement",
|
134
|
-
"Link Digital Products", "Link
|
134
|
+
"Link Digital Products", "Link Product-Product", "Detach Digital Products", "Detach Product-Product",
|
135
135
|
"Create Data Sharing Agreement", "Update Data Sharing Agreement",
|
136
|
-
|
137
|
-
"
|
136
|
+
"Create Digital Subscription", "Create Product Subscription", "Update Digital Subscription", "Update Product Subscription",
|
137
|
+
"Link Agreement->Item", "Detach Agreement->Item",
|
138
138
|
"Attach Contract", "Detach Contract",
|
139
|
-
"
|
140
|
-
"Link Collection
|
141
|
-
"Unlink Collection
|
139
|
+
"Link Subscriber->Subscription", "Detach Subscriber->Subscription",
|
140
|
+
"Link Collection->Resource", "Attach Collection->Resource",
|
141
|
+
"Unlink Collection->Resource", "Detach Collection->Resource",
|
142
142
|
"Add Member to Collection", "Add Member", "Member->Collection",
|
143
|
-
"Remove Member from Collection","Remove Member
|
143
|
+
"Remove Member from Collection","Remove Member->Collection",
|
144
144
|
"View Governance Definitions", "View Gov Definitions",
|
145
145
|
"List Governance Definitions", "List Gov Definitions",
|
146
146
|
"View Governance Definition Context","List Governance Definition Context",
|
147
147
|
"View Governance Def Context", "List Governance Def Context",
|
148
|
+
"View Report",
|
148
149
|
# "Create Business Imperative", "Update Business Imperative",
|
149
150
|
# "Create Regulation Article Definition", "Update Regulation Article Definition",
|
150
151
|
# "Create Threat Definition", "Update Threat Definition",
|
pyegeria/.DS_Store
CHANGED
Binary file
|
pyegeria/__init__.py
CHANGED
@@ -50,15 +50,15 @@ from .egeria_my_client import EgeriaMy
|
|
50
50
|
from .egeria_tech_client import EgeriaTech
|
51
51
|
from .feedback_manager_omvs import FeedbackManager
|
52
52
|
from .full_omag_server_config import FullServerConfig
|
53
|
-
from .
|
54
|
-
from .
|
53
|
+
from .glossary_browser import GlossaryBrowser
|
54
|
+
from .glossary_manager import GlossaryManager
|
55
55
|
from .governance_officer import GovernanceOfficer
|
56
56
|
from .mermaid_utilities import (construct_mermaid_web, construct_mermaid_jup, generate_process_graph, load_mermaid,
|
57
57
|
parse_mermaid_code, render_mermaid, save_mermaid_graph, save_mermaid_html, )
|
58
58
|
from .metadata_explorer_omvs import MetadataExplorer
|
59
59
|
from .my_profile_omvs import MyProfile
|
60
60
|
from .platform_services import Platform
|
61
|
-
from .
|
61
|
+
from .project_manager import ProjectManager
|
62
62
|
from .registered_info import RegisteredInfo
|
63
63
|
from .runtime_manager_omvs import RuntimeManager
|
64
64
|
from .server_operations import ServerOps
|
@@ -67,304 +67,8 @@ from .utils import body_slimmer, print_response, to_pascal_case, to_camel_case,
|
|
67
67
|
from .valid_metadata_omvs import ValidMetadataManager
|
68
68
|
from .x_action_author_omvs import ActionAuthor
|
69
69
|
from .template_manager_omvs import TemplateManager
|
70
|
-
|
71
|
-
# process_category_upsert_command, get_current_datetime_string,
|
72
|
-
# process_per_proj_upsert_command, command_list, render_markdown,
|
73
|
-
# process_provenance_command, process_blueprint_upsert_command,
|
74
|
-
# process_solution_component_upsert_command, process_term_list_command,
|
75
|
-
# process_glossary_list_command, process_category_list_command,
|
76
|
-
# process_term_history_command, process_glossary_structure_command,
|
77
|
-
# process_term_revision_history_command, process_create_term_term_relationship_command,
|
78
|
-
# process_term_details_command,)
|
79
|
-
|
80
|
-
#
|
81
|
-
# The following assignments were generated by the `create_tech_guid_lists.py` utility that uses the pyegeria functions
|
82
|
-
# to interrogate Egeria (and the Core Content Pack) for the GUIDS associates with integration connectors and templates.
|
83
|
-
# While these GUIDS rarely change, they will evolve as new connectors are built and integrated. This could impact some
|
84
|
-
# of the pyegeria methods that, as a convenience, use pre-assigned GUIDS to create new elements and such.
|
85
|
-
#
|
86
|
-
# This list may also be augmented (and of use) to those wishing to extend the pyegeria methods to automate or simplify
|
87
|
-
# the use of custom connectors and templates.
|
70
|
+
from .data_designer import DataDesigner
|
88
71
|
#
|
89
|
-
#
|
90
|
-
# global template_guids, integration_guids
|
91
|
-
# TEMPLATE_GUIDS["CSV Data File"] = "13770f93-13c8-42be-9bb8-e0b1b1e52b1f"
|
92
|
-
# TEMPLATE_GUIDS["Keystore File"] = "fbcfcc0c-1652-421f-b49b-c3e1c108768f"
|
93
|
-
# TEMPLATE_GUIDS["Unity Catalog Server"] = "dcca9788-b30f-4007-b1ac-ec634aff6879"
|
94
|
-
# INTEGRATION_GUIDS["UnityCatalogInsideCatalog"] = "74dde22f-2249-4ea3-af2b-b39e73f79b81"
|
95
|
-
# INTEGRATION_GUIDS["UnityCatalogServer"] = "06d068d9-9e08-4e67-8c59-073bbf1013af"
|
96
|
-
# INTEGRATION_GUIDS["JDBC"] = "70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa"
|
97
|
-
# TEMPLATE_GUIDS["Data File"] = "66d8dda9-00cf-4e59-938c-4b0583596b1e"
|
98
|
-
# TEMPLATE_GUIDS["View Server"] = "fd61ca01-390d-4aa2-a55d-426826aa4e1b"
|
99
|
-
# TEMPLATE_GUIDS["Archive File"] = "7578e504-d00f-406d-a194-3fc0a351cdf9"
|
100
|
-
# TEMPLATE_GUIDS["Unity Catalog Catalog"] = "5ee006aa-a6d6-411b-9b8d-5f720c079cae"
|
101
|
-
# TEMPLATE_GUIDS[
|
102
|
-
# "PostgreSQL Relational Database"
|
103
|
-
# ] = "3d398b3f-7ae6-4713-952a-409f3dea8520"
|
104
|
-
# INTEGRATION_GUIDS["JDBC"] = "70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa"
|
105
|
-
# TEMPLATE_GUIDS["Program File"] = "32d27e9c-1fdf-455a-ad2a-42b4d7d99108"
|
106
|
-
# TEMPLATE_GUIDS["FileFolder"] = "fbdd8efd-1b69-474c-bb6d-0a304b394146"
|
107
|
-
# INTEGRATION_GUIDS["ContentPacksMonitor"] = "6bb2181e-7724-4515-ba3c-877cded55980"
|
108
|
-
# INTEGRATION_GUIDS["GeneralFilesMonitor"] = "1b98cdac-dd0a-4621-93db-99ef5a1098bc"
|
109
|
-
# INTEGRATION_GUIDS["SampleDataFilesMonitor"] = "cd6479e1-2fe7-4426-b358-8a0cf70be117"
|
110
|
-
# INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
|
111
|
-
# TEMPLATE_GUIDS["JDBC Endpoint"] = "3d79ce50-1887-4627-ad71-ba4649aba2bc"
|
112
|
-
# TEMPLATE_GUIDS["PostgreSQL Server"] = "542134e6-b9ce-4dce-8aef-22e8daf34fdb"
|
113
|
-
# INTEGRATION_GUIDS["PostgreSQLServer"] = "36f69fd0-54ba-4f59-8a44-11ccf2687a34"
|
114
|
-
# TEMPLATE_GUIDS["Audio Data File"] = "39b4b670-7f15-4744-a5ba-62e8edafbcee"
|
115
|
-
# TEMPLATE_GUIDS["Document File"] = "eb6f728d-fa54-4350-9807-1199cbf96851"
|
116
|
-
# TEMPLATE_GUIDS["Integration Daemon"] = "6b3516f0-dd13-4786-9601-07215f995197"
|
117
|
-
# TEMPLATE_GUIDS["XML Data File"] = "ea67ae71-c674-473e-b38b-689879d2a7d9"
|
118
|
-
# TEMPLATE_GUIDS["REST API Endpoint"] = "9ea4bff4-d193-492f-bcad-6e68c07c6f9e"
|
119
|
-
# TEMPLATE_GUIDS["Unity Catalog Schema"] = "5bf92b0f-3970-41ea-b0a3-aacfbf6fd92e"
|
120
|
-
# TEMPLATE_GUIDS["Parquet Data File"] = "7f6cd744-79c3-4d25-a056-eeb1a91574c3"
|
121
|
-
# TEMPLATE_GUIDS["3D Image Data File"] = "0059ea2b-6292-4cac-aa6f-a80a605f1114"
|
122
|
-
# TEMPLATE_GUIDS["YAML File"] = "2221855b-2b64-4b45-a2ee-c40adc5e2a64"
|
123
|
-
# TEMPLATE_GUIDS["Metadata Access Server"] = "bd8de890-fa79-4c24-aab8-20b41b5893dd"
|
124
|
-
# TEMPLATE_GUIDS["Properties File"] = "3b281111-a0ef-4fc4-99e7-9a0ef84a7636"
|
125
|
-
# TEMPLATE_GUIDS["Vector Data File"] = "db1bec7f-55a9-40d3-91c0-a57b76d422e2"
|
126
|
-
# TEMPLATE_GUIDS["Apache Kafka Server"] = "5e1ff810-5418-43f7-b7c4-e6e062f9aff7"
|
127
|
-
# INTEGRATION_GUIDS["KafkaTopic"] = "fa1f711c-0b34-4b57-8e6e-16162b132b0c"
|
128
|
-
# TEMPLATE_GUIDS["Executable File"] = "3d99a163-7a13-4576-a212-784010a8302a"
|
129
|
-
# INTEGRATION_GUIDS["OpenLineageAPIPublisher"] = "2156bc98-973a-4859-908d-4ccc96f53cc5"
|
130
|
-
# TEMPLATE_GUIDS["Unity Catalog Table"] = "6cc1e5f5-4c1e-4290-a80e-e06643ffb13d"
|
131
|
-
# TEMPLATE_GUIDS["JSON Data File"] = "c4836635-7e9e-446a-83b5-15e206b1aff3"
|
132
|
-
# TEMPLATE_GUIDS["File System"] = "522f228c-097c-4f90-9efc-26c1f2696f87"
|
133
|
-
# TEMPLATE_GUIDS["Source Code File"] = "9c7013ef-f29b-4b01-a8ea-5ea14f64c67a"
|
134
|
-
# TEMPLATE_GUIDS["Apple MacBook Pro"] = "32a9fd56-85c9-47fe-a211-9da3871bf4da"
|
135
|
-
# TEMPLATE_GUIDS["Build Instruction File"] = "fbb2fa2e-8bcb-402e-9be7-5c6db9f2c504"
|
136
|
-
# TEMPLATE_GUIDS["Spreadsheet Data File"] = "e4fabff5-2ba9-4050-9076-6ed917970b4c"
|
137
|
-
# TEMPLATE_GUIDS["UNIX File System"] = "27117270-8667-41d0-a99a-9118f9b60199"
|
138
|
-
# TEMPLATE_GUIDS["Video Data File"] = "93b2b722-ec0f-4da4-960a-b8d4922f8bf5"
|
139
|
-
# TEMPLATE_GUIDS["Unity Catalog Function"] = "a490ba65-6104-4213-9be9-524e16fed8aa"
|
140
|
-
# TEMPLATE_GUIDS[
|
141
|
-
# "PostgreSQL Relational Database Schema"
|
142
|
-
# ] = "82a5417c-d882-4271-8444-4c6a996a8bfc"
|
143
|
-
# TEMPLATE_GUIDS["Engine Host"] = "1764a891-4234-45f1-8cc3-536af40c790d"
|
144
|
-
# TEMPLATE_GUIDS["Avro Data File"] = "9f5be428-058e-41dd-b506-3a222283b579"
|
145
|
-
# TEMPLATE_GUIDS["Unity Catalog Volume"] = "92d2d2dc-0798-41f0-9512-b10548d312b7"
|
146
|
-
# TEMPLATE_GUIDS["File"] = "ae3067c7-cc72-4a18-88e1-746803c2c86f"
|
147
|
-
# TEMPLATE_GUIDS["Apache Kafka Topic"] = "ea8f81c9-c59c-47de-9525-7cc59d1251e5"
|
148
|
-
# TEMPLATE_GUIDS["Script File"] = "dbd5e6bb-1ff8-46f4-a007-fb0485f68c92"
|
149
|
-
# TEMPLATE_GUIDS["Apache Atlas Server"] = "fe6dce45-a978-4417-ab55-17f05b8bcea7"
|
150
|
-
# TEMPLATE_GUIDS["Raster Data File"] = "47211156-f03f-4881-8526-015e695a3dac"
|
151
|
-
# TEMPLATE_GUIDS["Data Folder"] = "372a0379-7060-4c9d-8d84-bc709b31794c"
|
152
|
-
# INTEGRATION_GUIDS[
|
153
|
-
# "MaintainDataFolderLastUpdateDate"
|
154
|
-
# ] = "fd26f07c-ae44-4bc5-b457-37b43112224f"
|
155
|
-
# INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
|
156
|
-
# TEMPLATE_GUIDS["OMAG Server Platform"] = "9b06c4dc-ddc8-47ae-b56b-28775d3a96f0"
|
157
|
-
# INTEGRATION_GUIDS["OpenAPI"] = "b89d9a5a-2ea6-49bc-a4fc-e7df9f3ca93e"
|
158
|
-
# INTEGRATION_GUIDS["OMAGServerPlatform"] = "dee84e6e-7a96-4975-86c1-152fb3ab759b"
|
159
|
-
# INTEGRATION_GUIDS["PostgreSQLServerCataloguer"] = "36f69fd0-54ba-4f59-8a44-11ccf2687a34"
|
160
|
-
# INTEGRATION_GUIDS[
|
161
|
-
# "UnityCatalogInsideCatalogSynchronizer"
|
162
|
-
# ] = "74dde22f-2249-4ea3-af2b-b39e73f79b81"
|
163
|
-
# INTEGRATION_GUIDS["OpenLineageAPIPublisher"] = "2156bc98-973a-4859-908d-4ccc96f53cc5"
|
164
|
-
# INTEGRATION_GUIDS["JDBCDatabaseCataloguer"] = "70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa"
|
165
|
-
# INTEGRATION_GUIDS["FilesCataloguer"] = "1b98cdac-dd0a-4621-93db-99ef5a1098bc"
|
166
|
-
# INTEGRATION_GUIDS["SampleDataCataloguer"] = "cd6479e1-2fe7-4426-b358-8a0cf70be117"
|
167
|
-
# INTEGRATION_GUIDS[
|
168
|
-
# "OpenLineageGovernanceActionPublisher"
|
169
|
-
# ] = "206f8faf-04da-4b6f-8280-eeee3943afeb"
|
170
|
-
# INTEGRATION_GUIDS["OpenAPICataloguer"] = "b89d9a5a-2ea6-49bc-a4fc-e7df9f3ca93e"
|
171
|
-
# INTEGRATION_GUIDS[
|
172
|
-
# "OMAGServerPlatformCataloguer"
|
173
|
-
# ] = "dee84e6e-7a96-4975-86c1-152fb3ab759b"
|
174
|
-
# INTEGRATION_GUIDS["ApacheKafkaCataloguer"] = "fa1f711c-0b34-4b57-8e6e-16162b132b0c"
|
175
|
-
# INTEGRATION_GUIDS[
|
176
|
-
# "UnityCatalogServerSynchronizer"
|
177
|
-
# ] = "06d068d9-9e08-4e67-8c59-073bbf1013af"
|
178
|
-
# INTEGRATION_GUIDS["MaintainLastUpdateDate"] = "fd26f07c-ae44-4bc5-b457-37b43112224f"
|
179
|
-
# INTEGRATION_GUIDS["OpenLineageKafkaListener"] = "980b989c-de78-4e6a-a58d-51049d7381bf"
|
180
|
-
# INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
|
181
|
-
# INTEGRATION_GUIDS["ContentPacksCataloguer"] = "6bb2181e-7724-4515-ba3c-877cded55980"
|
182
|
-
# INTEGRATION_GUIDS["OpenLineageCataloguer"] = "3347ac71-8dd2-403a-bc16-75a71be64bd7"
|
183
|
-
# global template_guids, integration_guids
|
184
|
-
# TEMPLATE_GUIDS["CSV Data File"] = "13770f93-13c8-42be-9bb8-e0b1b1e52b1f"
|
185
|
-
# TEMPLATE_GUIDS["File System Directory"] = "c353fd5d-9523-4a5e-a5e2-723ae490fe54"
|
186
|
-
# INTEGRATION_GUIDS["GeneralFilesMonitor"] = "1b98cdac-dd0a-4621-93db-99ef5a1098bc"
|
187
|
-
# INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
|
188
|
-
# INTEGRATION_GUIDS["ContentPacksMonitor"] = "6bb2181e-7724-4515-ba3c-877cded55980"
|
189
|
-
# INTEGRATION_GUIDS["SampleDataFilesMonitor"] = "cd6479e1-2fe7-4426-b358-8a0cf70be117"
|
190
|
-
# TEMPLATE_GUIDS["Keystore File"] = "fbcfcc0c-1652-421f-b49b-c3e1c108768f"
|
191
|
-
# TEMPLATE_GUIDS["Unity Catalog Server"] = "dcca9788-b30f-4007-b1ac-ec634aff6879"
|
192
|
-
# INTEGRATION_GUIDS["UnityCatalogInsideCatalog"] = "74dde22f-2249-4ea3-af2b-b39e73f79b81"
|
193
|
-
# INTEGRATION_GUIDS["UnityCatalogServer"] = "06d068d9-9e08-4e67-8c59-073bbf1013af"
|
194
|
-
# INTEGRATION_GUIDS["JDBC"] = "70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa"
|
195
|
-
# TEMPLATE_GUIDS["Data File"] = "66d8dda9-00cf-4e59-938c-4b0583596b1e"
|
196
|
-
# TEMPLATE_GUIDS["View Server"] = "fd61ca01-390d-4aa2-a55d-426826aa4e1b"
|
197
|
-
# TEMPLATE_GUIDS["Archive File"] = "7578e504-d00f-406d-a194-3fc0a351cdf9"
|
198
|
-
# TEMPLATE_GUIDS["Unity Catalog Catalog"] = "5ee006aa-a6d6-411b-9b8d-5f720c079cae"
|
199
|
-
# TEMPLATE_GUIDS[
|
200
|
-
# "PostgreSQL Relational Database"
|
201
|
-
# ] = "3d398b3f-7ae6-4713-952a-409f3dea8520"
|
202
|
-
# INTEGRATION_GUIDS["PostgreSQLDatabase"] = "ef301220-7dfe-4c6c-bb9d-8f92d9f63823"
|
203
|
-
# TEMPLATE_GUIDS["Program File"] = "32d27e9c-1fdf-455a-ad2a-42b4d7d99108"
|
204
|
-
# TEMPLATE_GUIDS["JDBC Endpoint"] = "3d79ce50-1887-4627-ad71-ba4649aba2bc"
|
205
|
-
# TEMPLATE_GUIDS["PostgreSQL Server"] = "542134e6-b9ce-4dce-8aef-22e8daf34fdb"
|
206
|
-
# INTEGRATION_GUIDS["PostgreSQLServer"] = "36f69fd0-54ba-4f59-8a44-11ccf2687a34"
|
207
|
-
# TEMPLATE_GUIDS["Audio Data File"] = "39b4b670-7f15-4744-a5ba-62e8edafbcee"
|
208
|
-
# TEMPLATE_GUIDS["Document File"] = "eb6f728d-fa54-4350-9807-1199cbf96851"
|
209
|
-
# TEMPLATE_GUIDS["Integration Daemon"] = "6b3516f0-dd13-4786-9601-07215f995197"
|
210
|
-
# TEMPLATE_GUIDS["XML Data File"] = "ea67ae71-c674-473e-b38b-689879d2a7d9"
|
211
|
-
# TEMPLATE_GUIDS["REST API Endpoint"] = "9ea4bff4-d193-492f-bcad-6e68c07c6f9e"
|
212
|
-
# TEMPLATE_GUIDS["Unity Catalog Schema"] = "5bf92b0f-3970-41ea-b0a3-aacfbf6fd92e"
|
213
|
-
# TEMPLATE_GUIDS["Parquet Data File"] = "7f6cd744-79c3-4d25-a056-eeb1a91574c3"
|
214
|
-
# TEMPLATE_GUIDS["3D Image Data File"] = "0059ea2b-6292-4cac-aa6f-a80a605f1114"
|
215
|
-
# TEMPLATE_GUIDS["YAML File"] = "2221855b-2b64-4b45-a2ee-c40adc5e2a64"
|
216
|
-
# TEMPLATE_GUIDS["Metadata Access Server"] = "bd8de890-fa79-4c24-aab8-20b41b5893dd"
|
217
|
-
# TEMPLATE_GUIDS["Properties File"] = "3b281111-a0ef-4fc4-99e7-9a0ef84a7636"
|
218
|
-
# TEMPLATE_GUIDS["Vector Data File"] = "db1bec7f-55a9-40d3-91c0-a57b76d422e2"
|
219
|
-
# TEMPLATE_GUIDS["Executable File"] = "3d99a163-7a13-4576-a212-784010a8302a"
|
220
|
-
# INTEGRATION_GUIDS["OpenLineageAPIPublisher"] = "2156bc98-973a-4859-908d-4ccc96f53cc5"
|
221
|
-
# TEMPLATE_GUIDS["Unity Catalog Table"] = "6cc1e5f5-4c1e-4290-a80e-e06643ffb13d"
|
222
|
-
# TEMPLATE_GUIDS["JSON Data File"] = "c4836635-7e9e-446a-83b5-15e206b1aff3"
|
223
|
-
# TEMPLATE_GUIDS["File System"] = "522f228c-097c-4f90-9efc-26c1f2696f87"
|
224
|
-
# TEMPLATE_GUIDS["Source Code File"] = "9c7013ef-f29b-4b01-a8ea-5ea14f64c67a"
|
225
|
-
# TEMPLATE_GUIDS["Apple MacBook Pro"] = "32a9fd56-85c9-47fe-a211-9da3871bf4da"
|
226
|
-
# TEMPLATE_GUIDS["Build Instruction File"] = "fbb2fa2e-8bcb-402e-9be7-5c6db9f2c504"
|
227
|
-
# TEMPLATE_GUIDS["Spreadsheet Data File"] = "e4fabff5-2ba9-4050-9076-6ed917970b4c"
|
228
|
-
# TEMPLATE_GUIDS["UNIX File System"] = "27117270-8667-41d0-a99a-9118f9b60199"
|
229
|
-
# TEMPLATE_GUIDS["Video Data File"] = "93b2b722-ec0f-4da4-960a-b8d4922f8bf5"
|
230
|
-
# TEMPLATE_GUIDS["Unity Catalog Function"] = "a490ba65-6104-4213-9be9-524e16fed8aa"
|
231
|
-
# TEMPLATE_GUIDS[
|
232
|
-
# "PostgreSQL Relational Database Schema"
|
233
|
-
# ] = "82a5417c-d882-4271-8444-4c6a996a8bfc"
|
234
|
-
# TEMPLATE_GUIDS["Engine Host"] = "1764a891-4234-45f1-8cc3-536af40c790d"
|
235
|
-
# TEMPLATE_GUIDS["Avro Data File"] = "9f5be428-058e-41dd-b506-3a222283b579"
|
236
|
-
# TEMPLATE_GUIDS["Unity Catalog Volume"] = "92d2d2dc-0798-41f0-9512-b10548d312b7"
|
237
|
-
# TEMPLATE_GUIDS["File"] = "ae3067c7-cc72-4a18-88e1-746803c2c86f"
|
238
|
-
# TEMPLATE_GUIDS["Apache Kafka Topic"] = "ea8f81c9-c59c-47de-9525-7cc59d1251e5"
|
239
|
-
# INTEGRATION_GUIDS["OpenLineageKafkaListener"] = "980b989c-de78-4e6a-a58d-51049d7381bf"
|
240
|
-
# TEMPLATE_GUIDS["Script File"] = "dbd5e6bb-1ff8-46f4-a007-fb0485f68c92"
|
241
|
-
# TEMPLATE_GUIDS["Raster Data File"] = "47211156-f03f-4881-8526-015e695a3dac"
|
242
|
-
# TEMPLATE_GUIDS["Data Folder"] = "372a0379-7060-4c9d-8d84-bc709b31794c"
|
243
|
-
# INTEGRATION_GUIDS[
|
244
|
-
# "MaintainDataFolderLastUpdateDate"
|
245
|
-
# ] = "fd26f07c-ae44-4bc5-b457-37b43112224f"
|
246
|
-
# INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
|
247
|
-
# TEMPLATE_GUIDS["OMAG Server Platform"] = "9b06c4dc-ddc8-47ae-b56b-28775d3a96f0"
|
248
|
-
# INTEGRATION_GUIDS["OMAGServerPlatform"] = "dee84e6e-7a96-4975-86c1-152fb3ab759b"
|
249
|
-
# INTEGRATION_GUIDS["PostgreSQLServerCataloguer"] = "36f69fd0-54ba-4f59-8a44-11ccf2687a34"
|
250
|
-
# INTEGRATION_GUIDS[
|
251
|
-
# "UnityCatalogInsideCatalogSynchronizer"
|
252
|
-
# ] = "74dde22f-2249-4ea3-af2b-b39e73f79b81"
|
253
|
-
# INTEGRATION_GUIDS["OpenLineageAPIPublisher"] = "2156bc98-973a-4859-908d-4ccc96f53cc5"
|
254
|
-
# INTEGRATION_GUIDS[
|
255
|
-
# "PostgreSQLDatabaseCataloguer"
|
256
|
-
# ] = "ef301220-7dfe-4c6c-bb9d-8f92d9f63823"
|
257
|
-
# INTEGRATION_GUIDS["JDBCDatabaseCataloguer"] = "70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa"
|
258
|
-
# INTEGRATION_GUIDS["FilesCataloguer"] = "1b98cdac-dd0a-4621-93db-99ef5a1098bc"
|
259
|
-
# INTEGRATION_GUIDS["SampleDataCataloguer"] = "cd6479e1-2fe7-4426-b358-8a0cf70be117"
|
260
|
-
# INTEGRATION_GUIDS[
|
261
|
-
# "OpenLineageGovernanceActionPublisher"
|
262
|
-
# ] = "206f8faf-04da-4b6f-8280-eeee3943afeb"
|
263
|
-
# INTEGRATION_GUIDS[
|
264
|
-
# "OMAGServerPlatformCataloguer"
|
265
|
-
# ] = "dee84e6e-7a96-4975-86c1-152fb3ab759b"
|
266
|
-
# INTEGRATION_GUIDS[
|
267
|
-
# "UnityCatalogServerSynchronizer"
|
268
|
-
# ] = "06d068d9-9e08-4e67-8c59-073bbf1013af"
|
269
|
-
# INTEGRATION_GUIDS["MaintainLastUpdateDate"] = "fd26f07c-ae44-4bc5-b457-37b43112224f"
|
270
|
-
# INTEGRATION_GUIDS["OpenLineageKafkaListener"] = "980b989c-de78-4e6a-a58d-51049d7381bf"
|
271
|
-
# INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
|
272
|
-
# INTEGRATION_GUIDS["ContentPacksCataloguer"] = "6bb2181e-7724-4515-ba3c-877cded55980"
|
273
|
-
# INTEGRATION_GUIDS["OpenLineageCataloguer"] = "3347ac71-8dd2-403a-bc16-75a71be64bd7"
|
274
|
-
|
275
|
-
# TEMPLATE_GUIDS["CSV Data File"] = "13770f93-13c8-42be-9bb8-e0b1b1e52b1f"
|
276
|
-
# TEMPLATE_GUIDS["File System Directory"] = "c353fd5d-9523-4a5e-a5e2-723ae490fe54"
|
277
|
-
# INTEGRATION_GUIDS["GeneralFilesMonitor"] = "1b98cdac-dd0a-4621-93db-99ef5a1098bc"
|
278
|
-
# INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
|
279
|
-
# INTEGRATION_GUIDS["ContentPacksMonitor"] = "6bb2181e-7724-4515-ba3c-877cded55980"
|
280
|
-
# INTEGRATION_GUIDS["SampleDataFilesMonitor"] = "cd6479e1-2fe7-4426-b358-8a0cf70be117"
|
281
|
-
# TEMPLATE_GUIDS["Keystore File"] = "fbcfcc0c-1652-421f-b49b-c3e1c108768f"
|
282
|
-
# TEMPLATE_GUIDS["Unity Catalog Server"] = "dcca9788-b30f-4007-b1ac-ec634aff6879"
|
283
|
-
# INTEGRATION_GUIDS["UnityCatalogInsideCatalog"] = "74dde22f-2249-4ea3-af2b-b39e73f79b81"
|
284
|
-
# INTEGRATION_GUIDS["UnityCatalogServer"] = "06d068d9-9e08-4e67-8c59-073bbf1013af"
|
285
|
-
# INTEGRATION_GUIDS["JDBC"] = "70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa"
|
286
|
-
# TEMPLATE_GUIDS["Data File"] = "66d8dda9-00cf-4e59-938c-4b0583596b1e"
|
287
|
-
# TEMPLATE_GUIDS["View Server"] = "fd61ca01-390d-4aa2-a55d-426826aa4e1b"
|
288
|
-
# TEMPLATE_GUIDS["Archive File"] = "7578e504-d00f-406d-a194-3fc0a351cdf9"
|
289
|
-
# TEMPLATE_GUIDS["Unity Catalog Catalog"] = "5ee006aa-a6d6-411b-9b8d-5f720c079cae"
|
290
|
-
# TEMPLATE_GUIDS["PostgreSQL Relational Database"] = (
|
291
|
-
# "3d398b3f-7ae6-4713-952a-409f3dea8520"
|
292
|
-
# )
|
293
|
-
# INTEGRATION_GUIDS["PostgreSQLDatabase"] = "ef301220-7dfe-4c6c-bb9d-8f92d9f63823"
|
294
|
-
# TEMPLATE_GUIDS["Program File"] = "32d27e9c-1fdf-455a-ad2a-42b4d7d99108"
|
295
|
-
# TEMPLATE_GUIDS["JDBC Endpoint"] = "3d79ce50-1887-4627-ad71-ba4649aba2bc"
|
296
|
-
# TEMPLATE_GUIDS["PostgreSQL Server"] = "542134e6-b9ce-4dce-8aef-22e8daf34fdb"
|
297
|
-
# INTEGRATION_GUIDS["PostgreSQLServer"] = "36f69fd0-54ba-4f59-8a44-11ccf2687a34"
|
298
|
-
# TEMPLATE_GUIDS["Audio Data File"] = "39b4b670-7f15-4744-a5ba-62e8edafbcee"
|
299
|
-
# TEMPLATE_GUIDS["Document File"] = "eb6f728d-fa54-4350-9807-1199cbf96851"
|
300
|
-
# TEMPLATE_GUIDS["Integration Daemon"] = "6b3516f0-dd13-4786-9601-07215f995197"
|
301
|
-
# TEMPLATE_GUIDS["XML Data File"] = "ea67ae71-c674-473e-b38b-689879d2a7d9"
|
302
|
-
# TEMPLATE_GUIDS["REST API Endpoint"] = "9ea4bff4-d193-492f-bcad-6e68c07c6f9e"
|
303
|
-
# TEMPLATE_GUIDS["Unity Catalog Schema"] = "5bf92b0f-3970-41ea-b0a3-aacfbf6fd92e"
|
304
|
-
# TEMPLATE_GUIDS["Parquet Data File"] = "7f6cd744-79c3-4d25-a056-eeb1a91574c3"
|
305
|
-
# TEMPLATE_GUIDS["3D Image Data File"] = "0059ea2b-6292-4cac-aa6f-a80a605f1114"
|
306
|
-
# TEMPLATE_GUIDS["YAML File"] = "2221855b-2b64-4b45-a2ee-c40adc5e2a64"
|
307
|
-
# TEMPLATE_GUIDS["Metadata Access Server"] = "bd8de890-fa79-4c24-aab8-20b41b5893dd"
|
308
|
-
# TEMPLATE_GUIDS["Properties File"] = "3b281111-a0ef-4fc4-99e7-9a0ef84a7636"
|
309
|
-
# TEMPLATE_GUIDS["Vector Data File"] = "db1bec7f-55a9-40d3-91c0-a57b76d422e2"
|
310
|
-
# TEMPLATE_GUIDS["Databricks Unity Catalog Server"] = (
|
311
|
-
# "3f7f62f6-4abc-424e-9f92-523306e7d5d5"
|
312
|
-
# )
|
313
|
-
# TEMPLATE_GUIDS["Executable File"] = "3d99a163-7a13-4576-a212-784010a8302a"
|
314
|
-
# INTEGRATION_GUIDS["OpenLineageAPIPublisher"] = "2156bc98-973a-4859-908d-4ccc96f53cc5"
|
315
|
-
# TEMPLATE_GUIDS["Unity Catalog Table"] = "6cc1e5f5-4c1e-4290-a80e-e06643ffb13d"
|
316
|
-
# TEMPLATE_GUIDS["JSON Data File"] = "c4836635-7e9e-446a-83b5-15e206b1aff3"
|
317
|
-
# TEMPLATE_GUIDS["File System"] = "522f228c-097c-4f90-9efc-26c1f2696f87"
|
318
|
-
# TEMPLATE_GUIDS["Source Code File"] = "9c7013ef-f29b-4b01-a8ea-5ea14f64c67a"
|
319
|
-
# TEMPLATE_GUIDS["Apple MacBook Pro"] = "32a9fd56-85c9-47fe-a211-9da3871bf4da"
|
320
|
-
# TEMPLATE_GUIDS["Build Instruction File"] = "fbb2fa2e-8bcb-402e-9be7-5c6db9f2c504"
|
321
|
-
# TEMPLATE_GUIDS["Spreadsheet Data File"] = "e4fabff5-2ba9-4050-9076-6ed917970b4c"
|
322
|
-
# TEMPLATE_GUIDS["UNIX File System"] = "27117270-8667-41d0-a99a-9118f9b60199"
|
323
|
-
# TEMPLATE_GUIDS["Video Data File"] = "93b2b722-ec0f-4da4-960a-b8d4922f8bf5"
|
324
|
-
# TEMPLATE_GUIDS["Unity Catalog Function"] = "a490ba65-6104-4213-9be9-524e16fed8aa"
|
325
|
-
# TEMPLATE_GUIDS["PostgreSQL Relational Database Schema"] = (
|
326
|
-
# "82a5417c-d882-4271-8444-4c6a996a8bfc"
|
327
|
-
# )
|
328
|
-
# TEMPLATE_GUIDS["Engine Host"] = "1764a891-4234-45f1-8cc3-536af40c790d"
|
329
|
-
# TEMPLATE_GUIDS["Avro Data File"] = "9f5be428-058e-41dd-b506-3a222283b579"
|
330
|
-
# TEMPLATE_GUIDS["Unity Catalog Volume"] = "92d2d2dc-0798-41f0-9512-b10548d312b7"
|
331
|
-
# TEMPLATE_GUIDS["File"] = "ae3067c7-cc72-4a18-88e1-746803c2c86f"
|
332
|
-
# TEMPLATE_GUIDS["Apache Kafka Topic"] = "ea8f81c9-c59c-47de-9525-7cc59d1251e5"
|
333
|
-
# INTEGRATION_GUIDS["OpenLineageKafkaListener"] = "980b989c-de78-4e6a-a58d-51049d7381bf"
|
334
|
-
# TEMPLATE_GUIDS["Script File"] = "dbd5e6bb-1ff8-46f4-a007-fb0485f68c92"
|
335
|
-
# TEMPLATE_GUIDS["Raster Data File"] = "47211156-f03f-4881-8526-015e695a3dac"
|
336
|
-
# TEMPLATE_GUIDS["Data Folder"] = "372a0379-7060-4c9d-8d84-bc709b31794c"
|
337
|
-
# INTEGRATION_GUIDS["MaintainDataFolderLastUpdateDate"] = (
|
338
|
-
# "fd26f07c-ae44-4bc5-b457-37b43112224f"
|
339
|
-
# )
|
340
|
-
# INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
|
341
|
-
# TEMPLATE_GUIDS["OMAG Server Platform"] = "9b06c4dc-ddc8-47ae-b56b-28775d3a96f0"
|
342
|
-
# INTEGRATION_GUIDS["OMAGServerPlatform"] = "dee84e6e-7a96-4975-86c1-152fb3ab759b"
|
343
|
-
# INTEGRATION_GUIDS["OpenLineageAPIPublisher"] = "2156bc98-973a-4859-908d-4ccc96f53cc5"
|
344
|
-
# INTEGRATION_GUIDS["UnityCatalogInsideCatalogSynchronizer"] = (
|
345
|
-
# "74dde22f-2249-4ea3-af2b-b39e73f79b81"
|
346
|
-
# )
|
347
|
-
# INTEGRATION_GUIDS["PostgreSQLServerCataloguer"] = "36f69fd0-54ba-4f59-8a44-11ccf2687a34"
|
348
|
-
# INTEGRATION_GUIDS["PostgreSQLDatabaseCataloguer"] = (
|
349
|
-
# "ef301220-7dfe-4c6c-bb9d-8f92d9f63823"
|
350
|
-
# )
|
351
|
-
# INTEGRATION_GUIDS["JDBCDatabaseCataloguer"] = "70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa"
|
352
|
-
# INTEGRATION_GUIDS["FilesCataloguer"] = "1b98cdac-dd0a-4621-93db-99ef5a1098bc"
|
353
|
-
# INTEGRATION_GUIDS["SampleDataCataloguer"] = "cd6479e1-2fe7-4426-b358-8a0cf70be117"
|
354
|
-
# INTEGRATION_GUIDS["OpenLineageGovernanceActionPublisher"] = (
|
355
|
-
# "206f8faf-04da-4b6f-8280-eeee3943afeb"
|
356
|
-
# )
|
357
|
-
# INTEGRATION_GUIDS["OMAGServerPlatformCataloguer"] = (
|
358
|
-
# "dee84e6e-7a96-4975-86c1-152fb3ab759b"
|
359
|
-
# )
|
360
|
-
# INTEGRATION_GUIDS["UnityCatalogServerSynchronizer"] = (
|
361
|
-
# "06d068d9-9e08-4e67-8c59-073bbf1013af"
|
362
|
-
# )
|
363
|
-
# INTEGRATION_GUIDS["MaintainLastUpdateDate"] = "fd26f07c-ae44-4bc5-b457-37b43112224f"
|
364
|
-
# INTEGRATION_GUIDS["OpenLineageKafkaListener"] = "980b989c-de78-4e6a-a58d-51049d7381bf"
|
365
|
-
# INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
|
366
|
-
# INTEGRATION_GUIDS["ContentPacksCataloguer"] = "6bb2181e-7724-4515-ba3c-877cded55980"
|
367
|
-
# INTEGRATION_GUIDS["OpenLineageCataloguer"] = "3347ac71-8dd2-403a-bc16-75a71be64bd7"
|
368
72
|
global template_guids, integration_guids
|
369
73
|
# 2/12/25
|
370
74
|
#
|