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.
Files changed (33) hide show
  1. pyegeria/__init__.py +3 -1
  2. pyegeria/automated_curation_omvs.py +15 -10
  3. pyegeria/collection_manager_omvs.py +2428 -0
  4. pyegeria/core_omag_server_config.py +15 -22
  5. pyegeria/full_omag_server_config.py +0 -1
  6. pyegeria/glossary_omvs.py +14 -2
  7. pyegeria/gov_engine.py +1 -8
  8. pyegeria/governance_author.py +2 -0
  9. pyegeria/my_profile_omvs.py +1 -1
  10. pyegeria/platform_services.py +2 -39
  11. pyegeria/project_manager_omvs.py +1689 -0
  12. pyegeria/registered_info.py +3 -1
  13. pyegeria/server_operations.py +2 -2
  14. pyegeria/valid_metadata_omvs.py +779 -0
  15. pyegeria-0.3.5.data/scripts/engine_action_status.py +145 -0
  16. pyegeria-0.3.5.data/scripts/find_todos.py +152 -0
  17. pyegeria-0.3.5.data/scripts/glossary_view.py +135 -0
  18. pyegeria-0.3.5.data/scripts/gov_engine_status.py +120 -0
  19. pyegeria-0.3.5.data/scripts/integration_daemon_status.py +130 -0
  20. pyegeria-0.3.5.data/scripts/list_asset_types.py +114 -0
  21. pyegeria-0.3.5.data/scripts/multi-server_status.py +120 -0
  22. pyegeria-0.3.5.data/scripts/my_todos.py +162 -0
  23. pyegeria-0.3.5.data/scripts/open_todos.py +140 -0
  24. pyegeria-0.3.5.data/scripts/server_status.py +105 -0
  25. pyegeria-0.3.5.data/scripts/server_status_widget.py +93 -0
  26. pyegeria-0.3.5.data/scripts/view_my_profile.py +140 -0
  27. {pyegeria-0.3.3.dist-info → pyegeria-0.3.5.dist-info}/METADATA +1 -1
  28. pyegeria-0.3.5.dist-info/RECORD +36 -0
  29. pyegeria/exceptions.py +0 -382
  30. pyegeria-0.3.3.dist-info/RECORD +0 -22
  31. {pyegeria-0.3.3.dist-info → pyegeria-0.3.5.dist-info}/LICENSE +0 -0
  32. {pyegeria-0.3.3.dist-info → pyegeria-0.3.5.dist-info}/WHEEL +0 -0
  33. {pyegeria-0.3.3.dist-info → pyegeria-0.3.5.dist-info}/top_level.txt +0 -0
@@ -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"
@@ -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__(