pyegeria 0.3.4__py3-none-any.whl → 0.3.6__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.
- pyegeria/__init__.py +3 -1
- pyegeria/automated_curation_omvs.py +73 -20
- pyegeria/collection_manager_omvs.py +2428 -0
- pyegeria/core_omag_server_config.py +5 -2
- pyegeria/project_manager_omvs.py +1689 -0
- pyegeria/valid_metadata_omvs.py +779 -0
- {pyegeria-0.3.4.data → pyegeria-0.3.6.data}/scripts/engine_action_status.py +8 -10
- {pyegeria-0.3.4.data → pyegeria-0.3.6.data}/scripts/list_asset_types.py +2 -3
- {pyegeria-0.3.4.data → pyegeria-0.3.6.data}/scripts/multi-server_status.py +1 -4
- {pyegeria-0.3.4.data → pyegeria-0.3.6.data}/scripts/view_my_profile.py +1 -1
- {pyegeria-0.3.4.dist-info → pyegeria-0.3.6.dist-info}/METADATA +1 -1
- pyegeria-0.3.6.dist-info/RECORD +36 -0
- pyegeria/exceptions.py +0 -382
- pyegeria-0.3.4.dist-info/RECORD +0 -34
- {pyegeria-0.3.4.data → pyegeria-0.3.6.data}/scripts/find_todos.py +0 -0
- {pyegeria-0.3.4.data → pyegeria-0.3.6.data}/scripts/glossary_view.py +0 -0
- {pyegeria-0.3.4.data → pyegeria-0.3.6.data}/scripts/gov_engine_status.py +0 -0
- {pyegeria-0.3.4.data → pyegeria-0.3.6.data}/scripts/integration_daemon_status.py +0 -0
- {pyegeria-0.3.4.data → pyegeria-0.3.6.data}/scripts/my_todos.py +0 -0
- {pyegeria-0.3.4.data → pyegeria-0.3.6.data}/scripts/open_todos.py +0 -0
- {pyegeria-0.3.4.data → pyegeria-0.3.6.data}/scripts/server_status.py +0 -0
- {pyegeria-0.3.4.data → pyegeria-0.3.6.data}/scripts/server_status_widget.py +0 -0
- {pyegeria-0.3.4.dist-info → pyegeria-0.3.6.dist-info}/LICENSE +0 -0
- {pyegeria-0.3.4.dist-info → pyegeria-0.3.6.dist-info}/WHEEL +0 -0
- {pyegeria-0.3.4.dist-info → pyegeria-0.3.6.dist-info}/top_level.txt +0 -0
@@ -754,7 +754,8 @@ class CoreServerConfig(Client):
|
|
754
754
|
f"{topic_name}")
|
755
755
|
self.make_request("POST", url, severities)
|
756
756
|
|
757
|
-
def add_file_log_destinations(self, directory_name: str, severities
|
757
|
+
def add_file_log_destinations(self, directory_name: str, severities=None,
|
758
|
+
server_name: str = None) -> None:
|
758
759
|
""" Adds a file log destination to a server. Each message is a separate file in the directory
|
759
760
|
indicated by the directory name.
|
760
761
|
|
@@ -785,6 +786,8 @@ class CoreServerConfig(Client):
|
|
785
786
|
invalid or make the new call invalid.
|
786
787
|
|
787
788
|
"""
|
789
|
+
if severities is None:
|
790
|
+
severities = ["Error", "Exception"]
|
788
791
|
if server_name is None:
|
789
792
|
server_name = self.server_name
|
790
793
|
|
@@ -1718,7 +1721,7 @@ class CoreServerConfig(Client):
|
|
1718
1721
|
|
1719
1722
|
return response.json().get("services", "No view services found")
|
1720
1723
|
|
1721
|
-
def
|
1724
|
+
def __config_all_view_services(self, mdr_server_name: str,
|
1722
1725
|
mdr_server_platform_root_url: str, server_name: str = None) -> None:
|
1723
1726
|
""" Enable all view services that are registered with this OMAG server platform.
|
1724
1727
|
|