pyegeria 1.5.1.1.53__py3-none-any.whl → 1.5.1.1.54__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/commands/cli/egeria.py +11 -47
- pyegeria/commands/cli/egeria_cat.py +11 -0
- pyegeria/commands/cli/egeria_ops.py +3 -3
- {pyegeria-1.5.1.1.53.dist-info → pyegeria-1.5.1.1.54.dist-info}/METADATA +1 -1
- {pyegeria-1.5.1.1.53.dist-info → pyegeria-1.5.1.1.54.dist-info}/RECORD +8 -8
- {pyegeria-1.5.1.1.53.dist-info → pyegeria-1.5.1.1.54.dist-info}/LICENSE +0 -0
- {pyegeria-1.5.1.1.53.dist-info → pyegeria-1.5.1.1.54.dist-info}/WHEEL +0 -0
- {pyegeria-1.5.1.1.53.dist-info → pyegeria-1.5.1.1.54.dist-info}/entry_points.txt +0 -0
pyegeria/commands/cli/egeria.py
CHANGED
@@ -1222,29 +1222,6 @@ def show_project_dependencies(ctx, project):
|
|
1222
1222
|
)
|
1223
1223
|
|
1224
1224
|
|
1225
|
-
@asset_group.command("assets")
|
1226
|
-
@click.argument("search-string")
|
1227
|
-
@click.pass_context
|
1228
|
-
def show_assets_group(ctx, search_string):
|
1229
|
-
"""Find and display assets
|
1230
|
-
|
1231
|
-
Usage: show assets <search-string>
|
1232
|
-
|
1233
|
-
search-string must be greater than four characters.
|
1234
|
-
"""
|
1235
|
-
c = ctx.obj
|
1236
|
-
display_assets(
|
1237
|
-
search_string,
|
1238
|
-
c.view_server,
|
1239
|
-
c.view_server_url,
|
1240
|
-
c.userid,
|
1241
|
-
c.password,
|
1242
|
-
60,
|
1243
|
-
c.jupyter,
|
1244
|
-
c.width,
|
1245
|
-
)
|
1246
|
-
|
1247
|
-
|
1248
1225
|
@glossary_group.command("glossary-terms")
|
1249
1226
|
@click.option(
|
1250
1227
|
"--search-string",
|
@@ -1490,30 +1467,6 @@ def glossaries(ctx, search_string):
|
|
1490
1467
|
)
|
1491
1468
|
|
1492
1469
|
|
1493
|
-
#
|
1494
|
-
# Catalog User: Tell
|
1495
|
-
#
|
1496
|
-
|
1497
|
-
|
1498
|
-
@cat.group("tell")
|
1499
|
-
@click.pass_context
|
1500
|
-
def tell_cat(ctx):
|
1501
|
-
"""Perform actions an Egeria Objects"""
|
1502
|
-
pass
|
1503
|
-
|
1504
|
-
|
1505
|
-
tell_cat.add_command(create_glossary)
|
1506
|
-
tell_cat.add_command(delete_glossary)
|
1507
|
-
tell_cat.add_command(create_term)
|
1508
|
-
tell_cat.add_command(mark_todo_complete)
|
1509
|
-
tell_cat.add_command(reassign_todo)
|
1510
|
-
tell_cat.add_command(delete_todo)
|
1511
|
-
tell_cat.add_command(create_todo)
|
1512
|
-
tell_cat.add_command(import_terms)
|
1513
|
-
tell_cat.add_command(delete_term)
|
1514
|
-
tell_cat.add_command(export_terms)
|
1515
|
-
|
1516
|
-
|
1517
1470
|
# @tell_cat.group("survey")
|
1518
1471
|
# @click.pass_context
|
1519
1472
|
# def survey(ctx):
|
@@ -1822,6 +1775,17 @@ tell_integration_daemon.add_command(stop_server)
|
|
1822
1775
|
tell_integration_daemon.add_command(start_server)
|
1823
1776
|
|
1824
1777
|
|
1778
|
+
@tell_ops.group("servers")
|
1779
|
+
@click.pass_context
|
1780
|
+
def servers(ctx):
|
1781
|
+
"""Perform actions on OMAG Servers"""
|
1782
|
+
pass
|
1783
|
+
|
1784
|
+
|
1785
|
+
servers.add_command(start_server)
|
1786
|
+
servers.add_command(stop_server)
|
1787
|
+
|
1788
|
+
|
1825
1789
|
@tell_ops.group("engine-host")
|
1826
1790
|
@click.pass_context
|
1827
1791
|
def engine_host(ctx):
|
@@ -48,6 +48,7 @@ from pyegeria.commands.my.todo_actions import (
|
|
48
48
|
delete_todo,
|
49
49
|
create_todo,
|
50
50
|
)
|
51
|
+
from pyegeria.commands.tech.list_asset_types import display_asset_types
|
51
52
|
|
52
53
|
|
53
54
|
# class Config(object):
|
@@ -491,6 +492,16 @@ def show_todos(ctx, search_string, status):
|
|
491
492
|
)
|
492
493
|
|
493
494
|
|
495
|
+
@info.command("asset-types")
|
496
|
+
@click.pass_context
|
497
|
+
def show_asset_types(ctx):
|
498
|
+
"""Display engine-host status information"""
|
499
|
+
c = ctx.obj
|
500
|
+
display_asset_types(
|
501
|
+
c.view_server, c.view_server_url, c.userid, c.password, c.jupyter, c.width
|
502
|
+
)
|
503
|
+
|
504
|
+
|
494
505
|
@info.command("user-ids")
|
495
506
|
@click.pass_context
|
496
507
|
def show_todos(ctx):
|
@@ -290,7 +290,7 @@ def engine_host(ctx):
|
|
290
290
|
@engine_host.command("status")
|
291
291
|
@click.option(
|
292
292
|
"--engine-list",
|
293
|
-
default=
|
293
|
+
default="*",
|
294
294
|
help="Enter the list of connectors you are interested in or ['*'] for all",
|
295
295
|
)
|
296
296
|
@click.option(
|
@@ -306,7 +306,7 @@ def gov_eng_status(ctx, engine_list, engine_host, list):
|
|
306
306
|
"""Display engine-host status information"""
|
307
307
|
c = ctx.obj
|
308
308
|
display_gov_eng_status(
|
309
|
-
engine_list,
|
309
|
+
[engine_list],
|
310
310
|
engine_host,
|
311
311
|
c.view_server,
|
312
312
|
c.view_server_url,
|
@@ -389,7 +389,7 @@ def integrations_status(ctx, connector_list, list):
|
|
389
389
|
"""Display integration-daemon status information"""
|
390
390
|
c = ctx.obj
|
391
391
|
display_integration_daemon_status(
|
392
|
-
connector_list,
|
392
|
+
[connector_list],
|
393
393
|
c.integration_daemon,
|
394
394
|
c.integration_daemon_url,
|
395
395
|
c.view_server,
|
@@ -34,10 +34,10 @@ pyegeria/commands/cat/list_terms.py,sha256=1xHNMgB03OVxskj63vDS7-p1OEhMNyxvlTmg8
|
|
34
34
|
pyegeria/commands/cat/list_todos.py,sha256=iPxHRyW3X5tiREio4TUOwRPvNPjU0gxm3pVnUI79ir4,6542
|
35
35
|
pyegeria/commands/cat/list_user_ids.py,sha256=7JinL7rknPbGusIb8ikXKEaV1vvbuvx_WWtbmlfS_DY,5093
|
36
36
|
pyegeria/commands/cli/__init__.py,sha256=hpTVSMP2gnPRhcAZPdeUEsQ-eaDySlXlk239dNWYmng,292
|
37
|
-
pyegeria/commands/cli/egeria.py,sha256=
|
38
|
-
pyegeria/commands/cli/egeria_cat.py,sha256=
|
37
|
+
pyegeria/commands/cli/egeria.py,sha256=8U-klqn9UuDHWejnMKl9XSqucXBH2HCxGGDU4v0Zw2Y,44635
|
38
|
+
pyegeria/commands/cli/egeria_cat.py,sha256=IyK9GuyxDN5LhXRz7t74Kbj6CZhlVIe4H8R7fKFB110,16214
|
39
39
|
pyegeria/commands/cli/egeria_my.py,sha256=Memyxzhrn_i3nMNRor-5N40_SKJJMzylA4iQgBW3T4g,6235
|
40
|
-
pyegeria/commands/cli/egeria_ops.py,sha256=
|
40
|
+
pyegeria/commands/cli/egeria_ops.py,sha256=IArVbslVWMp3dm6yyeliXcaumCcHi89lMQZ26ZmR-zQ,12614
|
41
41
|
pyegeria/commands/cli/egeria_tech.py,sha256=c2ek0hp7vG_omFQ3snfXPRc3tI0fGgty4_C9teaeEXE,14315
|
42
42
|
pyegeria/commands/cli/ops_config.py,sha256=m4AfPjf-fR4EBTx8Dc2mcgrfWwAxb30YGeV-v79bg4U,1450
|
43
43
|
pyegeria/commands/doc/.DS_Store,sha256=8NYo_wnhWZfLpkPld7Y2BV4ZsmywSTUkalhulBRf3qY,10244
|
@@ -157,8 +157,8 @@ pyegeria/template_manager_omvs.py,sha256=heqbKeum5hPCHap4r1RUZU8YB3QaQlxVNbq4GZi
|
|
157
157
|
pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
|
158
158
|
pyegeria/valid_metadata_omvs.py,sha256=tfCGXed5LLt59YA8uZNNtd9UJ-lRZfPU_uZxK31Yux0,65069
|
159
159
|
pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
|
160
|
-
pyegeria-1.5.1.1.
|
161
|
-
pyegeria-1.5.1.1.
|
162
|
-
pyegeria-1.5.1.1.
|
163
|
-
pyegeria-1.5.1.1.
|
164
|
-
pyegeria-1.5.1.1.
|
160
|
+
pyegeria-1.5.1.1.54.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
161
|
+
pyegeria-1.5.1.1.54.dist-info/METADATA,sha256=G3IpX_izbF4MAqlk9LMctBKn9rd6MVlO2ejtDXrcFZ0,2998
|
162
|
+
pyegeria-1.5.1.1.54.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
163
|
+
pyegeria-1.5.1.1.54.dist-info/entry_points.txt,sha256=w9RxNxRMM8fmX_DFKDFRPTWTqeujjbEuGHfqORT7law,5170
|
164
|
+
pyegeria-1.5.1.1.54.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|