pyegeria 0.8.4.24__py3-none-any.whl → 0.8.4.26__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/cli/egeria.py CHANGED
@@ -32,14 +32,12 @@ from commands.my.list_my_profile import display_my_profile
32
32
  from commands.my.list_my_roles import display_my_roles
33
33
  from commands.my.monitor_my_todos import display_my_todos
34
34
  from commands.my.monitor_open_todos import display_todos
35
- from commands.ops.engine_actions import (
36
- start_daemon as start_engine_host,
37
- stop_daemon as stop_engine_host,
38
- )
39
- from commands.ops.integration_daemon_actions import (
35
+
36
+ from commands.ops.gov_server_actions import (
40
37
  add_catalog_target,
41
38
  remove_catalog_target,
42
39
  update_catalog_target,
40
+ refresh_gov_eng_config,
43
41
  stop_server,
44
42
  start_server,
45
43
  )
@@ -1161,8 +1159,8 @@ def engine_host(ctx):
1161
1159
  pass
1162
1160
 
1163
1161
 
1164
- engine_host.add_command(start_engine_host)
1165
- engine_host.add_command(stop_engine_host)
1162
+ engine_host.add_command(start_server)
1163
+ engine_host.add_command(stop_server)
1166
1164
 
1167
1165
 
1168
1166
  @tell.group("repository")
@@ -14,15 +14,14 @@ from trogon import tui
14
14
 
15
15
  # from pyegeria import ServerOps
16
16
  from commands.cli.ops_config import Config
17
- from commands.ops.integration_daemon_actions import (
18
- start_server,
19
- stop_server,
20
- refresh_gov_eng_config,
21
- )
22
- from commands.ops.integration_daemon_actions import (
17
+
18
+ from commands.ops.gov_server_actions import (
23
19
  add_catalog_target,
24
20
  remove_catalog_target,
25
21
  update_catalog_target,
22
+ refresh_gov_eng_config,
23
+ start_server,
24
+ stop_server,
26
25
  )
27
26
  from commands.ops.list_catalog_targets import display_catalog_targets
28
27
  from commands.ops.load_archive import load_archive
@@ -121,9 +120,7 @@ from commands.ops.restart_integration_daemon import restart_connector
121
120
  envvar="EGERIA_ADMIN_PASSWORD",
122
121
  help="Egeria admin password",
123
122
  )
124
- @click.option(
125
- "--userid", default="erinoverview", envvar="EGERIA_USER", help="Egeria user"
126
- )
123
+ @click.option("--userid", default="garygeeke", envvar="EGERIA_USER", help="Egeria user")
127
124
  @click.option(
128
125
  "--password",
129
126
  default="secret",
@@ -112,7 +112,7 @@ from commands.tech.list_related_specification import (
112
112
  help="Egeria admin password",
113
113
  )
114
114
  @click.option(
115
- "--userid", default="erinoverview", envvar="EGERIA_USER", help="Egeria user"
115
+ "--userid", default="peterprofile", envvar="EGERIA_USER", help="Egeria user"
116
116
  )
117
117
  @click.option(
118
118
  "--password",
@@ -104,57 +104,8 @@ def update_catalog_target(ctx, relationship_guid: str, catalog_target_name: str)
104
104
  print_exception_response(e)
105
105
 
106
106
 
107
- # @click.command("stop")
108
- # @click.pass_context
109
- # def stop_server(ctx):
110
- # """Stop an integration daemon"""
111
- # try:
112
- # c = ctx.obj
113
- # p_client = Platform(
114
- # c.integration_daemon, c.integration_daemon_url, c.userid, c.password
115
- # )
116
- #
117
- # p_client.shutdown_server()
118
- #
119
- # click.echo(f"Stopped server {c.integration_daemon}")
120
- # except (InvalidParameterException, PropertyServerException) as e:
121
- # print_exception_response(e)
122
- #
123
- #
124
- # @click.command("start")
125
- # @click.pass_context
126
- # def start_server(ctx):
127
- # """Start or restart an integration daemon from its known configuration"""
128
- # try:
129
- # c = ctx.obj
130
- # p_client = Platform(
131
- # c.integration_daemon, c.integration_daemon_url, c.userid, c.password
132
- # )
133
- #
134
- # p_client.activate_server_stored_config()
135
- #
136
- # click.echo(f"Started server {c.integration_daemon}")
137
- #
138
- # except (InvalidParameterException, PropertyServerException) as e:
139
- # print_exception_response(e)
140
107
  @click.command("refresh-gov-eng-config")
141
108
  @click.pass_context
142
- # @click.option(
143
- # "--engine-host", default=EGERIA_ENGINE_HOST, help="Engine Host to refresh"
144
- # )
145
- # @click.option(
146
- # "--view-server", default=EGERIA_VIEW_SERVER, help="View Server to communicate with"
147
- # )
148
- # @click.option(
149
- # "--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to"
150
- # )
151
- # @click.option("--userid", default="garygeeke", envvar="EGERIA_USER", help="Egeria user")
152
- # @click.option(
153
- # "--password",
154
- # default="secret",
155
- # envvar="EGERIA_PASSWORD",
156
- # help="Egeria user password",
157
- # )
158
109
  def refresh_gov_eng_config(ctx):
159
110
  """Start or restart an engine-host from its known configuration"""
160
111
  c = ctx.obj
@@ -174,23 +125,11 @@ def refresh_gov_eng_config(ctx):
174
125
 
175
126
  @click.command("start")
176
127
  @click.pass_context
177
- @click.option("--server", help="OMAG Server to start")
178
- # @click.option(
179
- # "--view-server", default=EGERIA_VIEW_SERVER, help="View Server to communicate with"
180
- # )
181
- # @click.option(
182
- # "--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to"
183
- # )
184
- # @click.option("--userid", default="garygeeke", envvar="EGERIA_USER", help="Egeria user")
185
- # @click.option(
186
- # "--password",
187
- # default="secret",
188
- # envvar="EGERIA_USER_PASSWORD",
189
- # help="Egeria user password",
190
- # )
128
+ @click.option("--server", default="simple-metadata-store", help="OMAG Server to start")
191
129
  def start_server(ctx, server):
192
130
  """Start or restart an engine-host from its known configuration"""
193
131
  c = ctx.obj
132
+
194
133
  p_client = EgeriaTech(c.view_server, c.view_server_url, c.userid, c.password)
195
134
  token = p_client.create_egeria_bearer_token()
196
135
  try:
@@ -114,7 +114,7 @@ def display_status(
114
114
  server_status = "UNKNOWN"
115
115
  status_flag = "[bright yellow]"
116
116
 
117
- server_list = (
117
+ server_list += (
118
118
  f"{status_flag}{server_types[server_type]}: {server_name}\n"
119
119
  )
120
120
  # server_list = server_list + serv
@@ -3,44 +3,63 @@
3
3
  SPDX-License-Identifier: Apache-2.0
4
4
  Copyright Contributors to the ODPi Egeria project.
5
5
 
6
- Unit tests for the Utils helper functions using the Pytest framework.
6
+ Display the server status of all registered servers across all platforms.
7
+
8
+ Note: This implementation is using the platform-report. A more complex platform environment may require
9
+ reimplementing from a server only perspective using get_servers_by_dep_impl_type() to find the guids and
10
+ then get_server_by_guid() to get the status. Less efficient but may be more robust for some environments.
11
+
7
12
 
8
13
 
9
14
  A simple server status display
10
15
  """
11
16
  import argparse
12
17
  import os
18
+ import sys
13
19
  import time
14
20
 
15
21
  from rich.live import Live
16
22
  from rich.table import Table
17
23
 
24
+ from examples.doc_samples.Create_Sustainability_Collection_Sample import description
18
25
  from pyegeria import (
19
26
  InvalidParameterException,
20
27
  PropertyServerException,
21
28
  UserNotAuthorizedException,
22
29
  print_exception_response,
23
- ServerOps
30
+ RuntimeManager,
24
31
  )
25
32
 
26
33
  EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
27
- EGERIA_KAFKA_ENDPOINT = os.environ.get('KAFKA_ENDPOINT', 'localhost:9092')
28
- EGERIA_PLATFORM_URL = os.environ.get('EGERIA_PLATFORM_URL', 'https://localhost:9443')
29
- EGERIA_VIEW_SERVER = os.environ.get('VIEW_SERVER', 'view-server')
30
- EGERIA_VIEW_SERVER_URL = os.environ.get('EGERIA_VIEW_SERVER_URL', 'https://localhost:9443')
31
- EGERIA_INTEGRATION_DAEMON = os.environ.get('INTEGRATION_DAEMON', 'integration-daemon')
32
- EGERIA_INTEGRATION_DAEMON_URL = os.environ.get('EGERIA_INTEGRATION_DAEMON_URL', 'https://localhost:9443')
33
- EGERIA_ADMIN_USER = os.environ.get('ADMIN_USER', 'garygeeke')
34
- EGERIA_ADMIN_PASSWORD = os.environ.get('ADMIN_PASSWORD', 'secret')
35
- EGERIA_USER = os.environ.get('EGERIA_USER', 'erinoverview')
36
- EGERIA_USER_PASSWORD = os.environ.get('EGERIA_USER_PASSWORD', 'secret')
37
- EGERIA_JUPYTER = bool(os.environ.get('EGERIA_JUPYTER', 'False'))
38
- EGERIA_WIDTH = int(os.environ.get('EGERIA_WIDTH', '200'))
39
-
40
-
41
- def display_status(server: str, url: str, username: str, user_pass: str, jupyter: bool = EGERIA_JUPYTER,
42
- width: int = EGERIA_WIDTH):
43
- p_client = ServerOps(server, url, username, user_pass)
34
+ EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
35
+ EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
36
+ EGERIA_VIEW_SERVER = os.environ.get("VIEW_SERVER", "view-server")
37
+ EGERIA_VIEW_SERVER_URL = os.environ.get(
38
+ "EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
39
+ )
40
+ EGERIA_INTEGRATION_DAEMON = os.environ.get("INTEGRATION_DAEMON", "integration-daemon")
41
+ EGERIA_INTEGRATION_DAEMON_URL = os.environ.get(
42
+ "EGERIA_INTEGRATION_DAEMON_URL", "https://localhost:9443"
43
+ )
44
+ EGERIA_ADMIN_USER = os.environ.get("ADMIN_USER", "garygeeke")
45
+ EGERIA_ADMIN_PASSWORD = os.environ.get("ADMIN_PASSWORD", "secret")
46
+ EGERIA_USER = os.environ.get("EGERIA_USER", "erinoverview")
47
+ EGERIA_USER_PASSWORD = os.environ.get("EGERIA_USER_PASSWORD", "secret")
48
+ EGERIA_JUPYTER = bool(os.environ.get("EGERIA_JUPYTER", "False"))
49
+ EGERIA_WIDTH = int(os.environ.get("EGERIA_WIDTH", "200"))
50
+
51
+
52
+ def display_status(
53
+ extended: bool,
54
+ view_server: str,
55
+ url: str,
56
+ username: str,
57
+ user_pass: str,
58
+ jupyter: bool = EGERIA_JUPYTER,
59
+ width: int = EGERIA_WIDTH,
60
+ ):
61
+ p_client = RuntimeManager(view_server, url, username, user_pass)
62
+ token = p_client.create_egeria_bearer_token()
44
63
 
45
64
  def generate_table() -> Table:
46
65
  """Make a new table."""
@@ -51,27 +70,58 @@ def display_status(server: str, url: str, username: str, user_pass: str, jupyter
51
70
  header_style="white on dark_blue",
52
71
  title_style="bold white on black",
53
72
  caption_style="white on black",
54
- caption=f"Server Status for Platform - '{url}'",
73
+ caption=f"Server Status from Platform - '{url}'",
55
74
  # show_lines=True,
56
75
  )
57
76
 
58
77
  table.add_column("Known Server")
59
78
  table.add_column("Status")
60
-
61
- known_server_list = p_client.get_known_servers()
62
- active_server_list = p_client.get_active_server_list()
63
- if len(known_server_list) == 0:
64
- return table
65
-
66
- for server in known_server_list:
67
- if server in active_server_list:
68
- status = "Active"
69
- else:
70
- status = "Inactive"
71
-
72
- table.add_row(server,
73
- "[red]Inactive" if status == "Inactive" else "[green]Active",
74
- )
79
+ if extended:
80
+ table.add_column("Description")
81
+ table.add_column("Server Type")
82
+ table.add_column("Last Started")
83
+
84
+ platform_list = p_client.get_platforms_by_type()
85
+ if type(platform_list) is str:
86
+ print("No OMAG Server Platforms found?")
87
+ sys.exit(1)
88
+
89
+ for platform in platform_list:
90
+ platform_name = platform["properties"].get("displayName", "---")
91
+ platform_guid = platform["elementHeader"]["guid"]
92
+ platform_desc = platform["properties"].get("resourceDescription", "---")
93
+ p_server_list = ""
94
+
95
+ platform_report = p_client.get_platform_report(platform_guid)
96
+ servers = platform_report.get("omagservers", None)
97
+ for p_server in servers:
98
+ server_name = p_server.get("serverName", "--- ")
99
+ server_type = p_server.get("serverType", "--- ")
100
+ server_desc = p_server.get("description", "--- ")
101
+ last_start_time = p_server.get("lastStartTime", "--- ")
102
+
103
+ server_status = p_server.get("serverActiveStatus", "UNKNOWN")
104
+ if server_status in ("RUNNING", "STARTING"):
105
+ status = "Active"
106
+ elif server_status in ("INACTIVE", "STOPPING"):
107
+ status = "Inactive"
108
+ else:
109
+ status = "UNKNOWN"
110
+
111
+ if extended:
112
+ table.add_row(
113
+ server_name,
114
+ "[red]Inactive" if status == "Inactive" else "[green]Active",
115
+ server_desc,
116
+ server_type,
117
+ last_start_time,
118
+ )
119
+ else:
120
+ table.add_row(
121
+ server_name,
122
+ "[red]Inactive" "" if status == "Inactive" else "[green]Active",
123
+ # server_status,
124
+ )
75
125
  # p_client.close_session()
76
126
  return table
77
127
 
@@ -81,7 +131,11 @@ def display_status(server: str, url: str, username: str, user_pass: str, jupyter
81
131
  time.sleep(2)
82
132
  live.update(generate_table())
83
133
 
84
- except (InvalidParameterException, PropertyServerException, UserNotAuthorizedException) as e:
134
+ except (
135
+ InvalidParameterException,
136
+ PropertyServerException,
137
+ UserNotAuthorizedException,
138
+ ) as e:
85
139
  print_exception_response(e)
86
140
  except KeyboardInterrupt:
87
141
  pass
@@ -91,18 +145,20 @@ def display_status(server: str, url: str, username: str, user_pass: str, jupyter
91
145
 
92
146
  def main():
93
147
  parser = argparse.ArgumentParser()
148
+ parser.add_argument("--extended", help="Extended Information?")
94
149
  parser.add_argument("--server", help="Name of the server to display status for")
95
150
  parser.add_argument("--url", help="URL Platform to connect to")
96
151
  parser.add_argument("--userid", help="User Id")
97
152
  parser.add_argument("--password", help="User Password")
98
153
  args = parser.parse_args()
99
154
 
100
- server = args.server if args.server is not None else EGERIA_METADATA_STORE
155
+ extended = args.extended if args.extended is not None else True
156
+ server = args.server if args.server is not None else EGERIA_VIEW_SERVER
101
157
  url = args.url if args.url is not None else EGERIA_PLATFORM_URL
102
158
  userid = args.userid if args.userid is not None else EGERIA_ADMIN_USER
103
159
  user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
104
160
 
105
- display_status(server, url, userid, user_pass)
161
+ display_status(extended, server, url, userid, user_pass)
106
162
 
107
163
 
108
164
  if __name__ == "__main__":
@@ -0,0 +1,109 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ SPDX-License-Identifier: Apache-2.0
4
+ Copyright Contributors to the ODPi Egeria project.
5
+
6
+ Unit tests for the Utils helper functions using the Pytest framework.
7
+
8
+
9
+ A simple server status display
10
+ """
11
+ import argparse
12
+ import os
13
+ import time
14
+
15
+ from rich.live import Live
16
+ from rich.table import Table
17
+
18
+ from pyegeria import (
19
+ InvalidParameterException,
20
+ PropertyServerException,
21
+ UserNotAuthorizedException,
22
+ print_exception_response,
23
+ ServerOps
24
+ )
25
+
26
+ EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
27
+ EGERIA_KAFKA_ENDPOINT = os.environ.get('KAFKA_ENDPOINT', 'localhost:9092')
28
+ EGERIA_PLATFORM_URL = os.environ.get('EGERIA_PLATFORM_URL', 'https://localhost:9443')
29
+ EGERIA_VIEW_SERVER = os.environ.get('VIEW_SERVER', 'view-server')
30
+ EGERIA_VIEW_SERVER_URL = os.environ.get('EGERIA_VIEW_SERVER_URL', 'https://localhost:9443')
31
+ EGERIA_INTEGRATION_DAEMON = os.environ.get('INTEGRATION_DAEMON', 'integration-daemon')
32
+ EGERIA_INTEGRATION_DAEMON_URL = os.environ.get('EGERIA_INTEGRATION_DAEMON_URL', 'https://localhost:9443')
33
+ EGERIA_ADMIN_USER = os.environ.get('ADMIN_USER', 'garygeeke')
34
+ EGERIA_ADMIN_PASSWORD = os.environ.get('ADMIN_PASSWORD', 'secret')
35
+ EGERIA_USER = os.environ.get('EGERIA_USER', 'erinoverview')
36
+ EGERIA_USER_PASSWORD = os.environ.get('EGERIA_USER_PASSWORD', 'secret')
37
+ EGERIA_JUPYTER = bool(os.environ.get('EGERIA_JUPYTER', 'False'))
38
+ EGERIA_WIDTH = int(os.environ.get('EGERIA_WIDTH', '200'))
39
+
40
+
41
+ def display_status(server: str, url: str, username: str, user_pass: str, jupyter: bool = EGERIA_JUPYTER,
42
+ width: int = EGERIA_WIDTH):
43
+ p_client = ServerOps(server, url, username, user_pass)
44
+
45
+ def generate_table() -> Table:
46
+ """Make a new table."""
47
+ table = Table(
48
+ title=f"Server Status for Platform - {time.asctime()}",
49
+ style="bold white on black",
50
+ row_styles=["bold white on black"],
51
+ header_style="white on dark_blue",
52
+ title_style="bold white on black",
53
+ caption_style="white on black",
54
+ caption=f"Server Status for Platform - '{url}'",
55
+ # show_lines=True,
56
+ )
57
+
58
+ table.add_column("Known Server")
59
+ table.add_column("Status")
60
+
61
+ known_server_list = p_client.get_known_servers()
62
+ active_server_list = p_client.get_active_server_list()
63
+ if len(known_server_list) == 0:
64
+ return table
65
+
66
+ for server in known_server_list:
67
+ if server in active_server_list:
68
+ status = "Active"
69
+ else:
70
+ status = "Inactive"
71
+
72
+ table.add_row(server,
73
+ "[red]Inactive" if status == "Inactive" else "[green]Active",
74
+ )
75
+ # p_client.close_session()
76
+ return table
77
+
78
+ try:
79
+ with Live(generate_table(), refresh_per_second=4, screen=True) as live:
80
+ while True:
81
+ time.sleep(2)
82
+ live.update(generate_table())
83
+
84
+ except (InvalidParameterException, PropertyServerException, UserNotAuthorizedException) as e:
85
+ print_exception_response(e)
86
+ except KeyboardInterrupt:
87
+ pass
88
+ finally:
89
+ p_client.close_session()
90
+
91
+
92
+ def main():
93
+ parser = argparse.ArgumentParser()
94
+ parser.add_argument("--server", help="Name of the server to display status for")
95
+ parser.add_argument("--url", help="URL Platform to connect to")
96
+ parser.add_argument("--userid", help="User Id")
97
+ parser.add_argument("--password", help="User Password")
98
+ args = parser.parse_args()
99
+
100
+ server = args.server if args.server is not None else EGERIA_METADATA_STORE
101
+ url = args.url if args.url is not None else EGERIA_PLATFORM_URL
102
+ userid = args.userid if args.userid is not None else EGERIA_ADMIN_USER
103
+ user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
104
+
105
+ display_status(server, url, userid, user_pass)
106
+
107
+
108
+ if __name__ == "__main__":
109
+ main()
@@ -1763,7 +1763,7 @@ class RuntimeManager(Client):
1763
1763
 
1764
1764
  response = await self._async_make_request("POST", url, body)
1765
1765
 
1766
- return response.json().get("elements", "No platforms found")
1766
+ return response.json().get("elements", "No servers found")
1767
1767
 
1768
1768
  def get_servers_by_dep_impl_type(
1769
1769
  self,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyegeria
3
- Version: 0.8.4.24
3
+ Version: 0.8.4.26
4
4
  Summary: A python client for Egeria
5
5
  Home-page: https://github.com/odpi/egeria-python
6
6
  License: Apache 2.0
@@ -16,11 +16,11 @@ commands/cat/list_tech_types.py,sha256=20T4v6L5qeebSsaL1nGkFMDAIsy2W3A3SMm1RcgFo
16
16
  commands/cat/list_todos.py,sha256=iPxHRyW3X5tiREio4TUOwRPvNPjU0gxm3pVnUI79ir4,6542
17
17
  commands/cat/list_user_ids.py,sha256=7JinL7rknPbGusIb8ikXKEaV1vvbuvx_WWtbmlfS_DY,5093
18
18
  commands/cli/__init__.py,sha256=6d_R0KZBNnJy9EBz9J2xvGFlx-3j_ZPqPCxKgdvYeDQ,291
19
- commands/cli/egeria.py,sha256=diSjRmatdj9RNsHEZbcstxvH4TPf99PXdILp7DyqgTQ,28411
19
+ commands/cli/egeria.py,sha256=PrWt07cTZSNqyBrJifMnvCWH0vor4zcydsIznQJqPQM,28302
20
20
  commands/cli/egeria_cat.py,sha256=LWspOYRcdJIIx2n9wvhBhkNnACGDIpFTWfsoVTGeiV0,12957
21
21
  commands/cli/egeria_my.py,sha256=9zIpUDLeA_R-0rgCSQfEZTtVmkxPcEAsYcCTn1wQFrE,6181
22
- commands/cli/egeria_ops.py,sha256=IoFtzuOPJb4fjEag8AhlHIr5dOg4ODGAjrghmmQBiCg,11092
23
- commands/cli/egeria_tech.py,sha256=PfEIf8pLgbCiPlUikZss97R78XOue0P3aZG5PswUtQ4,11161
22
+ commands/cli/egeria_ops.py,sha256=rcHD8RN9BJL7H8RBXlP1QvV_pzJPm-k4YODnfLF-yqw,11020
23
+ commands/cli/egeria_tech.py,sha256=AbRx_wDP4935zAECOgCY0rL8v8AySWxNvkG9Z_mm-SY,11161
24
24
  commands/cli/ops_config.py,sha256=m4AfPjf-fR4EBTx8Dc2mcgrfWwAxb30YGeV-v79bg4U,1450
25
25
  commands/my/README.md,sha256=ZheFhj_VoPMhcWjW3pGchHB0vH_A9PklSmrSkzKdrcQ,844
26
26
  commands/my/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -33,7 +33,7 @@ commands/my/todo_actions.py,sha256=uihltirrAPtwYNygnNBAVWgfS0W7acoETz1_h3XW_4o,8
33
33
  commands/ops/README.md,sha256=PJsSDcvMv6E6og6y-cwvxFX5lhCII0UCwgKiM1T17MQ,1595
34
34
  commands/ops/__init__.py,sha256=SCfzF3-aMx8EpqLWmH7JQf13gTmMAtHRbg69oseLvi8,480
35
35
  commands/ops/engine_actions.py,sha256=00s_wkzs0zlZ6PyZ0J5J9lHhw4Viyzbeox7b1K1lmyc,4609
36
- commands/ops/integration_daemon_actions.py,sha256=DdG6hajVQuYxh5PJRpoPhyAzdEoc1gB0FkIIv-tCvG4,7625
36
+ commands/ops/gov_server_actions.py,sha256=xF0QWSP7JtxpcA-L8DfbVjtgHgqBocgBN5qIE5Rmm9A,5631
37
37
  commands/ops/list_catalog_targets.py,sha256=0FIZqZu7DSh7tnrme6EOhNiVvK8wyvN1iTZKEDuwTmw,6620
38
38
  commands/ops/load_archive.py,sha256=duf3wq2ANRBiOj9KTFsw8TseEkJLKdzITAeTCjsMvI0,2453
39
39
  commands/ops/monitor_asset_events.py,sha256=cjdlVqE0XYnoRW3aorNbsVkjByDXefPBnllaZLelGls,3838
@@ -42,9 +42,10 @@ commands/ops/monitor_engine_activity.py,sha256=m18OSnRoo5ut0WKKOWNoFGXJW_npjp6hz
42
42
  commands/ops/monitor_engine_activity_c.py,sha256=rSEUD3elhsiYdUhQRn613OM_R4VecFb0uq39MhYhltQ,9371
43
43
  commands/ops/monitor_gov_eng_status.py,sha256=_eIN_3J8PZjgZH4D1Pc0Z_kUOd0pVd6dGP7jUgXG5wg,6640
44
44
  commands/ops/monitor_integ_daemon_status.py,sha256=u15-tvGveO7_yV7JJmYkxiEDnq5KBk8J4hkw0id_LFA,9224
45
- commands/ops/monitor_platform_status.py,sha256=hn96QuOjCndSDWl1-DAzk9O8D68YoRP1ALOlVfWVQgo,6400
45
+ commands/ops/monitor_platform_status.py,sha256=xmngiuQK9X6X4-stGSITzfMSAdqpswVk-DY7kh8M0P0,6401
46
46
  commands/ops/monitor_server_list.py,sha256=Uhtn8lv7QVXJBi9DSR3Nelmz8TB0vOsat10nFS6Nu20,4637
47
- commands/ops/monitor_server_status.py,sha256=A-8hMDfbscdcq-b1OD4wKn0tphumX8WIK-Hz8uPoFkc,3974
47
+ commands/ops/monitor_server_status.py,sha256=KWkFXivHfHa1rggRoaIBSSgECQAwJ4vDgjjVMvp56RY,6145
48
+ commands/ops/orig_monitor_server_status.py,sha256=A-8hMDfbscdcq-b1OD4wKn0tphumX8WIK-Hz8uPoFkc,3974
48
49
  commands/ops/refresh_integration_daemon.py,sha256=9dZX-AHJ7yILohj005TRIC9tC349RRwwxRmqVLD2ZTE,2991
49
50
  commands/ops/restart_integration_daemon.py,sha256=PN48zVDywjNJznmpVWEcBXBD3xhWDw1dMyKLIs9nWzU,2992
50
51
  commands/tech/README.md,sha256=nxDnfr3BCiGgW5G1VxWxiwUWJXIe5wreNuUeRyIt_hY,1343
@@ -87,13 +88,13 @@ pyegeria/my_profile_omvs.py,sha256=eDnDK8LQIg7yrmiG8x20xMw-Yu6xuL0yXRm0vSc4T8k,4
87
88
  pyegeria/platform_services.py,sha256=hlbbG1iGuMj7JhLkz60V9xaG4m0pheYvs0bhbjF64rE,41624
88
89
  pyegeria/project_manager_omvs.py,sha256=OCdJKECI0sTZWgXcQ5TcupK5JPxHJG78-kHXyflDu1k,74521
89
90
  pyegeria/registered_info.py,sha256=3PbmqKusFX5m9KYVwbT69PIN1oSL4PhZDbbU_an7dvE,6356
90
- pyegeria/runtime_manager_omvs.py,sha256=zGrm7XAwRsRYNgG1a7huM1jVroGGuhAeF2qi_K1YOU4,61922
91
+ pyegeria/runtime_manager_omvs.py,sha256=nqcATjrFGCxtYDe10u3PnJ7aVSdTwlxTk_DFzMKlWMw,61920
91
92
  pyegeria/server_operations.py,sha256=ciH890hYT85YQ6OpByn4w7s3a7TtvWZpIG5rkRqbcI0,16766
92
93
  pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
93
94
  pyegeria/valid_metadata_omvs.py,sha256=6Hc4g9BOS8w1ILfTG3_A1tfIX3HLtpgZZvcC-z9GePU,36185
94
95
  pyegeria/x_action_author_omvs.py,sha256=za472slZ5tN9Pkd-ukyHS5Sn6MlKkJyIlbLlU3bL_Go,6451
95
- pyegeria-0.8.4.24.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
96
- pyegeria-0.8.4.24.dist-info/METADATA,sha256=OqZlzrcHeP6WgJxtMu7uCXEgzEee_T5-6YFWRm47da8,2820
97
- pyegeria-0.8.4.24.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
98
- pyegeria-0.8.4.24.dist-info/entry_points.txt,sha256=CkFcA_eJ_pXLSlpZ7AAPDiNVHyFuW0tDHc_y9LTlLx8,3344
99
- pyegeria-0.8.4.24.dist-info/RECORD,,
96
+ pyegeria-0.8.4.26.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
97
+ pyegeria-0.8.4.26.dist-info/METADATA,sha256=jkJSoG6WdgsKbfEK0yv_TkfwTdXNp3Q5YbYXfqlCaSI,2820
98
+ pyegeria-0.8.4.26.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
99
+ pyegeria-0.8.4.26.dist-info/entry_points.txt,sha256=CkFcA_eJ_pXLSlpZ7AAPDiNVHyFuW0tDHc_y9LTlLx8,3344
100
+ pyegeria-0.8.4.26.dist-info/RECORD,,