pyegeria 1.5.1.0.9__py3-none-any.whl → 1.5.1.0.11__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/list_deployed_database_schemas.py +1 -1
- commands/cli/egeria.py +10 -12
- commands/cli/egeria_cat.py +10 -12
- {pyegeria-1.5.1.0.9.dist-info → pyegeria-1.5.1.0.11.dist-info}/METADATA +1 -1
- {pyegeria-1.5.1.0.9.dist-info → pyegeria-1.5.1.0.11.dist-info}/RECORD +8 -8
- {pyegeria-1.5.1.0.9.dist-info → pyegeria-1.5.1.0.11.dist-info}/LICENSE +0 -0
- {pyegeria-1.5.1.0.9.dist-info → pyegeria-1.5.1.0.11.dist-info}/WHEEL +0 -0
- {pyegeria-1.5.1.0.9.dist-info → pyegeria-1.5.1.0.11.dist-info}/entry_points.txt +0 -0
@@ -213,7 +213,7 @@ def main():
|
|
213
213
|
|
214
214
|
try:
|
215
215
|
db_name = Prompt.ask(
|
216
|
-
"Enter the name of a database to retrieve schemas for", default="*"
|
216
|
+
"Enter the name of a database/catalog to retrieve schemas for", default="*"
|
217
217
|
)
|
218
218
|
list_deployed_database_schemas(db_name, server, url, userid, password)
|
219
219
|
except KeyboardInterrupt:
|
commands/cli/egeria.py
CHANGED
@@ -918,13 +918,15 @@ def list_archives(ctx):
|
|
918
918
|
|
919
919
|
|
920
920
|
@show.command("list-deployed-schemas")
|
921
|
-
@click.option(
|
921
|
+
@click.option(
|
922
|
+
"--search_catalog", default="*", help="What database or catalog to search"
|
923
|
+
)
|
922
924
|
@click.pass_context
|
923
|
-
def list_deployed_schemas(
|
925
|
+
def list_deployed_schemas(search_catalog, ctx):
|
924
926
|
"""Display a tree graph of information about an asset"""
|
925
927
|
c = ctx.obj
|
926
928
|
list_deployed_database_schemas(
|
927
|
-
|
929
|
+
search_catalog,
|
928
930
|
c.view_server,
|
929
931
|
c.view_server_url,
|
930
932
|
c.userid,
|
@@ -935,13 +937,13 @@ def list_deployed_schemas(search_string, ctx):
|
|
935
937
|
|
936
938
|
|
937
939
|
@show.command("list-catalogs")
|
938
|
-
@click.option("--
|
940
|
+
@click.option("--search_server", default="*", help="Server to search for catalogs")
|
939
941
|
@click.pass_context
|
940
|
-
def list_catalogs(
|
942
|
+
def list_catalogs(search_server, ctx):
|
941
943
|
"""Display a tree graph of information about an asset"""
|
942
944
|
c = ctx.obj
|
943
945
|
list_deployed_catalogs(
|
944
|
-
|
946
|
+
search_server,
|
945
947
|
c.view_server,
|
946
948
|
c.view_server_url,
|
947
949
|
c.userid,
|
@@ -951,17 +953,13 @@ def list_catalogs(search_string, ctx):
|
|
951
953
|
)
|
952
954
|
|
953
955
|
|
956
|
+
@show.command("list-databases")
|
954
957
|
@click.pass_context
|
955
958
|
def list_databases(ctx):
|
956
959
|
"""Display a tree graph of information about an asset"""
|
957
960
|
c = ctx.obj
|
958
961
|
list_deployed_databases(
|
959
|
-
c.view_server,
|
960
|
-
c.view_server_url,
|
961
|
-
c.userid,
|
962
|
-
c.password,
|
963
|
-
c.jupyter,
|
964
|
-
c.width,
|
962
|
+
c.view_server, c.view_server_url, c.userid, c.password, c.jupyter, c.width
|
965
963
|
)
|
966
964
|
|
967
965
|
|
commands/cli/egeria_cat.py
CHANGED
@@ -497,13 +497,15 @@ def list_archives(ctx):
|
|
497
497
|
|
498
498
|
|
499
499
|
@show.command("list-deployed-schemas")
|
500
|
-
@click.option(
|
500
|
+
@click.option(
|
501
|
+
"--search_catalog", default="*", help="What database or catalog to search"
|
502
|
+
)
|
501
503
|
@click.pass_context
|
502
|
-
def list_deployed_schemas(
|
504
|
+
def list_deployed_schemas(search_catalog, ctx):
|
503
505
|
"""Display a tree graph of information about an asset"""
|
504
506
|
c = ctx.obj
|
505
507
|
list_deployed_database_schemas(
|
506
|
-
|
508
|
+
search_catalog,
|
507
509
|
c.view_server,
|
508
510
|
c.view_server_url,
|
509
511
|
c.userid,
|
@@ -514,13 +516,13 @@ def list_deployed_schemas(search_string, ctx):
|
|
514
516
|
|
515
517
|
|
516
518
|
@show.command("list-catalogs")
|
517
|
-
@click.option("--
|
519
|
+
@click.option("--search_server", default="*", help="Server to search for catalogs")
|
518
520
|
@click.pass_context
|
519
|
-
def list_catalogs(
|
521
|
+
def list_catalogs(search_server, ctx):
|
520
522
|
"""Display a tree graph of information about an asset"""
|
521
523
|
c = ctx.obj
|
522
524
|
list_deployed_catalogs(
|
523
|
-
|
525
|
+
search_server,
|
524
526
|
c.view_server,
|
525
527
|
c.view_server_url,
|
526
528
|
c.userid,
|
@@ -530,17 +532,13 @@ def list_catalogs(search_string, ctx):
|
|
530
532
|
)
|
531
533
|
|
532
534
|
|
535
|
+
@show.command("list-databases")
|
533
536
|
@click.pass_context
|
534
537
|
def list_databases(ctx):
|
535
538
|
"""Display a tree graph of information about an asset"""
|
536
539
|
c = ctx.obj
|
537
540
|
list_deployed_databases(
|
538
|
-
c.view_server,
|
539
|
-
c.view_server_url,
|
540
|
-
c.userid,
|
541
|
-
c.password,
|
542
|
-
c.jupyter,
|
543
|
-
c.width,
|
541
|
+
c.view_server, c.view_server_url, c.userid, c.password, c.jupyter, c.width
|
544
542
|
)
|
545
543
|
|
546
544
|
|
@@ -11,7 +11,7 @@ commands/cat/list_archives.py,sha256=83LhNeZWhzRiE-oU6veuIk9ob4XDtDWUoXdGGXaYeE8
|
|
11
11
|
commands/cat/list_assets.py,sha256=bNwSaBDz661hfnc2Rn4j4HPHAugKvz0XwN9L1m4FVQk,6529
|
12
12
|
commands/cat/list_cert_types.py,sha256=mbCls_EqC5JKG5rvS4o69k7KgZ6aNXlcqoJ3DtHsTFA,7127
|
13
13
|
commands/cat/list_deployed_catalogs.py,sha256=eG8K-d7BijD34el_yVx9yfnLJdfwTUiJVxd-gcGwo7k,7157
|
14
|
-
commands/cat/list_deployed_database_schemas.py,sha256=
|
14
|
+
commands/cat/list_deployed_database_schemas.py,sha256=oq0jT77KmYLByxBlgpv2k9LscJKOEJqVBj_np5ZVXB0,8537
|
15
15
|
commands/cat/list_deployed_databases.py,sha256=TJWqpj3PhvEmTsXhVRk_SODZNjTA5OiyhEzWwQkD-zk,6668
|
16
16
|
commands/cat/list_glossary.py,sha256=tUtQQoTGTlDLU-yFbfO3zjiJC9QyEJfg8NxnGCo2mnI,5811
|
17
17
|
commands/cat/list_projects.py,sha256=Jzs-DtIpPhCH-gY4PYT6mnRBWnEf4m18TFfcw8UymNU,8011
|
@@ -20,8 +20,8 @@ commands/cat/list_tech_types.py,sha256=20T4v6L5qeebSsaL1nGkFMDAIsy2W3A3SMm1RcgFo
|
|
20
20
|
commands/cat/list_todos.py,sha256=iPxHRyW3X5tiREio4TUOwRPvNPjU0gxm3pVnUI79ir4,6542
|
21
21
|
commands/cat/list_user_ids.py,sha256=7JinL7rknPbGusIb8ikXKEaV1vvbuvx_WWtbmlfS_DY,5093
|
22
22
|
commands/cli/__init__.py,sha256=hpTVSMP2gnPRhcAZPdeUEsQ-eaDySlXlk239dNWYmng,292
|
23
|
-
commands/cli/egeria.py,sha256=
|
24
|
-
commands/cli/egeria_cat.py,sha256=
|
23
|
+
commands/cli/egeria.py,sha256=NDRTZvqWo7H7gcgO_mLVydeSyWKbdeDYl9Eh2vI37PM,31256
|
24
|
+
commands/cli/egeria_cat.py,sha256=JZfj2UjyVsIWRxLclyB1ZGVQLTO1jy-GZ18-cVzhRrI,14803
|
25
25
|
commands/cli/egeria_my.py,sha256=9zIpUDLeA_R-0rgCSQfEZTtVmkxPcEAsYcCTn1wQFrE,6181
|
26
26
|
commands/cli/egeria_ops.py,sha256=fxDXYWXRhexx06PdSLCp2FhgUtS13NdDpyg7ea775fc,11531
|
27
27
|
commands/cli/egeria_tech.py,sha256=eTDHTHDVEYmr6gUPGfido_Uf7Fec0Nuyxlkhg4KAMAw,13160
|
@@ -101,8 +101,8 @@ pyegeria/server_operations.py,sha256=ciH890hYT85YQ6OpByn4w7s3a7TtvWZpIG5rkRqbcI0
|
|
101
101
|
pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
|
102
102
|
pyegeria/valid_metadata_omvs.py,sha256=tfCGXed5LLt59YA8uZNNtd9UJ-lRZfPU_uZxK31Yux0,65069
|
103
103
|
pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
|
104
|
-
pyegeria-1.5.1.0.
|
105
|
-
pyegeria-1.5.1.0.
|
106
|
-
pyegeria-1.5.1.0.
|
107
|
-
pyegeria-1.5.1.0.
|
108
|
-
pyegeria-1.5.1.0.
|
104
|
+
pyegeria-1.5.1.0.11.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
105
|
+
pyegeria-1.5.1.0.11.dist-info/METADATA,sha256=rmsnT2nushxBlpPN2rW0q5o1D2v7iKa-JlJnLcyvWx8,2998
|
106
|
+
pyegeria-1.5.1.0.11.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
107
|
+
pyegeria-1.5.1.0.11.dist-info/entry_points.txt,sha256=Pc5kHnxv-vbRpwVMxSSWl66vmf7EZjgzf7nZzz1ow3M,4002
|
108
|
+
pyegeria-1.5.1.0.11.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|