pyegeria 0.8.4.12__py3-none-any.whl → 0.8.4.16__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.
- examples/widgets/ops/monitor_gov_eng_status.py +1 -1
- pyegeria/_validators.py +8 -5
- pyegeria/automated_curation_omvs.py +3 -3
- pyegeria/core_omag_server_config.py +4 -4
- pyegeria/egeria_client.py +14 -14
- pyegeria/egeria_tech_client.py +10 -10
- pyegeria/full_omag_server_config.py +1 -1
- pyegeria/mermaid_utilities.py +3 -3
- pyegeria/my_profile_omvs.py +7 -7
- pyegeria/platform_services.py +2 -2
- pyegeria/project_manager_omvs.py +2 -2
- pyegeria/registered_info.py +1 -1
- pyegeria/runtime_manager_omvs.py +425 -135
- pyegeria/x_action_author_omvs.py +18 -18
- {pyegeria-0.8.4.12.dist-info → pyegeria-0.8.4.16.dist-info}/METADATA +1 -1
- {pyegeria-0.8.4.12.dist-info → pyegeria-0.8.4.16.dist-info}/RECORD +19 -19
- {pyegeria-0.8.4.12.dist-info → pyegeria-0.8.4.16.dist-info}/LICENSE +0 -0
- {pyegeria-0.8.4.12.dist-info → pyegeria-0.8.4.16.dist-info}/WHEEL +0 -0
- {pyegeria-0.8.4.12.dist-info → pyegeria-0.8.4.16.dist-info}/entry_points.txt +0 -0
pyegeria/x_action_author_omvs.py
CHANGED
@@ -94,19 +94,19 @@ class ActionAuthor(AutomatedCuration):
|
|
94
94
|
|
95
95
|
# Governance Action Processes
|
96
96
|
|
97
|
-
# async def _async_create_gov_action_process(self, body: dict,
|
97
|
+
# async def _async_create_gov_action_process(self, body: dict, view_server:str=None) -> None:
|
98
98
|
# pass
|
99
99
|
#
|
100
|
-
# async def _async_update_gov_action_process(self, process_id: str, body: dict,
|
100
|
+
# async def _async_update_gov_action_process(self, process_id: str, body: dict, view_server:str=None) -> None:
|
101
101
|
# pass
|
102
102
|
#
|
103
|
-
# async def _async_publish_gov_action_process(self, process_id:str,
|
103
|
+
# async def _async_publish_gov_action_process(self, process_id:str, view_server:str=None) -> None:
|
104
104
|
# pass
|
105
105
|
#
|
106
|
-
# async def _async_withdraw_gov_action_process(self, process_id:str,
|
106
|
+
# async def _async_withdraw_gov_action_process(self, process_id:str, view_server:str=None) -> None:
|
107
107
|
# pass
|
108
108
|
#
|
109
|
-
# async def _async_remove_gov_action_process(self, process_id: str,
|
109
|
+
# async def _async_remove_gov_action_process(self, process_id: str, view_server: str = None) -> None:
|
110
110
|
# pass
|
111
111
|
|
112
112
|
async def _async_find_gov_action_processes(
|
@@ -130,52 +130,52 @@ class ActionAuthor(AutomatedCuration):
|
|
130
130
|
pass
|
131
131
|
|
132
132
|
# Process Steps
|
133
|
-
# async def _async_create_gov_action_process_step(self, body: dict,
|
133
|
+
# async def _async_create_gov_action_process_step(self, body: dict, view_server:str=None) -> None:
|
134
134
|
# pass
|
135
135
|
#
|
136
|
-
# async def _async_update_gov_action_process_step(self, guid: str, body: dict,
|
136
|
+
# async def _async_update_gov_action_process_step(self, guid: str, body: dict, view_server:str=None) -> None:
|
137
137
|
# pass
|
138
138
|
#
|
139
|
-
# async def _async_remove_gov_action_process_step(self, guid: str,
|
139
|
+
# async def _async_remove_gov_action_process_step(self, guid: str, view_server:str=None) -> None:
|
140
140
|
# pass
|
141
141
|
#
|
142
142
|
#
|
143
|
-
# async def _async_find_gov_action_process_step(self, search_string: str,
|
143
|
+
# async def _async_find_gov_action_process_step(self, search_string: str, view_server: str = None) -> dict | str:
|
144
144
|
# pass
|
145
145
|
#
|
146
146
|
#
|
147
|
-
# async def _async_get_gov_action_process_step_by_name(self, name: str,
|
147
|
+
# async def _async_get_gov_action_process_step_by_name(self, name: str, view_server: str = None) -> dict | str:
|
148
148
|
# pass
|
149
149
|
#
|
150
150
|
#
|
151
|
-
# async def _async_get_gov_action_process_step_by_guid(self, guid: str,
|
151
|
+
# async def _async_get_gov_action_process_step_by_guid(self, guid: str, view_server: str = None) -> dict | str:
|
152
152
|
# pass
|
153
153
|
#
|
154
154
|
#
|
155
155
|
# async def _async_setup_first_action_process_step(self, process_guid: str, process_step_guid:str,
|
156
|
-
#
|
156
|
+
# view_server: str = None) -> dict | str:
|
157
157
|
# pass
|
158
158
|
#
|
159
|
-
# async def _async_get_first_action_process_step(self, process_guid: str,
|
159
|
+
# async def _async_get_first_action_process_step(self, process_guid: str, view_server: str = None) -> dict | str:
|
160
160
|
# pass
|
161
161
|
#
|
162
|
-
# async def _async_remove_first_action_process_step(self, process_guid: str,
|
162
|
+
# async def _async_remove_first_action_process_step(self, process_guid: str, view_server: str = None) -> None:
|
163
163
|
# pass
|
164
164
|
#
|
165
165
|
# async def _async_setup_next_action_process_step(self, process_guid: str, process_step_guid:str,
|
166
|
-
# next_process_step_guid:str,
|
166
|
+
# next_process_step_guid:str, view_server: str = None) -> None:
|
167
167
|
# pass
|
168
168
|
#
|
169
169
|
#
|
170
|
-
# async def _async_update_next_action_process_step(self, guid: str, body: dict,
|
170
|
+
# async def _async_update_next_action_process_step(self, guid: str, body: dict, view_server: str = None) -> None:
|
171
171
|
# pass
|
172
172
|
#
|
173
173
|
#
|
174
|
-
# async def _async_remove_next_action_process_step(self, guid: str,
|
174
|
+
# async def _async_remove_next_action_process_step(self, guid: str, view_server: str = None) -> None:
|
175
175
|
# pass
|
176
176
|
#
|
177
177
|
#
|
178
|
-
# async def _async_get_next_action_process_step(self, guid: str,
|
178
|
+
# async def _async_get_next_action_process_step(self, guid: str, view_server: str = None) -> dict | str:
|
179
179
|
# pass
|
180
180
|
|
181
181
|
# Engine Actions
|
@@ -40,7 +40,7 @@ examples/widgets/ops/monitor_asset_events.py,sha256=cjdlVqE0XYnoRW3aorNbsVkjByDX
|
|
40
40
|
examples/widgets/ops/monitor_coco_status.py,sha256=ERz3OJ0TXImNKHGD4gJvgT3pl2gS23ewAdUuYVLUhEE,3299
|
41
41
|
examples/widgets/ops/monitor_engine_activity.py,sha256=m18OSnRoo5ut0WKKOWNoFGXJW_npjp6hzHK3RUQG8T0,8479
|
42
42
|
examples/widgets/ops/monitor_engine_activity_c.py,sha256=rSEUD3elhsiYdUhQRn613OM_R4VecFb0uq39MhYhltQ,9371
|
43
|
-
examples/widgets/ops/monitor_gov_eng_status.py,sha256=
|
43
|
+
examples/widgets/ops/monitor_gov_eng_status.py,sha256=_eIN_3J8PZjgZH4D1Pc0Z_kUOd0pVd6dGP7jUgXG5wg,6640
|
44
44
|
examples/widgets/ops/monitor_integ_daemon_status.py,sha256=u15-tvGveO7_yV7JJmYkxiEDnq5KBk8J4hkw0id_LFA,9224
|
45
45
|
examples/widgets/ops/monitor_platform_status.py,sha256=hn96QuOjCndSDWl1-DAzk9O8D68YoRP1ALOlVfWVQgo,6400
|
46
46
|
examples/widgets/ops/monitor_server_list.py,sha256=Uhtn8lv7QVXJBi9DSR3Nelmz8TB0vOsat10nFS6Nu20,4637
|
@@ -66,34 +66,34 @@ pyegeria/_client.py,sha256=pzndEJKN0tcnT7gQFa0r3pzXm9pK4zJKANZOXO79aOs,25949
|
|
66
66
|
pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8MdpmVCQ,17264
|
67
67
|
pyegeria/_exceptions.py,sha256=NJ7vAhmvusK1ENvY2MMrBB6A6TgpYjzS9QJxFH56b8c,18470
|
68
68
|
pyegeria/_globals.py,sha256=1Uc8392wjbiVN5L__RzxC1-U97RMXj77_iUsMSgeAjQ,638
|
69
|
-
pyegeria/_validators.py,sha256=
|
69
|
+
pyegeria/_validators.py,sha256=rnZelHJnjHaLZ8UhUTDyB59MfIUJifhALtkYoHBaos4,12736
|
70
70
|
pyegeria/asset_catalog_omvs.py,sha256=GzTYJjeXh3rY5Ykok0ZcJ3H1bGyQcubI0ZWjFF78iCU,24335
|
71
|
-
pyegeria/automated_curation_omvs.py,sha256=
|
71
|
+
pyegeria/automated_curation_omvs.py,sha256=t0o4T3tDK_s3Jc3PvdVNFx0qt6LAZknHlvJ7wX05i4U,150418
|
72
72
|
pyegeria/classification_manager_omvs.py,sha256=hOKYqNWfAFqwwVgvkUok8kzD4g0pOaNI7QxrkjPZDMI,200796
|
73
73
|
pyegeria/collection_manager_omvs.py,sha256=C8cfgGsx6MpG1Nds3JahyqXel8zpb-9iwXsXCAuzmg0,109717
|
74
|
-
pyegeria/core_omag_server_config.py,sha256=
|
74
|
+
pyegeria/core_omag_server_config.py,sha256=T1nx8KGuSPn-l8vVkH_I7qsJ7Bvou9TZUB41G2g_ZWc,93730
|
75
75
|
pyegeria/create_tech_guid_lists.py,sha256=RYRWdXm2bhCMkbUlOdMJ8cKZnamJvSkY5XMK2RjLX4M,4631
|
76
76
|
pyegeria/egeria_cat_client.py,sha256=WyxDYklm2eDpsiHLXVJi4WP5BBeXlvWWX5h5CLevdcE,1877
|
77
|
-
pyegeria/egeria_client.py,sha256=
|
77
|
+
pyegeria/egeria_client.py,sha256=8rKu-ACdyBVRw2C114mleCBI4m30YCBi7dPCt5Y-ZTY,3360
|
78
78
|
pyegeria/egeria_config_client.py,sha256=hsfJz_eDlRh0GO9YrCTcvXIC0wKMHtL22QS3j2s_o0U,1183
|
79
79
|
pyegeria/egeria_my_client.py,sha256=VnUQHLdk-Lbzi25UfutSSfKFUs1xP6U5T_2N5EZ0PWU,1404
|
80
|
-
pyegeria/egeria_tech_client.py,sha256=
|
80
|
+
pyegeria/egeria_tech_client.py,sha256=cKwYN9Q-p7laXcilmc7scszdb4AnhPAk0iEV8ORQHpE,2397
|
81
81
|
pyegeria/feedback_manager_omvs.py,sha256=U0wzb5kU24vaMqhGinZ2Z5UJkhqEylhXWnnHeaS-yDU,162098
|
82
|
-
pyegeria/full_omag_server_config.py,sha256=
|
82
|
+
pyegeria/full_omag_server_config.py,sha256=UNEhJS-sSLyCHJOyQ_YhfHCCxXqHjA8r8im8i-rXyp8,47012
|
83
83
|
pyegeria/glossary_browser_omvs.py,sha256=PUdZHEc-OKO9z1mBSEb5J0RVszDhsdS6d8OciSAsOHI,103199
|
84
84
|
pyegeria/glossary_manager_omvs.py,sha256=B0BZvDN8Dn-gm8oZ68P405UPehjfmdMvpFCFXdNG8kU,129841
|
85
|
-
pyegeria/mermaid_utilities.py,sha256
|
86
|
-
pyegeria/my_profile_omvs.py,sha256=
|
87
|
-
pyegeria/platform_services.py,sha256=
|
88
|
-
pyegeria/project_manager_omvs.py,sha256=
|
89
|
-
pyegeria/registered_info.py,sha256=
|
90
|
-
pyegeria/runtime_manager_omvs.py,sha256=
|
85
|
+
pyegeria/mermaid_utilities.py,sha256=ZBOc7RNwCF59KpOLuD1tLHCbQNo6NMW8ETFfcvAb4Ao,8317
|
86
|
+
pyegeria/my_profile_omvs.py,sha256=eDnDK8LQIg7yrmiG8x20xMw-Yu6xuL0yXRm0vSc4T8k,40882
|
87
|
+
pyegeria/platform_services.py,sha256=hlbbG1iGuMj7JhLkz60V9xaG4m0pheYvs0bhbjF64rE,41624
|
88
|
+
pyegeria/project_manager_omvs.py,sha256=OCdJKECI0sTZWgXcQ5TcupK5JPxHJG78-kHXyflDu1k,74521
|
89
|
+
pyegeria/registered_info.py,sha256=3PbmqKusFX5m9KYVwbT69PIN1oSL4PhZDbbU_an7dvE,6356
|
90
|
+
pyegeria/runtime_manager_omvs.py,sha256=lR8ZxzqmYmHqjFPBiv0YKQC7x5XpW4CLPPSb4M7ReXo,48377
|
91
91
|
pyegeria/server_operations.py,sha256=ciH890hYT85YQ6OpByn4w7s3a7TtvWZpIG5rkRqbcI0,16766
|
92
92
|
pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
|
93
93
|
pyegeria/valid_metadata_omvs.py,sha256=6Hc4g9BOS8w1ILfTG3_A1tfIX3HLtpgZZvcC-z9GePU,36185
|
94
|
-
pyegeria/x_action_author_omvs.py,sha256=
|
95
|
-
pyegeria-0.8.4.
|
96
|
-
pyegeria-0.8.4.
|
97
|
-
pyegeria-0.8.4.
|
98
|
-
pyegeria-0.8.4.
|
99
|
-
pyegeria-0.8.4.
|
94
|
+
pyegeria/x_action_author_omvs.py,sha256=za472slZ5tN9Pkd-ukyHS5Sn6MlKkJyIlbLlU3bL_Go,6451
|
95
|
+
pyegeria-0.8.4.16.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
96
|
+
pyegeria-0.8.4.16.dist-info/METADATA,sha256=V4fJ8u7hZyJlNTbIAA5gqxYpjBK_1VxspBzeNnQpZa4,2820
|
97
|
+
pyegeria-0.8.4.16.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
98
|
+
pyegeria-0.8.4.16.dist-info/entry_points.txt,sha256=5Q9bDxIqPgdhd3lDnzdRSCYy9hZtNm_BL49bcmbBpGQ,3808
|
99
|
+
pyegeria-0.8.4.16.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|