pyegeria 1.5.1.1.52__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/cat/list_deployed_databases.py +1 -1
- pyegeria/commands/cli/egeria.py +28 -73
- pyegeria/commands/cli/egeria_cat.py +12 -1
- pyegeria/commands/cli/egeria_ops.py +3 -3
- {pyegeria-1.5.1.1.52.dist-info → pyegeria-1.5.1.1.54.dist-info}/METADATA +1 -1
- {pyegeria-1.5.1.1.52.dist-info → pyegeria-1.5.1.1.54.dist-info}/RECORD +9 -9
- {pyegeria-1.5.1.1.52.dist-info → pyegeria-1.5.1.1.54.dist-info}/LICENSE +0 -0
- {pyegeria-1.5.1.1.52.dist-info → pyegeria-1.5.1.1.54.dist-info}/WHEEL +0 -0
- {pyegeria-1.5.1.1.52.dist-info → pyegeria-1.5.1.1.54.dist-info}/entry_points.txt +0 -0
pyegeria/commands/cli/egeria.py
CHANGED
@@ -405,7 +405,7 @@ def show_related_specifications(ctx, element_guid):
|
|
405
405
|
)
|
406
406
|
|
407
407
|
|
408
|
-
@show_tech_type.command("
|
408
|
+
@show_tech_type.command("list")
|
409
409
|
@click.option("--search-string", default="*", help="Tech type to search for")
|
410
410
|
@click.pass_context
|
411
411
|
def show_tech_types(ctx, search_string):
|
@@ -423,7 +423,7 @@ def show_tech_types(ctx, search_string):
|
|
423
423
|
)
|
424
424
|
|
425
425
|
|
426
|
-
@show_tech_type.command("
|
426
|
+
@show_tech_type.command("details")
|
427
427
|
@click.argument("tech-name")
|
428
428
|
@click.pass_context
|
429
429
|
def show_tech_details(ctx, tech_name):
|
@@ -445,7 +445,7 @@ def show_tech_details(ctx, tech_name):
|
|
445
445
|
)
|
446
446
|
|
447
447
|
|
448
|
-
@show_tech_type.command("
|
448
|
+
@show_tech_type.command("templates")
|
449
449
|
@click.option(
|
450
450
|
"--tech-type",
|
451
451
|
default="PostgreSQL Server",
|
@@ -590,26 +590,7 @@ def show_relationship_types(ctx, element_guid, om_type, rel_type):
|
|
590
590
|
)
|
591
591
|
|
592
592
|
|
593
|
-
@show_tech_type.command("
|
594
|
-
@click.pass_context
|
595
|
-
@click.option(
|
596
|
-
"--search-string", default="*", help="Technology type to get information about"
|
597
|
-
)
|
598
|
-
def tech_templates(ctx, search_string):
|
599
|
-
"""Display template information about the specified technology."""
|
600
|
-
c = ctx.obj
|
601
|
-
template_viewer(
|
602
|
-
search_string,
|
603
|
-
c.view_server,
|
604
|
-
c.view_server_url,
|
605
|
-
c.userid,
|
606
|
-
c.password,
|
607
|
-
c.jupyter,
|
608
|
-
c.width,
|
609
|
-
)
|
610
|
-
|
611
|
-
|
612
|
-
@show_tech_type.command("tech-template-spec")
|
593
|
+
@show_tech_type.command("template-spec")
|
613
594
|
@click.pass_context
|
614
595
|
@click.option(
|
615
596
|
"--search-string", default="*", help="Technology type to get information about"
|
@@ -781,7 +762,7 @@ def asset_group(ctx):
|
|
781
762
|
pass
|
782
763
|
|
783
764
|
|
784
|
-
@asset_group.command("
|
765
|
+
@asset_group.command("elements-of-type")
|
785
766
|
@click.option(
|
786
767
|
"--tech_type",
|
787
768
|
default="PostgreSQL Server",
|
@@ -794,11 +775,11 @@ def show_tech_type_elements(ctx, tech_type):
|
|
794
775
|
tech_viewer(tech_type, c.view_server, c.view_server_url, c.userid, c.password)
|
795
776
|
|
796
777
|
|
797
|
-
@asset_group.command("
|
778
|
+
@asset_group.command("in-asset-domain")
|
798
779
|
@click.argument("search-string")
|
799
780
|
@click.pass_context
|
800
781
|
def show_assets(ctx, search_string):
|
801
|
-
"""Find and display assets
|
782
|
+
"""Find and display assets in domain
|
802
783
|
|
803
784
|
Usage: show assets <search-string>
|
804
785
|
|
@@ -963,6 +944,16 @@ def show_certification_types(ctx, search_string):
|
|
963
944
|
)
|
964
945
|
|
965
946
|
|
947
|
+
@show_cat_info.command("asset-types")
|
948
|
+
@click.pass_context
|
949
|
+
def show_asset_types(ctx):
|
950
|
+
"""Display engine-host status information"""
|
951
|
+
c = ctx.obj
|
952
|
+
display_asset_types(
|
953
|
+
c.view_server, c.view_server_url, c.userid, c.password, c.jupyter, c.width
|
954
|
+
)
|
955
|
+
|
956
|
+
|
966
957
|
@show_project_group.command("project-structure")
|
967
958
|
@click.option(
|
968
959
|
"--project",
|
@@ -1231,29 +1222,6 @@ def show_project_dependencies(ctx, project):
|
|
1231
1222
|
)
|
1232
1223
|
|
1233
1224
|
|
1234
|
-
@asset_group.command("assets")
|
1235
|
-
@click.argument("search-string")
|
1236
|
-
@click.pass_context
|
1237
|
-
def show_assets_group(ctx, search_string):
|
1238
|
-
"""Find and display assets
|
1239
|
-
|
1240
|
-
Usage: show assets <search-string>
|
1241
|
-
|
1242
|
-
search-string must be greater than four characters.
|
1243
|
-
"""
|
1244
|
-
c = ctx.obj
|
1245
|
-
display_assets(
|
1246
|
-
search_string,
|
1247
|
-
c.view_server,
|
1248
|
-
c.view_server_url,
|
1249
|
-
c.userid,
|
1250
|
-
c.password,
|
1251
|
-
60,
|
1252
|
-
c.jupyter,
|
1253
|
-
c.width,
|
1254
|
-
)
|
1255
|
-
|
1256
|
-
|
1257
1225
|
@glossary_group.command("glossary-terms")
|
1258
1226
|
@click.option(
|
1259
1227
|
"--search-string",
|
@@ -1499,30 +1467,6 @@ def glossaries(ctx, search_string):
|
|
1499
1467
|
)
|
1500
1468
|
|
1501
1469
|
|
1502
|
-
#
|
1503
|
-
# Catalog User: Tell
|
1504
|
-
#
|
1505
|
-
|
1506
|
-
|
1507
|
-
@cat.group("tell")
|
1508
|
-
@click.pass_context
|
1509
|
-
def tell_cat(ctx):
|
1510
|
-
"""Perform actions an Egeria Objects"""
|
1511
|
-
pass
|
1512
|
-
|
1513
|
-
|
1514
|
-
tell_cat.add_command(create_glossary)
|
1515
|
-
tell_cat.add_command(delete_glossary)
|
1516
|
-
tell_cat.add_command(create_term)
|
1517
|
-
tell_cat.add_command(mark_todo_complete)
|
1518
|
-
tell_cat.add_command(reassign_todo)
|
1519
|
-
tell_cat.add_command(delete_todo)
|
1520
|
-
tell_cat.add_command(create_todo)
|
1521
|
-
tell_cat.add_command(import_terms)
|
1522
|
-
tell_cat.add_command(delete_term)
|
1523
|
-
tell_cat.add_command(export_terms)
|
1524
|
-
|
1525
|
-
|
1526
1470
|
# @tell_cat.group("survey")
|
1527
1471
|
# @click.pass_context
|
1528
1472
|
# def survey(ctx):
|
@@ -1831,6 +1775,17 @@ tell_integration_daemon.add_command(stop_server)
|
|
1831
1775
|
tell_integration_daemon.add_command(start_server)
|
1832
1776
|
|
1833
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
|
+
|
1834
1789
|
@tell_ops.group("engine-host")
|
1835
1790
|
@click.pass_context
|
1836
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):
|
@@ -250,7 +251,7 @@ def show_tech_type_elements(ctx, tech_type):
|
|
250
251
|
tech_viewer(tech_type, c.view_server, c.view_server_url, c.userid, c.password)
|
251
252
|
|
252
253
|
|
253
|
-
@asset_group.command("
|
254
|
+
@asset_group.command("in-asset-domain")
|
254
255
|
@click.argument("search-string")
|
255
256
|
@click.pass_context
|
256
257
|
def show_assets(ctx, search_string):
|
@@ -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,
|
@@ -25,7 +25,7 @@ pyegeria/commands/cat/list_assets.py,sha256=bNwSaBDz661hfnc2Rn4j4HPHAugKvz0XwN9L
|
|
25
25
|
pyegeria/commands/cat/list_cert_types.py,sha256=mbCls_EqC5JKG5rvS4o69k7KgZ6aNXlcqoJ3DtHsTFA,7127
|
26
26
|
pyegeria/commands/cat/list_deployed_catalogs.py,sha256=sdfhzK0Wqo59tpoX6jpjnBWl5MLdD1qzU0TcXC_QtsY,8140
|
27
27
|
pyegeria/commands/cat/list_deployed_database_schemas.py,sha256=g-O5Qk6t9mHl3yAYwHIbVWNxjy5bR4YOfvJ5YMoeMyw,9535
|
28
|
-
pyegeria/commands/cat/list_deployed_databases.py,sha256=
|
28
|
+
pyegeria/commands/cat/list_deployed_databases.py,sha256=r8KjKo-eEh0zt9_5TvlZJ-073oEcH5yBddZcIRmUxrE,7532
|
29
29
|
pyegeria/commands/cat/list_glossaries.py,sha256=t4p6DUd09MkIW07rCW0nc2K2ktD_YP0Qlw2z8zSayBI,5592
|
30
30
|
pyegeria/commands/cat/list_projects.py,sha256=Jzs-DtIpPhCH-gY4PYT6mnRBWnEf4m18TFfcw8UymNU,8011
|
31
31
|
pyegeria/commands/cat/list_servers_deployed_imp.py,sha256=gcfeDzf7QGwa5tU_WYJD4O-dZKQ7XYp_J1BXTnGy3xg,5705
|
@@ -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
|