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.
- examples/widgets/cat/list_cert_types.py +61 -43
- examples/widgets/cat/list_projects.py +1 -1
- examples/widgets/my/my_profile_actions.py +51 -32
- examples/widgets/ops/engine_actions.py +35 -23
- examples/widgets/ops/integration_daemon_actions.py +51 -32
- examples/widgets/tech/get_element_info.py +63 -38
- examples/widgets/tech/get_guid_info.py +50 -27
- examples/widgets/tech/list_asset_types.py +33 -23
- examples/widgets/tech/list_elements.py +44 -34
- examples/widgets/tech/list_elements_x.py +69 -49
- examples/widgets/tech/list_registered_services.py +44 -24
- examples/widgets/tech/list_related_specification.py +70 -45
- examples/widgets/tech/list_relationship_types.py +50 -31
- examples/widgets/tech/list_valid_metadata_values.py +57 -28
- examples/widgets/tech/x_list_related_elements.py +54 -34
- pyegeria/Xloaded_resources_omvs.py +43 -41
- pyegeria/__init__.py +5 -1
- pyegeria/_client.py +142 -102
- pyegeria/_deprecated_gov_engine.py +218 -167
- pyegeria/action_author_omvs.py +107 -88
- pyegeria/asset_catalog_omvs.py +467 -395
- pyegeria/automated_curation_omvs.py +2 -2
- pyegeria/classification_manager_omvs.py +3 -9
- pyegeria/collection_manager_omvs.py +1957 -1519
- pyegeria/core_omag_server_config.py +310 -192
- pyegeria/egeria_cat_client.py +88 -0
- pyegeria/egeria_config_client.py +37 -0
- pyegeria/egeria_my_client.py +47 -0
- pyegeria/egeria_ops_client.py +67 -0
- pyegeria/egeria_tech_client.py +77 -0
- pyegeria/feedback_manager_omvs.py +633 -631
- pyegeria/full_omag_server_config.py +330 -158
- pyegeria/glossary_browser_omvs.py +927 -474
- pyegeria/glossary_manager_omvs.py +1033 -543
- pyegeria/my_profile_omvs.py +714 -574
- pyegeria/platform_services.py +228 -176
- pyegeria/project_manager_omvs.py +1158 -903
- pyegeria/registered_info.py +76 -74
- pyegeria/runtime_manager_omvs.py +749 -670
- pyegeria/server_operations.py +123 -85
- pyegeria/valid_metadata_omvs.py +268 -168
- {pyegeria-0.7.45.1.dist-info → pyegeria-0.8.0.dist-info}/METADATA +1 -1
- {pyegeria-0.7.45.1.dist-info → pyegeria-0.8.0.dist-info}/RECORD +46 -42
- pyegeria/tech_guids_31-08-2024 14:33.py +0 -79
- {pyegeria-0.7.45.1.dist-info → pyegeria-0.8.0.dist-info}/LICENSE +0 -0
- {pyegeria-0.7.45.1.dist-info → pyegeria-0.8.0.dist-info}/WHEEL +0 -0
- {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
|
-
|
45
|
+
token: str = None,
|
46
46
|
):
|
47
|
-
Client.__init__(self, server_name, platform_url, user_id, user_pwd,
|
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
|
-
|
100
|
+
user_pwd: str
|
101
101
|
The password associated with the user_id. Defaults to None
|
102
|
-
|
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
|
-
|
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
|
#
|