pyegeria 1.5.1.1.53__py3-none-any.whl → 1.5.1.1.55__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.
@@ -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):
@@ -1627,7 +1580,7 @@ def engine_host(ctx):
1627
1580
  @engine_host.command("status")
1628
1581
  @click.option(
1629
1582
  "--engine-list",
1630
- default=["*"],
1583
+ default="*",
1631
1584
  help="Enter the list of connectors you are interested in or ['*'] for all",
1632
1585
  )
1633
1586
  @click.option(
@@ -1643,7 +1596,7 @@ def gov_eng_status(ctx, engine_list, engine_host, list):
1643
1596
  """Display engine-host status information"""
1644
1597
  c = ctx.obj
1645
1598
  display_gov_eng_status(
1646
- engine_list,
1599
+ [engine_list],
1647
1600
  engine_host,
1648
1601
  c.view_server,
1649
1602
  c.view_server_url,
@@ -1711,7 +1664,7 @@ def integrations(ctx):
1711
1664
  @integrations.command("status")
1712
1665
  @click.option(
1713
1666
  "--connector-list",
1714
- default=["*"],
1667
+ default="*",
1715
1668
  help="Enter the list of connectors you are interested in or ['*'] for all",
1716
1669
  )
1717
1670
  @click.option(
@@ -1725,7 +1678,7 @@ def integrations_status(ctx, connector_list, list, sorted):
1725
1678
  """Display integration-daemon status information"""
1726
1679
  c = ctx.obj
1727
1680
  display_integration_daemon_status(
1728
- connector_list,
1681
+ [connector_list],
1729
1682
  c.integration_daemon,
1730
1683
  c.integration_daemon_url,
1731
1684
  c.view_server,
@@ -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,
@@ -378,7 +378,7 @@ def integrations(ctx):
378
378
  @integrations.command("status")
379
379
  @click.option(
380
380
  "--connector-list",
381
- default=["*"],
381
+ default="*",
382
382
  help="Enter the list of connectors you are interested in or ['*'] for all",
383
383
  )
384
384
  @click.option(
@@ -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,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyegeria
3
- Version: 1.5.1.1.53
3
+ Version: 1.5.1.1.55
4
4
  Summary: A python client for Egeria
5
5
  Home-page: https://github.com/odpi/egeria-python
6
6
  License: Apache 2.0
@@ -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=ihGVRODzo8ORVPjipAxaA522TTGvIdj0jmGcL5A8By8,45423
38
- pyegeria/commands/cli/egeria_cat.py,sha256=4x-DdcA5B4BK5jNT3zZO8TPa5zfOHsozxJUVI-InV9I,15885
37
+ pyegeria/commands/cli/egeria.py,sha256=0QXBohT-OGtwAIPDKoYzWa56jtqGNTSPHSrBGK9jX00,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=orkBFNIH6ZcZZCiUJHvwU3EKNWdsVdvzgBlO2K1_0YI,12612
40
+ pyegeria/commands/cli/egeria_ops.py,sha256=A75wSDydYsVwV657q-jn1ri3MJv_3de1DSAj26ebwIc,12612
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.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,,
160
+ pyegeria-1.5.1.1.55.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
161
+ pyegeria-1.5.1.1.55.dist-info/METADATA,sha256=kYE4kCB9p0cl2_5CBuvYePDllixJlPiZSnJpa9mw7fg,2998
162
+ pyegeria-1.5.1.1.55.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
163
+ pyegeria-1.5.1.1.55.dist-info/entry_points.txt,sha256=w9RxNxRMM8fmX_DFKDFRPTWTqeujjbEuGHfqORT7law,5170
164
+ pyegeria-1.5.1.1.55.dist-info/RECORD,,