pyegeria 5.4.0.23__py3-none-any.whl → 5.4.0.25__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 (54) hide show
  1. commands/cat/debug_log +7967 -465
  2. commands/cat/debug_log.2025-08-15_09-14-07_444802.zip +0 -0
  3. commands/cat/debug_log.2025-08-16_10-21-59_388912.zip +0 -0
  4. commands/cat/debug_log.2025-08-17_11-34-27_981852.zip +0 -0
  5. commands/cat/dr_egeria_md.py +36 -6
  6. commands/cat/logs/pyegeria.log +3 -135
  7. md_processing/.DS_Store +0 -0
  8. md_processing/__init__.py +12 -6
  9. md_processing/data/commands.json +8523 -2234
  10. md_processing/dr_egeria_inbox/gov_def.md +76 -18
  11. md_processing/dr_egeria_inbox/img.png +0 -0
  12. md_processing/dr_egeria_inbox/product.md +185 -24
  13. md_processing/dr_egeria_outbox/.obsidian/workspace.json +5 -5
  14. md_processing/dr_egeria_outbox/monday/processed-2025-08-19 07:05-product.md +426 -0
  15. md_processing/dr_egeria_outbox/monday/processed-2025-08-19 07:56-product.md +212 -0
  16. md_processing/dr_egeria_outbox/monday/processed-2025-08-19 09:43-product.md +201 -0
  17. md_processing/dr_egeria_outbox/tuesday/processed-2025-08-19 10:55-product.md +209 -0
  18. md_processing/md_commands/governance_officer_commands.py +247 -178
  19. md_processing/md_commands/product_manager_commands.py +730 -580
  20. md_processing/md_processing_utils/common_md_proc_utils.py +170 -12
  21. md_processing/md_processing_utils/common_md_utils.py +126 -28
  22. md_processing/md_processing_utils/extraction_utils.py +2 -2
  23. md_processing/md_processing_utils/md_processing_constants.py +14 -10
  24. pyegeria/.DS_Store +0 -0
  25. pyegeria/__init__.py +1 -1
  26. pyegeria/_client_new.py +61 -12
  27. pyegeria/_exceptions_new.py +6 -0
  28. pyegeria/_output_formats.py +42 -2
  29. pyegeria/collection_manager.py +79 -14
  30. pyegeria/{data_designer_omvs.py → data_designer.py} +1171 -1675
  31. pyegeria/glossary_browser.py +1259 -0
  32. pyegeria/{glossary_manager_omvs.py → glossary_manager.py} +1181 -1099
  33. pyegeria/governance_officer.py +1 -3
  34. pyegeria/load_config.py +1 -1
  35. pyegeria/models.py +37 -4
  36. pyegeria/output_formatter.py +2 -1
  37. pyegeria/project_manager.py +1952 -0
  38. pyegeria/utils.py +5 -2
  39. {pyegeria-5.4.0.23.dist-info → pyegeria-5.4.0.25.dist-info}/METADATA +1 -1
  40. {pyegeria-5.4.0.23.dist-info → pyegeria-5.4.0.25.dist-info}/RECORD +43 -44
  41. md_processing/dr_egeria_outbox/friday/processed-2025-07-18 15:00-product.md +0 -62
  42. md_processing/dr_egeria_outbox/friday/processed-2025-07-18 15:13-product.md +0 -62
  43. md_processing/dr_egeria_outbox/friday/processed-2025-07-20 13:23-product.md +0 -47
  44. md_processing/dr_egeria_outbox/friday/processed-2025-08-01 11:55-data_test3.md +0 -503
  45. md_processing/dr_egeria_outbox/monday/processed-2025-07-14 12:38-data_designer_out.md +0 -663
  46. md_processing/dr_egeria_outbox/monday/processed-2025-07-21 10:52-generated_help_report.md +0 -2744
  47. md_processing/dr_egeria_outbox/monday/processed-2025-07-21 18:38-collections.md +0 -62
  48. md_processing/dr_egeria_outbox/monday/processed-2025-08-01 11:34-gov_def.md +0 -444
  49. md_processing/dr_egeria_outbox/processed-2025-08-03 16:05-glossary_list.md +0 -37
  50. pyegeria/glossary_browser_omvs.py +0 -3840
  51. pyegeria/governance_officer_omvs.py +0 -2367
  52. {pyegeria-5.4.0.23.dist-info → pyegeria-5.4.0.25.dist-info}/LICENSE +0 -0
  53. {pyegeria-5.4.0.23.dist-info → pyegeria-5.4.0.25.dist-info}/WHEEL +0 -0
  54. {pyegeria-5.4.0.23.dist-info → pyegeria-5.4.0.25.dist-info}/entry_points.txt +0 -0
