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/__init__.py
CHANGED
@@ -40,5 +40,7 @@ from .gov_engine import GovEng
|
|
40
40
|
from .my_profile_omvs import MyProfile
|
41
41
|
from .full_omag_server_config import FullServerConfig
|
42
42
|
from .server_operations import ServerOps
|
43
|
-
|
43
|
+
from .collection_manager_omvs import CollectionManager
|
44
|
+
from .project_manager_omvs import ProjectManager
|
45
|
+
from .valid_metadata_omvs import ValidMetadataManager
|
44
46
|
__version__ = "0.3"
|
@@ -19,16 +19,21 @@ from ._validators import validate_name, validate_guid, validate_search_string
|
|
19
19
|
|
20
20
|
class AutomatedCuration(Client):
|
21
21
|
""" Set up and maintain automation services in Egeria.
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
22
|
+
|
23
|
+
Attributes:
|
24
|
+
server_name : str
|
25
|
+
The name of the View Server to use.
|
26
|
+
platform_url : str
|
27
|
+
URL of the server platform to connect to
|
28
|
+
user_id : str
|
29
|
+
The identity of the user calling the method - this sets a default optionally used by the methods
|
30
|
+
when the user doesn't pass the user_id on a method call.
|
31
|
+
user_pwd: str
|
32
|
+
The password associated with the user_id. Defaults to None
|
33
|
+
verify_flag: bool
|
34
|
+
Flag to indicate if SSL Certificates should be verified in the HTTP requests.
|
35
|
+
Defaults to False.
|
36
|
+
|
32
37
|
"""
|
33
38
|
|
34
39
|
def __init__(
|