pyegeria 0.7.45.1__py3-none-any.whl → 0.8.0__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 (47) hide show
  1. examples/widgets/cat/list_cert_types.py +61 -43
  2. examples/widgets/cat/list_projects.py +1 -1
  3. examples/widgets/my/my_profile_actions.py +51 -32
  4. examples/widgets/ops/engine_actions.py +35 -23
  5. examples/widgets/ops/integration_daemon_actions.py +51 -32
  6. examples/widgets/tech/get_element_info.py +63 -38
  7. examples/widgets/tech/get_guid_info.py +50 -27
  8. examples/widgets/tech/list_asset_types.py +33 -23
  9. examples/widgets/tech/list_elements.py +44 -34
  10. examples/widgets/tech/list_elements_x.py +69 -49
  11. examples/widgets/tech/list_registered_services.py +44 -24
  12. examples/widgets/tech/list_related_specification.py +70 -45
  13. examples/widgets/tech/list_relationship_types.py +50 -31
  14. examples/widgets/tech/list_valid_metadata_values.py +57 -28
  15. examples/widgets/tech/x_list_related_elements.py +54 -34
  16. pyegeria/Xloaded_resources_omvs.py +43 -41
  17. pyegeria/__init__.py +5 -1
  18. pyegeria/_client.py +142 -102
  19. pyegeria/_deprecated_gov_engine.py +218 -167
  20. pyegeria/action_author_omvs.py +107 -88
  21. pyegeria/asset_catalog_omvs.py +467 -395
  22. pyegeria/automated_curation_omvs.py +2 -2
  23. pyegeria/classification_manager_omvs.py +3 -9
  24. pyegeria/collection_manager_omvs.py +1957 -1519
  25. pyegeria/core_omag_server_config.py +310 -192
  26. pyegeria/egeria_cat_client.py +88 -0
  27. pyegeria/egeria_config_client.py +37 -0
  28. pyegeria/egeria_my_client.py +47 -0
  29. pyegeria/egeria_ops_client.py +67 -0
  30. pyegeria/egeria_tech_client.py +77 -0
  31. pyegeria/feedback_manager_omvs.py +633 -631
  32. pyegeria/full_omag_server_config.py +330 -158
  33. pyegeria/glossary_browser_omvs.py +927 -474
  34. pyegeria/glossary_manager_omvs.py +1033 -543
  35. pyegeria/my_profile_omvs.py +714 -574
  36. pyegeria/platform_services.py +228 -176
  37. pyegeria/project_manager_omvs.py +1158 -903
  38. pyegeria/registered_info.py +76 -74
  39. pyegeria/runtime_manager_omvs.py +749 -670
  40. pyegeria/server_operations.py +123 -85
  41. pyegeria/valid_metadata_omvs.py +268 -168
  42. {pyegeria-0.7.45.1.dist-info → pyegeria-0.8.0.dist-info}/METADATA +1 -1
  43. {pyegeria-0.7.45.1.dist-info → pyegeria-0.8.0.dist-info}/RECORD +46 -42
  44. pyegeria/tech_guids_31-08-2024 14:33.py +0 -79
  45. {pyegeria-0.7.45.1.dist-info → pyegeria-0.8.0.dist-info}/LICENSE +0 -0
  46. {pyegeria-0.7.45.1.dist-info → pyegeria-0.8.0.dist-info}/WHEEL +0 -0
  47. {pyegeria-0.7.45.1.dist-info → pyegeria-0.8.0.dist-info}/entry_points.txt +0 -0
@@ -42,9 +42,9 @@ class AutomatedCuration(Client):
42
42
  platform_url: str,
43
43
  user_id: str,
44
44
  user_pwd: str = None,
45
- verify_flag: bool = False,
45
+ token: str = None,
46
46
  ):
47
- Client.__init__(self, server_name, platform_url, user_id, user_pwd, verify_flag)
47
+ Client.__init__(self, server_name, platform_url, user_id, user_pwd, token=token)
48
48
  self.cur_command_root = f"{platform_url}/servers/"
49
49
 
50
50
  async def _async_create_element_from_template(
@@ -97,12 +97,9 @@ class ClassificationManager(Client):
97
97
  The identity of the user calling the method - this sets a
98
98
  default optionally used by the methods when the user
99
99
  doesn't pass the user_id on a method call.
100
- user_pwd: str
100
+ user_pwd: str
101
101
  The password associated with the user_id. Defaults to None
102
- verify_flag: bool
103
- Flag to indicate if SSL Certificates should be verified in the HTTP
104
- requests.
105
- Defaults to False.
102
+
106
103
 
107
104
  """
108
105
 
@@ -110,11 +107,9 @@ class ClassificationManager(Client):
110
107
  self,
111
108
  server_name: str,
112
109
  platform_url: str,
113
- token: str = None,
114
110
  user_id: str = None,
115
111
  user_pwd: str = None,
116
- verify_flag: bool = enable_ssl_check,
117
- sync_mode: bool = True,
112
+ token: str = None,
118
113
  ):
119
114
  self.admin_command_root: str
120
115
  Client.__init__(
@@ -124,7 +119,6 @@ class ClassificationManager(Client):
124
119
  user_id=user_id,
125
120
  user_pwd=user_pwd,
126
121
  token=token,
127
- async_mode=sync_mode,
128
122
  )
129
123
 
130
124
  #