@@ -6,6 +6,7 @@ import sys
6
6
  from datetime import datetime
7
7
 
8
8
  from loguru import logger
9
+ from pydantic import ValidationError
9
10
 
10
11
  log_format = "{time} | {level} | {function} | {line} | {message} | {extra}"
11
12
  logger.remove()
@@ -28,10 +29,12 @@ from md_processing import (extract_command, process_glossary_upsert_command, pro
28
29
  process_information_supply_chain_upsert_command,
29
30
  process_information_supply_chain_link_unlink_command, process_sol_arch_list_command,
30
31
  process_digital_product_upsert_command, process_agreement_upsert_command,
31
- process_collection_list_command, process_collection_upsert_command, process_link_agreement_item_command,
32
+ process_collection_upsert_command, process_link_agreement_item_command,
32
33
  process_gov_definition_upsert_command, GOV_COM_LIST, GOV_LINK_LIST,
33
- process_gov_def_link_detach_command, process_gov_definition_list_command,
34
- process_gov_def_context_command, COLLECTIONS_LIST, SIMPLE_COLLECTIONS)
34
+ process_gov_def_link_detach_command,
35
+ process_gov_def_context_command, process_supporting_gov_def_link_detach_command,
36
+ process_attach_subscriber_command,
37
+ COLLECTIONS_LIST, SIMPLE_COLLECTIONS, GOV_LINK_LIST, process_output_command)
35
38
  from md_processing.md_commands.data_designer_commands import (process_data_spec_upsert_command,
36
39
  process_data_dict_upsert_command,
37
40
  process_data_collection_list_command,
@@ -41,7 +44,8 @@ from md_processing.md_commands.data_designer_commands import (process_data_spec_
41
44
  process_data_field_upsert_command,
42
45
  process_data_structure_upsert_command,
43
46
  process_data_class_upsert_command)
44
- from pyegeria import EgeriaTech
47
+
48
+ from pyegeria import EgeriaTech, PyegeriaException, print_basic_exception, print_validation_error
45
49
 
46
50
  EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
47
51
  EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
@@ -112,7 +116,7 @@ def process_markdown_file(input_file: str, output_folder:str, directive: str, se
112
116
  return # No block to process
113
117
 
114
118
  potential_command = extract_command(current_block) # Extract object_action
115
- if potential_command in cmd_list:
119
+ if (potential_command in cmd_list):
116
120
  # Process the block based on the object_action
117
121
  if potential_command == "Provenance":
118
122
  result = process_provenance_command(input_file, current_block)
@@ -189,7 +193,9 @@ def process_markdown_file(input_file: str, output_folder:str, directive: str, se
189
193
  result = process_data_class_list_command(client, current_block, directive)
190
194
  elif potential_command in ["Create Digital Product", "Create Data Product","Update Digital Product", "Update Data Product"]:
191
195
  result = process_digital_product_upsert_command(client, current_block, directive)
192
- elif potential_command in ["Create Agreement", "Create Data Sharing Agreement", "Update Agreement", "Update Data Sharing Agreement"]:
196
+ elif potential_command in ["Create Agreement", "Create Data Sharing Agreement", "Create Digital Subscription",
197
+ "Create Product Subscription", "Update Agreement", "Update Data Sharing Agreement",
198
+ "Update Digital Subscription", "Update Product Subscription"]:
193
199
  result = process_agreement_upsert_command(client, current_block, directive)
194
200
  elif potential_command in SIMPLE_COLLECTIONS:
195
201
  result = process_collection_upsert_command(client, current_block, directive)
@@ -198,6 +204,26 @@ def process_markdown_file(input_file: str, output_folder:str, directive: str, se
198
204
  elif potential_command in ['View Governance Definitions', 'List Governance Definitions',
199
205
  'View Gov Definitions', 'List Gov Definitions']:
200
206
  result = process_gov_definition_list_command(client, current_block, directive)
207
+ elif potential_command in GOV_LINK_LIST:
208
+ result = process_gov_def_link_detach_command(client, current_block, directive)
209
+ elif potential_command in ['Link Governance Mechanism', 'Detach Governance Mechanism',
210
+ 'Link Governance Response', 'Detach Governance Response',]:
211
+ result = process_supporting_gov_def_link_detach_command(client, current_block, directive)
212
+ elif potential_command in ['Link Digital Products', 'Detach Digital Products',
213
+ 'Link Product-Product', 'Detach Product-Product'
214
+ ]:
215
+ result = process_product_dependency_command(client, current_block, directive)
216
+ elif potential_command in ['Link Agreement->Item', 'Detach Agreement->Item']:
217
+ result = process_link_agreement_item_command(client, current_block, directive)
218
+ elif potential_command in ['Link Collection->Resource', 'Detach Collection->Resource']:
219
+ result = process_attach_collection_command(client, current_block, directive)
220
+ elif potential_command in ['Link Member->Collection', 'Detach Member->Collection',]:
221
+ result = process_add_to_collection_command(client, current_block, directive)
222
+ elif potential_command in ['Link Subscriber->Subscription', 'Detach Subscriber->Subscription']:
223
+ result = process_attach_subscriber_command(client, current_block, directive)
224
+ elif potential_command in ['View Report']:
225
+ result = process_output_command(client, current_block, directive)
226
+
201
227
  elif potential_command in COLLECTIONS_LIST:
202
228
  result = process_collection_list_command(client, current_block, directive)
203
229
 
@@ -283,6 +309,10 @@ def process_markdown_file(input_file: str, output_folder:str, directive: str, se
283
309
  click.echo("\nNo updates detected. New File not created.")
284
310
  logger.error("===> Unknown Command? <===")
285
311
 
312
+ except PyegeriaException as e:
313
+ print_basic_exception(e)
314
+ except ValidationError as e:
315
+ print_validation_error(e)
286
316
  except (Exception):
287
317
  console.print_exception(show_locals=True)
288
318
 
@@ -1,136 +1,4 @@
1
- 2025-08-11 14:59:01 | INFO | main:394 - view server @ https://localhost:9443-{}
2
- 2025-08-11 14:59:06 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
1
+ 2025-08-19 08:03:29 | INFO | main:399 - view server @ https://localhost:9443-{}
2
+ 2025-08-19 08:03:31 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
3
3
  Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
4
- 2025-08-11 14:59:06 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
5
- 2025-08-12 08:30:34 | INFO | main:394 - view server @ https://localhost:9443-{}
6
- 2025-08-12 08:30:35 | ERROR | select_output_format_set:430 - No matching format found for kind='DigitalProduct' with output type='TABLE'.-{}
7
- 2025-08-12 08:31:27 | INFO | main:394 - view server @ https://localhost:9443-{}
8
- 2025-08-12 08:31:28 | ERROR | select_output_format_set:430 - No matching format found for kind='DigitalProducts' with output type='TABLE'.-{}
9
- 2025-08-12 08:31:43 | INFO | main:394 - view server @ https://localhost:9443-{}
10
- 2025-08-12 08:31:44 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
11
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
12
- 2025-08-12 08:31:44 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
13
- 2025-08-12 08:32:33 | INFO | main:394 - view server @ https://localhost:9443-{}
14
- 2025-08-12 08:32:34 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
15
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
16
- 2025-08-12 08:32:34 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
17
- 2025-08-12 13:30:34 | INFO | main:394 - view server @ https://localhost:9443-{}
18
- 2025-08-12 13:30:37 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
19
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
20
- 2025-08-12 13:30:37 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
21
- 2025-08-12 13:35:57 | INFO | main:394 - view server @ https://localhost:9443-{}
22
- 2025-08-12 13:35:58 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
23
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
24
- 2025-08-12 13:35:58 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
25
- 2025-08-12 16:06:09 | INFO | main:394 - view server @ https://localhost:9443-{}
26
- 2025-08-12 16:06:11 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
27
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
28
- 2025-08-12 16:06:11 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
29
- 2025-08-12 16:29:50 | INFO | main:394 - view server @ https://localhost:9443-{}
30
- 2025-08-12 16:29:54 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
31
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
32
- 2025-08-12 16:29:54 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
33
- 2025-08-12 18:58:27 | INFO | main:394 - view server @ https://localhost:9443-{}
34
- 2025-08-12 18:58:29 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
35
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
36
- 2025-08-12 18:58:29 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
37
- 2025-08-12 18:59:58 | INFO | main:394 - view server @ https://localhost:9443-{}
38
- 2025-08-12 19:00:00 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
39
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
40
- 2025-08-12 19:00:00 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
41
- 2025-08-12 19:08:24 | INFO | main:394 - view server @ https://localhost:9443-{}
42
- 2025-08-12 19:08:25 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
43
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
44
- 2025-08-12 19:08:25 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
45
- 2025-08-12 19:09:39 | INFO | main:394 - view server @ https://localhost:9443-{}
46
- 2025-08-12 19:09:48 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
47
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
48
- 2025-08-12 19:09:48 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
49
- 2025-08-12 19:14:53 | INFO | main:395 - view server @ https://localhost:9443-{}
50
- 2025-08-12 19:14:58 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
51
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
52
- 2025-08-12 19:14:58 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
53
- 2025-08-13 11:11:46 | INFO | main:395 - view server @ https://localhost:9443-{}
54
- 2025-08-13 11:11:55 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
55
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
56
- 2025-08-13 11:11:55 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
57
- 2025-08-13 12:38:33 | INFO | main:395 - view server @ https://localhost:9443-{}
58
- 2025-08-13 12:38:44 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
59
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
60
- 2025-08-13 12:38:44 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
61
- 2025-08-13 13:20:49 | INFO | main:395 - view server @ https://localhost:9443-{}
62
- 2025-08-13 13:20:50 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
63
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
64
- 2025-08-13 13:20:50 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
65
- 2025-08-13 13:21:19 | INFO | main:395 - view server @ https://localhost:9443-{}
66
- 2025-08-13 13:21:32 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
67
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
68
- 2025-08-13 13:21:32 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
69
- 2025-08-13 13:23:28 | INFO | main:395 - view server @ https://localhost:9443-{}
70
- 2025-08-13 13:23:31 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
71
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
72
- 2025-08-13 13:23:31 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
73
- 2025-08-13 13:26:51 | INFO | main:395 - view server @ https://localhost:9443-{}
74
- 2025-08-13 13:26:53 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
75
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
76
- 2025-08-13 13:26:53 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
77
- 2025-08-13 13:39:15 | INFO | main:396 - view server @ https://localhost:9443-{}
78
- 2025-08-13 13:39:16 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
79
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
80
- 2025-08-13 13:39:16 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
81
- 2025-08-13 13:43:22 | INFO | main:396 - view server @ https://localhost:9443-{}
82
- 2025-08-13 13:43:23 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
83
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
84
- 2025-08-13 13:43:23 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
85
- 2025-08-13 14:09:34 | INFO | main:396 - view server @ https://localhost:9443-{}
86
- 2025-08-13 14:09:35 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
87
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
88
- 2025-08-13 14:09:35 | INFO | __init__:133 - CollectionManager initialized, platform origin is: True-{}
89
- 2025-08-13 14:13:06 | INFO | main:395 - view server @ https://localhost:9443-{}
90
- 2025-08-13 14:13:06 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
91
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
92
- 2025-08-13 14:13:06 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
93
- 2025-08-13 14:13:06 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
94
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
95
- 2025-08-13 14:13:06 | INFO | __init__:133 - CollectionManager initialized, platform origin is: True-{}
96
- 2025-08-13 14:14:20 | INFO | main:395 - view server @ https://localhost:9443-{}
97
- 2025-08-13 14:14:52 | INFO | main:395 - view server @ https://localhost:9443-{}
98
- 2025-08-13 14:14:53 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
99
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
100
- 2025-08-13 14:14:53 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
101
- 2025-08-13 14:14:53 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
102
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
103
- 2025-08-13 14:14:53 | INFO | __init__:133 - CollectionManager initialized, platform origin is: True-{}
104
- 2025-08-13 14:15:45 | INFO | main:396 - view server @ https://localhost:9443-{}
105
- 2025-08-13 14:15:46 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
106
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
107
- 2025-08-13 14:15:46 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
108
- 2025-08-13 14:16:32 | INFO | main:396 - view server @ https://localhost:9443-{}
109
- 2025-08-13 14:16:34 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
110
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
111
- 2025-08-13 14:16:34 | INFO | __init__:133 - CollectionManager initialized, platform origin is: True-{}
112
- 2025-08-13 14:17:29 | INFO | main:396 - view server @ https://localhost:9443-{}
113
- 2025-08-13 14:17:30 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
114
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
115
- 2025-08-13 14:17:30 | INFO | __init__:76 - CollectionManager initialized, platform origin is: True-{}
116
- 2025-08-13 14:17:30 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
117
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
118
- 2025-08-13 14:17:30 | INFO | __init__:133 - CollectionManager initialized, platform origin is: True-{}
119
- 2025-08-13 14:17:53 | INFO | main:396 - view server @ https://localhost:9443-{}
120
- 2025-08-13 14:17:54 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
121
- Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
122
- 2025-08-13 14:17:54 | INFO | __init__:133 - CollectionManager initialized, platform origin is: True-{}
123
- 2025-08-14 11:00:52 | INFO | main:396 - view server @ https://localhost:9443-{}
124
- 2025-08-14 11:06:41 | INFO | main:396 - view server @ https://localhost:9443-{}
125
- 2025-08-14 11:06:51 | INFO | main:396 - view server @ https://localhost:9443-{}
126
- 2025-08-14 11:08:01 | INFO | main:396 - view server @ https://localhost:9443-{}
127
- 2025-08-14 11:09:45 | INFO | main:396 - view server @ https://localhost:9443-{}
128
- 2025-08-14 11:11:03 | ERROR | select_output_format_set:454 - No matching column set found for kind='Governance Definitions --output-format TABLE' and output type='ANY'.-{}
129
- 2025-08-14 11:12:25 | INFO | main:396 - view server @ https://localhost:9443-{}
130
- 2025-08-14 11:20:14 | INFO | main:399 - view server @ https://localhost:9443-{}
131
- 2025-08-14 11:21:19 | INFO | main:399 - view server @ https://localhost:9443-{}
132
- 2025-08-14 11:24:05 | INFO | main:399 - view server @ https://localhost:9443-{}
133
- 2025-08-14 11:26:08 | INFO | main:399 - view server @ https://localhost:9443-{}
134
- 2025-08-14 11:32:24 | INFO | main:399 - view server @ https://localhost:9443-{}
135
- 2025-08-14 11:35:13 | INFO | main:399 - view server @ https://localhost:9443-{}
136
- 2025-08-14 11:36:29 | INFO | main:399 - view server @ https://localhost:9443-{}
4
+ 2025-08-19 08:03:31 | INFO | __init__:133 - CollectionManager initialized, platform origin is: True-{}
md_processing/.DS_Store CHANGED
Binary file
md_processing/__init__.py CHANGED
@@ -3,15 +3,20 @@ This package contains functions to parse and process Egeria Markdown (Freddie)
3
3
  """
4
4
  from md_processing.md_commands.governance_officer_commands import (process_gov_definition_upsert_command,
5
5
  process_gov_def_link_detach_command,
6
- process_gov_definition_list_command,
7
- process_gov_def_context_command)
6
+ process_supporting_gov_def_link_detach_command,
7
+ process_gov_def_context_command,
8
+ )
8
9
 
9
10
 
10
11
  from md_processing.md_commands.product_manager_commands import (process_digital_product_upsert_command,
11
12
  process_agreement_upsert_command,
12
- process_collection_list_command,
13
13
  process_collection_upsert_command,
14
- process_link_agreement_item_command)
14
+ process_link_agreement_item_command,
15
+ process_add_to_collection_command,
16
+ process_product_dependency_command,
17
+ process_attach_collection_command,
18
+ process_attach_subscriber_command,
19
+ )
15
20
 
16
21
  from md_processing.md_commands.solution_architect_commands import (process_blueprint_upsert_command,
17
22
  process_solution_component_upsert_command,
@@ -45,11 +50,11 @@ from md_processing.md_processing_utils.common_md_utils import (render_markdown,
45
50
  console, debug_level, get_element_dictionary,
46
51
  update_element_dictionary, clear_element_dictionary,
47
52
  is_present, find_key_with_value,
48
- process_provenance_command, set_metadata_source_request_body,
53
+ process_provenance_command, set_delete_request_body,
49
54
  set_rel_request_body, set_filter_request_body,
50
55
  set_update_body, set_peer_gov_def_request_body,
51
56
  set_gov_prop_body, set_prop_body, set_create_body,
52
-
57
+ GOVERNANCE_POLICIES, GOVERNANCE_CONTROLS, GOVERNANCE_DRIVERS
53
58
  )
54
59
  from md_processing.md_processing_utils.extraction_utils import (extract_command_plus, extract_command,
55
60
  extract_attribute, process_simple_attribute,
@@ -73,3 +78,4 @@ from md_processing.md_processing_utils.md_processing_constants import (load_comm
73
78
  # Import message constants
74
79
  from md_processing.md_processing_utils.message_constants import (message_types, ALWAYS, ERROR, INFO, WARNING)
75
80
 
81
+ from md_processing.md_processing_utils.common_md_proc_utils import process_output_command