pyegeria 1.5.1.1.52__py3-none-any.whl → 1.5.1.1.53__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 +17 -26
- pyegeria/commands/cli/egeria_cat.py +1 -1
- {pyegeria-1.5.1.1.52.dist-info → pyegeria-1.5.1.1.53.dist-info}/METADATA +1 -1
- {pyegeria-1.5.1.1.52.dist-info → pyegeria-1.5.1.1.53.dist-info}/RECORD +8 -8
- {pyegeria-1.5.1.1.52.dist-info → pyegeria-1.5.1.1.53.dist-info}/LICENSE +0 -0
- {pyegeria-1.5.1.1.52.dist-info → pyegeria-1.5.1.1.53.dist-info}/WHEEL +0 -0
- {pyegeria-1.5.1.1.52.dist-info → pyegeria-1.5.1.1.53.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",
|
@@ -250,7 +250,7 @@ def show_tech_type_elements(ctx, tech_type):
|
|
250
250
|
tech_viewer(tech_type, c.view_server, c.view_server_url, c.userid, c.password)
|
251
251
|
|
252
252
|
|
253
|
-
@asset_group.command("
|
253
|
+
@asset_group.command("in-asset-domain")
|
254
254
|
@click.argument("search-string")
|
255
255
|
@click.pass_context
|
256
256
|
def show_assets(ctx, search_string):
|
@@ -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,8 +34,8 @@ 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=ihGVRODzo8ORVPjipAxaA522TTGvIdj0jmGcL5A8By8,45423
|
38
|
+
pyegeria/commands/cli/egeria_cat.py,sha256=4x-DdcA5B4BK5jNT3zZO8TPa5zfOHsozxJUVI-InV9I,15885
|
39
39
|
pyegeria/commands/cli/egeria_my.py,sha256=Memyxzhrn_i3nMNRor-5N40_SKJJMzylA4iQgBW3T4g,6235
|
40
40
|
pyegeria/commands/cli/egeria_ops.py,sha256=orkBFNIH6ZcZZCiUJHvwU3EKNWdsVdvzgBlO2K1_0YI,12612
|
41
41
|
pyegeria/commands/cli/egeria_tech.py,sha256=c2ek0hp7vG_omFQ3snfXPRc3tI0fGgty4_C9teaeEXE,14315
|
@@ -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.53.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
161
|
+
pyegeria-1.5.1.1.53.dist-info/METADATA,sha256=PsT_DVQWG3MlJVudgFg0NoBAP67CU9rIw_XFbzyJd6E,2998
|
162
|
+
pyegeria-1.5.1.1.53.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
163
|
+
pyegeria-1.5.1.1.53.dist-info/entry_points.txt,sha256=w9RxNxRMM8fmX_DFKDFRPTWTqeujjbEuGHfqORT7law,5170
|
164
|
+
pyegeria-1.5.1.1.53.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|