pyegeria 5.4.0.dev9__py3-none-any.whl → 5.4.0.dev10__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 +5904 -3523
- commands/cat/debug_log.2025-06-24_15-51-28_769553.zip +0 -0
- commands/cat/debug_log.2025-06-26_11-18-40_644650.zip +0 -0
- md_processing/md_commands/data_designer_commands.py +17 -12
- md_processing/md_commands/glossary_commands.py +1 -0
- pyegeria/collection_manager_omvs.py +4568 -1145
- {pyegeria-5.4.0.dev9.dist-info → pyegeria-5.4.0.dev10.dist-info}/METADATA +1 -1
- {pyegeria-5.4.0.dev9.dist-info → pyegeria-5.4.0.dev10.dist-info}/RECORD +11 -9
- {pyegeria-5.4.0.dev9.dist-info → pyegeria-5.4.0.dev10.dist-info}/LICENSE +0 -0
- {pyegeria-5.4.0.dev9.dist-info → pyegeria-5.4.0.dev10.dist-info}/WHEEL +0 -0
- {pyegeria-5.4.0.dev9.dist-info → pyegeria-5.4.0.dev10.dist-info}/entry_points.txt +0 -0
Binary file
|
Binary file
|
@@ -63,8 +63,12 @@ def add_member_to_data_collections(egeria_client: EgeriaTech, collection_list: l
|
|
63
63
|
Add member to data dictionaries and data specifications.
|
64
64
|
"""
|
65
65
|
body = {
|
66
|
-
"class": "
|
67
|
-
"
|
66
|
+
"class": "RelationshipRequestBody",
|
67
|
+
"properties": {
|
68
|
+
"class": "CollectionMembershipProperties",
|
69
|
+
"membershipRationale": "User Specified",
|
70
|
+
"notes": "Added by Dr.Egeria"
|
71
|
+
}
|
68
72
|
}
|
69
73
|
try:
|
70
74
|
if collection_list is not None:
|
@@ -526,10 +530,11 @@ def process_data_spec_upsert_command(egeria_client: EgeriaTech, txt: str, direct
|
|
526
530
|
logger.error(msg)
|
527
531
|
return None
|
528
532
|
else:
|
529
|
-
guid = egeria_client.create_data_spec_collection(
|
530
|
-
|
531
|
-
|
532
|
-
anchor_scope_guid,
|
533
|
+
guid = egeria_client.create_data_spec_collection(display_name, description,
|
534
|
+
is_own_anchor, anchor_guid, parent_guid, parent_relationship_type_name,
|
535
|
+
parent_at_end1, collection_type,
|
536
|
+
anchor_scope_guid, collection_ordering,order_property_name,
|
537
|
+
additional_properties, extended_properties)
|
533
538
|
if guid:
|
534
539
|
update_element_dictionary(qualified_name, {
|
535
540
|
'guid': guid, 'display_name': display_name
|
@@ -639,12 +644,12 @@ def process_data_dict_upsert_command(egeria_client: EgeriaTech, txt: str, direct
|
|
639
644
|
f"`Create` to `Update` in processed output\n\n___")
|
640
645
|
return update_a_command(txt, object_action, object_type, qualified_name, guid)
|
641
646
|
else:
|
642
|
-
guid = egeria_client.create_data_dictionary_collection(
|
643
|
-
parent_relationship_type_name,
|
644
|
-
parent_at_end1,
|
645
|
-
|
646
|
-
|
647
|
-
|
647
|
+
guid = egeria_client.create_data_dictionary_collection(display_name,description, is_own_anchor, anchor_guid,
|
648
|
+
parent_guid, parent_relationship_type_name,
|
649
|
+
parent_at_end1, collection_type,
|
650
|
+
anchor_scope_guid, collection_ordering,
|
651
|
+
order_property_name, additional_properties,
|
652
|
+
extended_properties)
|
648
653
|
if guid:
|
649
654
|
update_element_dictionary(qualified_name, {
|
650
655
|
'guid': guid, 'display_name': display_name
|
@@ -527,6 +527,7 @@ def process_term_upsert_command(egeria_client: EgeriaTech, txt: str, directive:
|
|
527
527
|
else:
|
528
528
|
known_glossary_q_name, known_glossary_guid, glossary_valid, glossary_exists = process_element_identifiers(
|
529
529
|
egeria_client, "Glossary", GLOSSARY_NAME_LABELS, txt, EXISTS_REQUIRED, None)
|
530
|
+
# Todo - add logic to fail if no valid glossary provided.
|
530
531
|
|
531
532
|
# process categories, if present
|
532
533
|
categories = process_simple_attribute(txt, ['Glossary Categories', 'Glossary Category', 'Category', 'Categories'])
|