pyegeria 1.5.1.0.14__py3-none-any.whl → 1.5.1.0.16__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.
- commands/cat/old_list_deployed_database_schemas.py +2 -8
- commands/cli/egeria_cat.py +1 -1
- pyegeria/_client.py +2 -2
- {pyegeria-1.5.1.0.14.dist-info → pyegeria-1.5.1.0.16.dist-info}/METADATA +1 -1
- {pyegeria-1.5.1.0.14.dist-info → pyegeria-1.5.1.0.16.dist-info}/RECORD +8 -8
- {pyegeria-1.5.1.0.14.dist-info → pyegeria-1.5.1.0.16.dist-info}/LICENSE +0 -0
- {pyegeria-1.5.1.0.14.dist-info → pyegeria-1.5.1.0.16.dist-info}/WHEEL +0 -0
- {pyegeria-1.5.1.0.14.dist-info → pyegeria-1.5.1.0.16.dist-info}/entry_points.txt +0 -0
@@ -77,9 +77,6 @@ def list_deployed_database_schemas(
|
|
77
77
|
table.add_column("Schema in Catalog")
|
78
78
|
table.add_column("Schema Properties")
|
79
79
|
|
80
|
-
# table.add_column("Home Store")
|
81
|
-
# table.add_column("GUID", width=38, no_wrap=True)
|
82
|
-
# table.add_column("Properties")
|
83
80
|
table.add_column("Cataloged Resource")
|
84
81
|
|
85
82
|
om_type = "DeployedDatabaseSchema"
|
@@ -159,11 +156,8 @@ def list_deployed_database_schemas(
|
|
159
156
|
for key in rel_props.keys():
|
160
157
|
props_md += f"\t* **{key}**: {rel_props[key]}\n"
|
161
158
|
rel_el_md = f"{rel_el_md}\n* **{rel_type}**:\n\t{rel_guid}\n{props_md}{spacer}"
|
162
|
-
|
163
|
-
#
|
164
|
-
# elif count > len_els:
|
165
|
-
# spacer = ""
|
166
|
-
rel_el_md = f"{rel_el_md}\n* **{rel_type}**:\n\t{rel_guid}\n{props_md}{spacer}"
|
159
|
+
|
160
|
+
# rel_el_md = f"{rel_el_md}\n* **{rel_type}**:\n\t{rel_guid}\n{props_md}{spacer}"
|
167
161
|
if count == len_els:
|
168
162
|
rel_el_md = rel_el_md[:-4]
|
169
163
|
rel_el_out = Markdown(rel_el_md)
|
commands/cli/egeria_cat.py
CHANGED
@@ -23,7 +23,7 @@ from commands.cat.list_archives import display_archive_list
|
|
23
23
|
from commands.cat.list_assets import display_assets
|
24
24
|
from commands.cat.list_cert_types import display_certifications
|
25
25
|
from commands.cat.list_deployed_catalogs import list_deployed_catalogs
|
26
|
-
from commands.cat.
|
26
|
+
from commands.cat.list_deployed_database_schemas import (
|
27
27
|
list_deployed_database_schemas,
|
28
28
|
)
|
29
29
|
from commands.cat.list_deployed_databases import list_deployed_databases
|
pyegeria/_client.py
CHANGED
@@ -301,8 +301,8 @@ class Client:
|
|
301
301
|
The principle specified by the user_id does not have authorization for the requested action
|
302
302
|
"""
|
303
303
|
loop = asyncio.get_event_loop()
|
304
|
-
loop.run_until_complete(self._async_refresh_egeria_bearer_token())
|
305
|
-
return
|
304
|
+
token = loop.run_until_complete(self._async_refresh_egeria_bearer_token())
|
305
|
+
return token
|
306
306
|
|
307
307
|
def set_bearer_token(self, token: str) -> None:
|
308
308
|
"""Retrieve and set a Bearer Token
|
@@ -19,10 +19,10 @@ commands/cat/list_relationships.py,sha256=U9f78cOi4HyaacqNaFSMq_7rRxVcEczvwPv468
|
|
19
19
|
commands/cat/list_tech_types.py,sha256=20T4v6L5qeebSsaL1nGkFMDAIsy2W3A3SMm1RcgFoh0,4609
|
20
20
|
commands/cat/list_todos.py,sha256=iPxHRyW3X5tiREio4TUOwRPvNPjU0gxm3pVnUI79ir4,6542
|
21
21
|
commands/cat/list_user_ids.py,sha256=7JinL7rknPbGusIb8ikXKEaV1vvbuvx_WWtbmlfS_DY,5093
|
22
|
-
commands/cat/old_list_deployed_database_schemas.py,sha256=
|
22
|
+
commands/cat/old_list_deployed_database_schemas.py,sha256=56n81Ks7g_g90begVVeqObQJxvnDjMRc1_ORJfkXbd4,7913
|
23
23
|
commands/cli/__init__.py,sha256=hpTVSMP2gnPRhcAZPdeUEsQ-eaDySlXlk239dNWYmng,292
|
24
24
|
commands/cli/egeria.py,sha256=HwEYm8TkRQ7b0kFG88Tl-_UI0Fm4U5Jq_s63xOBOHEc,31269
|
25
|
-
commands/cli/egeria_cat.py,sha256=
|
25
|
+
commands/cli/egeria_cat.py,sha256=NwPCRTIjwQtna5vvjInT6L0krwp2c6k-Fm-oxN6qrnw,14800
|
26
26
|
commands/cli/egeria_my.py,sha256=9zIpUDLeA_R-0rgCSQfEZTtVmkxPcEAsYcCTn1wQFrE,6181
|
27
27
|
commands/cli/egeria_ops.py,sha256=fxDXYWXRhexx06PdSLCp2FhgUtS13NdDpyg7ea775fc,11531
|
28
28
|
commands/cli/egeria_tech.py,sha256=eTDHTHDVEYmr6gUPGfido_Uf7Fec0Nuyxlkhg4KAMAw,13160
|
@@ -72,7 +72,7 @@ commands/tech/list_valid_metadata_values.py,sha256=N3D0_BmREPszgde3uvvYdfzq7DJ46
|
|
72
72
|
commands/tech/x_list_related_elements.py,sha256=qBsf1619cecaMCTzG0MG22fAT32WNH2Z3CXrjo9z-5Y,5853
|
73
73
|
pyegeria/README.md,sha256=PwX5OC7-YSZUCIsoyHh1O-WBM2hE84sm3Bd4O353NOk,1464
|
74
74
|
pyegeria/__init__.py,sha256=mZOa16y_LUUZevlHVQY-X_q0ZE2mEcgAE-eoe16DLls,21893
|
75
|
-
pyegeria/_client.py,sha256=
|
75
|
+
pyegeria/_client.py,sha256=hwmsTTzaRttb-oML351vdDpcpnlEBPudGnqp72VpRYs,26025
|
76
76
|
pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8MdpmVCQ,17264
|
77
77
|
pyegeria/_exceptions.py,sha256=NJ7vAhmvusK1ENvY2MMrBB6A6TgpYjzS9QJxFH56b8c,18470
|
78
78
|
pyegeria/_globals.py,sha256=1Uc8392wjbiVN5L__RzxC1-U97RMXj77_iUsMSgeAjQ,638
|
@@ -102,8 +102,8 @@ pyegeria/server_operations.py,sha256=ciH890hYT85YQ6OpByn4w7s3a7TtvWZpIG5rkRqbcI0
|
|
102
102
|
pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
|
103
103
|
pyegeria/valid_metadata_omvs.py,sha256=tfCGXed5LLt59YA8uZNNtd9UJ-lRZfPU_uZxK31Yux0,65069
|
104
104
|
pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
|
105
|
-
pyegeria-1.5.1.0.
|
106
|
-
pyegeria-1.5.1.0.
|
107
|
-
pyegeria-1.5.1.0.
|
108
|
-
pyegeria-1.5.1.0.
|
109
|
-
pyegeria-1.5.1.0.
|
105
|
+
pyegeria-1.5.1.0.16.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
106
|
+
pyegeria-1.5.1.0.16.dist-info/METADATA,sha256=XicdAKbnM5ynI5BxsOAM7z_cnN6WDeXa5_gaw6jb58g,2998
|
107
|
+
pyegeria-1.5.1.0.16.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
108
|
+
pyegeria-1.5.1.0.16.dist-info/entry_points.txt,sha256=Pc5kHnxv-vbRpwVMxSSWl66vmf7EZjgzf7nZzz1ow3M,4002
|
109
|
+
pyegeria-1.5.1.0.16.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|