pyegeria 1.5.1.1.50__py3-none-any.whl → 1.5.1.1.52__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.
@@ -255,7 +255,7 @@ def my(ctx):
255
255
  pass
256
256
 
257
257
 
258
- @my.group("my-show")
258
+ @my.group("show")
259
259
  @click.pass_context
260
260
  def my_show(ctx):
261
261
  """Display an Egeria Object"""
@@ -324,7 +324,7 @@ def show_open_todos(ctx):
324
324
  #
325
325
 
326
326
 
327
- @my.group("my_tell")
327
+ @my.group("tell")
328
328
  @click.pass_context
329
329
  def my_tell(ctx):
330
330
  """Perform actions an Egeria Objects"""
@@ -348,21 +348,21 @@ def tech(ctx):
348
348
  pass
349
349
 
350
350
 
351
- @tech.group("show_tech")
351
+ @tech.group("show")
352
352
  @click.pass_context
353
353
  def show_tech(ctx):
354
354
  """Display an Egeria Object"""
355
355
  pass
356
356
 
357
357
 
358
- @show_tech.group("show_tech_info")
358
+ @show_tech.group("tech_info")
359
359
  @click.pass_context
360
360
  def show_tech_info(ctx):
361
361
  """Show various Egeria information"""
362
362
  pass
363
363
 
364
364
 
365
- @show_tech.group("show_tech-types")
365
+ @show_tech.group("tech-types")
366
366
  @click.pass_context
367
367
  def show_tech_type(ctx):
368
368
  """Show information about Egeria technology types"""
@@ -749,7 +749,7 @@ def cat(ctx):
749
749
  pass
750
750
 
751
751
 
752
- @cat.group("show_cat")
752
+ @cat.group("show")
753
753
  @click.pass_context
754
754
  def show_cat(ctx):
755
755
  """Display an Egeria Object"""
@@ -1117,11 +1117,11 @@ def list_databases(ctx):
1117
1117
 
1118
1118
 
1119
1119
  #
1120
- # Tell
1120
+ # Tell-cat
1121
1121
  #
1122
1122
 
1123
1123
 
1124
- @cat.group("tell-cat")
1124
+ @cat.group("tell")
1125
1125
  @click.pass_context
1126
1126
  def tell_cat(ctx):
1127
1127
  """Perform actions an Egeria Objects"""
@@ -1504,7 +1504,7 @@ def glossaries(ctx, search_string):
1504
1504
  #
1505
1505
 
1506
1506
 
1507
- @cat.group("tell-cat")
1507
+ @cat.group("tell")
1508
1508
  @click.pass_context
1509
1509
  def tell_cat(ctx):
1510
1510
  """Perform actions an Egeria Objects"""
@@ -1558,7 +1558,7 @@ def ops(ctx):
1558
1558
  pass
1559
1559
 
1560
1560
 
1561
- @ops.group("show-ops")
1561
+ @ops.group("show")
1562
1562
  @click.pass_context
1563
1563
  def show_ops(ctx):
1564
1564
  """Display an Egeria Object"""
@@ -1772,19 +1772,19 @@ def integrations_status(ctx, connector):
1772
1772
 
1773
1773
  @ops.group("tell")
1774
1774
  @click.pass_context
1775
- def tell(ctx):
1775
+ def tell_ops(ctx):
1776
1776
  """Perform actions an Egeria Objects"""
1777
1777
  pass
1778
1778
 
1779
1779
 
1780
- @tell.group("integration-daemon")
1780
+ @tell_ops.group("integration-daemon")
1781
1781
  @click.pass_context
1782
- def integration_daemon(ctx):
1782
+ def tell_integration_daemon(ctx):
1783
1783
  """Group of commands to an integration-daemon"""
1784
1784
  pass
1785
1785
 
1786
1786
 
1787
- @integration_daemon.command("refresh")
1787
+ @tell_integration_daemon.command("refresh")
1788
1788
  @click.pass_context
1789
1789
  @click.option(
1790
1790
  "--connector",
@@ -1804,7 +1804,7 @@ def refresh_connectors(ctx, server, connector):
1804
1804
  )
1805
1805
 
1806
1806
 
1807
- @integration_daemon.command("restart")
1807
+ @tell_integration_daemon.command("restart")
1808
1808
  @click.pass_context
1809
1809
  @click.option(
1810
1810
  "--connector",
@@ -1824,14 +1824,14 @@ def restart_connectors(ctx, server, connector):
1824
1824
  )
1825
1825
 
1826
1826
 
1827
- integration_daemon.add_command(add_catalog_target)
1828
- integration_daemon.add_command(remove_catalog_target)
1829
- integration_daemon.add_command(update_catalog_target)
1830
- integration_daemon.add_command(stop_server)
1831
- integration_daemon.add_command(start_server)
1827
+ tell_integration_daemon.add_command(add_catalog_target)
1828
+ tell_integration_daemon.add_command(remove_catalog_target)
1829
+ tell_integration_daemon.add_command(update_catalog_target)
1830
+ tell_integration_daemon.add_command(stop_server)
1831
+ tell_integration_daemon.add_command(start_server)
1832
1832
 
1833
1833
 
1834
- @tell.group("engine-host")
1834
+ @tell_ops.group("engine-host")
1835
1835
  @click.pass_context
1836
1836
  def engine_host(ctx):
1837
1837
  """Group of commands to an engine-host"""
@@ -1843,7 +1843,7 @@ engine_host.add_command(stop_server)
1843
1843
  engine_host.add_command(refresh_gov_eng_config)
1844
1844
 
1845
1845
 
1846
- @tell.group("repository")
1846
+ @tell_ops.group("repository")
1847
1847
  @click.pass_context
1848
1848
  def repository(ctx):
1849
1849
  """Group of commands to a repository"""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyegeria
3
- Version: 1.5.1.1.50
3
+ Version: 1.5.1.1.52
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,7 +34,7 @@ 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=eGJsR7TArnxh8YKlMjUGc31OlFcOtrSI0r_LBbzxOZ4,45609
37
+ pyegeria/commands/cli/egeria.py,sha256=BEblwaF834wbPNew09jmzyaliQUc-vIxTb-uWMwwzPQ,45632
38
38
  pyegeria/commands/cli/egeria_cat.py,sha256=jc3LHkmqqLLJfTslF0RoLvdiCL_2EzrQllOYAZNIr4s,15876
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
@@ -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.50.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
161
- pyegeria-1.5.1.1.50.dist-info/METADATA,sha256=xqOxqiQ-J2-v5iUqH76Bjh5vJa7yFXi9U0TjnrGAHWQ,2998
162
- pyegeria-1.5.1.1.50.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
163
- pyegeria-1.5.1.1.50.dist-info/entry_points.txt,sha256=w9RxNxRMM8fmX_DFKDFRPTWTqeujjbEuGHfqORT7law,5170
164
- pyegeria-1.5.1.1.50.dist-info/RECORD,,
160
+ pyegeria-1.5.1.1.52.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
161
+ pyegeria-1.5.1.1.52.dist-info/METADATA,sha256=slZRkzYADO-5z_0-9ZSny1OcCBDNxitsc5x6fSnDaAs,2998
162
+ pyegeria-1.5.1.1.52.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
163
+ pyegeria-1.5.1.1.52.dist-info/entry_points.txt,sha256=w9RxNxRMM8fmX_DFKDFRPTWTqeujjbEuGHfqORT7law,5170
164
+ pyegeria-1.5.1.1.52.dist-info/RECORD,,