pyegeria 0.3.3__py3-none-any.whl → 0.3.5__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 +15 -10
- pyegeria/collection_manager_omvs.py +2428 -0
- pyegeria/core_omag_server_config.py +15 -22
- pyegeria/full_omag_server_config.py +0 -1
- pyegeria/glossary_omvs.py +14 -2
- pyegeria/gov_engine.py +1 -8
- pyegeria/governance_author.py +2 -0
- pyegeria/my_profile_omvs.py +1 -1
- pyegeria/platform_services.py +2 -39
- pyegeria/project_manager_omvs.py +1689 -0
- pyegeria/registered_info.py +3 -1
- pyegeria/server_operations.py +2 -2
- pyegeria/valid_metadata_omvs.py +779 -0
- pyegeria-0.3.5.data/scripts/engine_action_status.py +145 -0
- pyegeria-0.3.5.data/scripts/find_todos.py +152 -0
- pyegeria-0.3.5.data/scripts/glossary_view.py +135 -0
- pyegeria-0.3.5.data/scripts/gov_engine_status.py +120 -0
- pyegeria-0.3.5.data/scripts/integration_daemon_status.py +130 -0
- pyegeria-0.3.5.data/scripts/list_asset_types.py +114 -0
- pyegeria-0.3.5.data/scripts/multi-server_status.py +120 -0
- pyegeria-0.3.5.data/scripts/my_todos.py +162 -0
- pyegeria-0.3.5.data/scripts/open_todos.py +140 -0
- pyegeria-0.3.5.data/scripts/server_status.py +105 -0
- pyegeria-0.3.5.data/scripts/server_status_widget.py +93 -0
- pyegeria-0.3.5.data/scripts/view_my_profile.py +140 -0
- {pyegeria-0.3.3.dist-info → pyegeria-0.3.5.dist-info}/METADATA +1 -1
- pyegeria-0.3.5.dist-info/RECORD +36 -0
- pyegeria/exceptions.py +0 -382
- pyegeria-0.3.3.dist-info/RECORD +0 -22
- {pyegeria-0.3.3.dist-info → pyegeria-0.3.5.dist-info}/LICENSE +0 -0
- {pyegeria-0.3.3.dist-info → pyegeria-0.3.5.dist-info}/WHEEL +0 -0
- {pyegeria-0.3.3.dist-info → pyegeria-0.3.5.dist-info}/top_level.txt +0 -0
pyegeria/registered_info.py
CHANGED
@@ -27,6 +27,8 @@ class RegisteredInfo(Client):
|
|
27
27
|
|
28
28
|
Attributes:
|
29
29
|
----------
|
30
|
+
server_name: str
|
31
|
+
Name of the server to use.
|
30
32
|
platform_url : str
|
31
33
|
URL of the server platform to connect to
|
32
34
|
user_id : str
|
@@ -55,11 +57,11 @@ class RegisteredInfo(Client):
|
|
55
57
|
|
56
58
|
def __init__(
|
57
59
|
self,
|
60
|
+
server_name: str,
|
58
61
|
platform_url: str,
|
59
62
|
user_id: str,
|
60
63
|
user_pwd: str = None,
|
61
64
|
verify_flag: bool = False,
|
62
|
-
server_name: str = None
|
63
65
|
):
|
64
66
|
if server_name is None:
|
65
67
|
server_name = "NA"
|
pyegeria/server_operations.py
CHANGED
@@ -19,7 +19,8 @@ class ServerOps(Platform):
|
|
19
19
|
Client to issue operations on a running OMAG server.
|
20
20
|
|
21
21
|
Attributes:
|
22
|
-
|
22
|
+
server_name: str
|
23
|
+
Name of the server to use.
|
23
24
|
platform_url : str
|
24
25
|
URL of the server platform to connect to
|
25
26
|
user_id : str
|
@@ -31,7 +32,6 @@ class ServerOps(Platform):
|
|
31
32
|
Flag to indicate if SSL Certificates should be verified in the HTTP requests.
|
32
33
|
Defaults to False.
|
33
34
|
|
34
|
-
Methods:
|
35
35
|
|
36
36
|
"""
|
37
37
|
def __init__(
|