pyegeria 0.5.6.2__py3-none-any.whl → 0.5.6.5__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.
- examples/widgets/operational/load_archive.py +60 -0
- examples/widgets/operational/monitor_eng_action_status.py +5 -9
- examples/widgets/operational/monitor_gov_eng_status.py +34 -10
- examples/widgets/operational/monitor_integ_daemon_status.py +38 -10
- pyegeria/__init__.py +0 -1
- pyegeria/server_operations.py +1 -1
- pyegeria/utils.py +0 -2
- {pyegeria-0.5.6.2.dist-info → pyegeria-0.5.6.5.dist-info}/METADATA +3 -1
- {pyegeria-0.5.6.2.dist-info → pyegeria-0.5.6.5.dist-info}/RECORD +12 -12
- {pyegeria-0.5.6.2.dist-info → pyegeria-0.5.6.5.dist-info}/entry_points.txt +6 -2
- pyegeria/core_guids.py +0 -127
- {pyegeria-0.5.6.2.dist-info → pyegeria-0.5.6.5.dist-info}/LICENSE +0 -0
- {pyegeria-0.5.6.2.dist-info → pyegeria-0.5.6.5.dist-info}/WHEEL +0 -0
@@ -0,0 +1,60 @@
|
|
1
|
+
"""
|
2
|
+
SPDX-License-Identifier: Apache-2.0
|
3
|
+
Copyright Contributors to the ODPi Egeria project.
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
This script refreshed an integration daemon.
|
8
|
+
|
9
|
+
"""
|
10
|
+
|
11
|
+
import os
|
12
|
+
import argparse
|
13
|
+
import time
|
14
|
+
import click
|
15
|
+
from trogon import tui
|
16
|
+
from pyegeria import ServerOps, AutomatedCuration
|
17
|
+
from pyegeria._exceptions import (
|
18
|
+
InvalidParameterException,
|
19
|
+
PropertyServerException,
|
20
|
+
UserNotAuthorizedException,
|
21
|
+
print_exception_response,
|
22
|
+
)
|
23
|
+
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
24
|
+
EGERIA_KAFKA_ENDPOINT = os.environ.get('KAFKA_ENDPOINT', 'localhost:9092')
|
25
|
+
EGERIA_PLATFORM_URL = os.environ.get('EGERIA_PLATFORM_URL', 'https://localhost:9443')
|
26
|
+
EGERIA_VIEW_SERVER = os.environ.get('VIEW_SERVER', 'view-server')
|
27
|
+
EGERIA_VIEW_SERVER_URL = os.environ.get('EGERIA_VIEW_SERVER_URL', 'https://localhost:9443')
|
28
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get('INTEGRATION_DAEMON', 'integration-daemon')
|
29
|
+
EGERIA_INTEGRATION_DAEMON_URL = os.environ.get('EGERIA_INTEGRATION_DAEMON_URL', 'https://localhost:9443')
|
30
|
+
EGERIA_ADMIN_USER = os.environ.get('ADMIN_USER', 'garygeeke')
|
31
|
+
EGERIA_ADMIN_PASSWORD = os.environ.get('ADMIN_PASSWORD', 'secret')
|
32
|
+
EGERIA_USER = os.environ.get('EGERIA_USER', 'erinoverview')
|
33
|
+
EGERIA_USER_PASSWORD = os.environ.get('EGERIA_USER_PASSWORD', 'secret')
|
34
|
+
|
35
|
+
@tui()
|
36
|
+
@click.command()
|
37
|
+
@click.option('--file', prompt= "Path to the archive file to load", help='Full path to the archive file to load')
|
38
|
+
@click.option('--server', default = EGERIA_METADATA_STORE, help='Egeria metadata store to load')
|
39
|
+
@click.option('--url', default = EGERIA_PLATFORM_URL, help='URL of Egeria platform to connect to')
|
40
|
+
@click.option('--userid', default = EGERIA_ADMIN_USER, help='Egeria admin user')
|
41
|
+
@click.option('--password', default = EGERIA_ADMIN_PASSWORD, help='Egeria admin password')
|
42
|
+
@click.option('--timeout', default = 60, help = 'Number of seconds to wait')
|
43
|
+
|
44
|
+
def load_archive(file, server, url, userid, password, timeout):
|
45
|
+
|
46
|
+
try:
|
47
|
+
|
48
|
+
s_client = ServerOps(server, url, userid, password)
|
49
|
+
|
50
|
+
s_client.add_archive_file(file, server, timeout = timeout)
|
51
|
+
|
52
|
+
click.echo(f"Loaded archive: {file}")
|
53
|
+
|
54
|
+
|
55
|
+
except (InvalidParameterException, PropertyServerException) as e:
|
56
|
+
print_exception_response(e)
|
57
|
+
|
58
|
+
|
59
|
+
if __name__ == "__main__":
|
60
|
+
load_archive()
|
@@ -15,7 +15,7 @@ import os
|
|
15
15
|
import sys
|
16
16
|
import time
|
17
17
|
from rich import box
|
18
|
-
|
18
|
+
|
19
19
|
from rich.live import Live
|
20
20
|
from rich.table import Table
|
21
21
|
from rich.console import Console
|
@@ -142,16 +142,14 @@ def main_live():
|
|
142
142
|
parser.add_argument("--url", help="URL Platform to connect to")
|
143
143
|
parser.add_argument("--userid", help="User Id")
|
144
144
|
parser.add_argument("--password", help="User Password")
|
145
|
-
|
145
|
+
|
146
146
|
args = parser.parse_args()
|
147
147
|
|
148
148
|
server = args.server if args.server is not None else EGERIA_VIEW_SERVER
|
149
149
|
url = args.url if args.url is not None else EGERIA_PLATFORM_URL
|
150
150
|
userid = args.userid if args.userid is not None else EGERIA_USER
|
151
151
|
user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
|
152
|
-
|
153
|
-
# print(f"Starting display_status_engine_actions with {server}, {url}, {userid}")
|
154
|
-
# print(f"Paging is {paging}")
|
152
|
+
|
155
153
|
display_status_engine_actions(server=server, url=url, user=userid, user_pass=user_pass, paging=False)
|
156
154
|
|
157
155
|
def main_paging():
|
@@ -160,16 +158,14 @@ def main_paging():
|
|
160
158
|
parser.add_argument("--url", help="URL Platform to connect to")
|
161
159
|
parser.add_argument("--userid", help="User Id")
|
162
160
|
parser.add_argument("--password", help="User Password")
|
163
|
-
|
161
|
+
|
164
162
|
args = parser.parse_args()
|
165
163
|
|
166
164
|
server = args.server if args.server is not None else EGERIA_VIEW_SERVER
|
167
165
|
url = args.url if args.url is not None else EGERIA_PLATFORM_URL
|
168
166
|
userid = args.userid if args.userid is not None else EGERIA_USER
|
169
167
|
user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
|
170
|
-
|
171
|
-
# print(f"Starting display_status_engine_actions with {server}, {url}, {userid}")
|
172
|
-
# print(f"Paging is {paging}")
|
168
|
+
|
173
169
|
display_status_engine_actions(server=server, url=url, user=userid, user_pass=user_pass, paging=True)
|
174
170
|
|
175
171
|
if __name__ == "__main_live__":
|
@@ -22,7 +22,8 @@ from pyegeria import (
|
|
22
22
|
from rich.table import Table
|
23
23
|
from rich.live import Live
|
24
24
|
from rich import box
|
25
|
-
from rich import
|
25
|
+
from rich.console import Console
|
26
|
+
|
26
27
|
|
27
28
|
from pyegeria.server_operations import ServerOps
|
28
29
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
@@ -39,7 +40,7 @@ EGERIA_USER_PASSWORD = os.environ.get('EGERIA_USER_PASSWORD', 'secret')
|
|
39
40
|
|
40
41
|
disable_ssl_warnings = True
|
41
42
|
|
42
|
-
def display_gov_actions_status(server: str, url: str, username: str, user_pass:str):
|
43
|
+
def display_gov_actions_status(server: str, url: str, username: str, user_pass:str, paging:bool):
|
43
44
|
server_name = server
|
44
45
|
s_client = ServerOps(server_name, url, username, user_pass)
|
45
46
|
|
@@ -86,10 +87,15 @@ def display_gov_actions_status(server: str, url: str, username: str, user_pass:s
|
|
86
87
|
return table
|
87
88
|
|
88
89
|
try:
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
90
|
+
if paging is True:
|
91
|
+
console = Console()
|
92
|
+
with console.pager():
|
93
|
+
console.print(generate_table())
|
94
|
+
else:
|
95
|
+
with Live(generate_table(), refresh_per_second=1, screen=True, vertical_overflow="visible") as live:
|
96
|
+
while True:
|
97
|
+
time.sleep(2)
|
98
|
+
live.update(generate_table())
|
93
99
|
|
94
100
|
except (InvalidParameterException, PropertyServerException, UserNotAuthorizedException) as e:
|
95
101
|
print_exception_response(e)
|
@@ -99,7 +105,7 @@ def display_gov_actions_status(server: str, url: str, username: str, user_pass:s
|
|
99
105
|
s_client.close_session()
|
100
106
|
|
101
107
|
|
102
|
-
def
|
108
|
+
def main_live():
|
103
109
|
parser = argparse.ArgumentParser()
|
104
110
|
parser.add_argument("--server", help="Name of the server to display status for")
|
105
111
|
parser.add_argument("--url", help="URL Platform to connect to")
|
@@ -111,7 +117,25 @@ def main():
|
|
111
117
|
url = args.url if args.url is not None else EGERIA_PLATFORM_URL
|
112
118
|
userid = args.userid if args.userid is not None else EGERIA_USER
|
113
119
|
user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
|
114
|
-
display_gov_actions_status(server=server, url=url, username=userid, user_pass=user_pass)
|
120
|
+
display_gov_actions_status(server=server, url=url, username=userid, user_pass=user_pass, paging=False)
|
121
|
+
|
122
|
+
def main_paging():
|
123
|
+
parser = argparse.ArgumentParser()
|
124
|
+
parser.add_argument("--server", help="Name of the server to display status for")
|
125
|
+
parser.add_argument("--url", help="URL Platform to connect to")
|
126
|
+
parser.add_argument("--userid", help="User Id")
|
127
|
+
parser.add_argument("--password", help="User Password")
|
128
|
+
args = parser.parse_args()
|
129
|
+
|
130
|
+
server = args.server if args.server is not None else EGERIA_ENGINE_HOST
|
131
|
+
url = args.url if args.url is not None else EGERIA_PLATFORM_URL
|
132
|
+
userid = args.userid if args.userid is not None else EGERIA_USER
|
133
|
+
user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
|
134
|
+
display_gov_actions_status(server=server, url=url, username=userid, user_pass=user_pass, paging=True)
|
135
|
+
|
136
|
+
if __name__ == "__main_live__":
|
137
|
+
main_live()
|
138
|
+
|
115
139
|
|
116
|
-
if __name__ == "
|
117
|
-
|
140
|
+
if __name__ == "__main_paging__":
|
141
|
+
main_paging()
|
@@ -17,6 +17,7 @@ import time
|
|
17
17
|
from datetime import datetime
|
18
18
|
|
19
19
|
from rich import box
|
20
|
+
from rich.console import Console
|
20
21
|
from rich.live import Live
|
21
22
|
from rich.table import Table
|
22
23
|
|
@@ -43,7 +44,7 @@ disable_ssl_warnings = True
|
|
43
44
|
|
44
45
|
|
45
46
|
def display_integration_daemon_status(integ_server: str, integ_url: str,
|
46
|
-
view_server:str, view_url: str, user: str, user_pass:str):
|
47
|
+
view_server:str, view_url: str, user: str, user_pass:str, paging: bool):
|
47
48
|
s_client = ServerOps(integ_server, integ_url, user)
|
48
49
|
a_client = AutomatedCuration(view_server, view_url, user, user_pass)
|
49
50
|
token = a_client.create_egeria_bearer_token()
|
@@ -119,11 +120,16 @@ def display_integration_daemon_status(integ_server: str, integ_url: str,
|
|
119
120
|
return table
|
120
121
|
|
121
122
|
try:
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
123
|
+
if paging is True:
|
124
|
+
console = Console()
|
125
|
+
with console.pager():
|
126
|
+
console.print(generate_table())
|
127
|
+
else:
|
128
|
+
with Live(generate_table(), refresh_per_second=1, screen=True, vertical_overflow="visible") as live:
|
129
|
+
while True:
|
130
|
+
time.sleep(2)
|
131
|
+
live.update(generate_table())
|
132
|
+
|
127
133
|
|
128
134
|
except (InvalidParameterException, PropertyServerException, UserNotAuthorizedException) as e:
|
129
135
|
print_exception_response(e)
|
@@ -134,7 +140,27 @@ def display_integration_daemon_status(integ_server: str, integ_url: str,
|
|
134
140
|
a_client.close_session()
|
135
141
|
|
136
142
|
|
137
|
-
def
|
143
|
+
def main_live():
|
144
|
+
parser = argparse.ArgumentParser()
|
145
|
+
parser.add_argument("--integ_server", help="Name of the integration server to display status for")
|
146
|
+
parser.add_argument("--integ_url", help="URL Platform to connect to")
|
147
|
+
parser.add_argument("--view_server", help="Name of the view server to use")
|
148
|
+
parser.add_argument("--view_url", help="view server URL Platform to connect to")
|
149
|
+
parser.add_argument("--userid", help="User Id")
|
150
|
+
parser.add_argument("--password", help="User Password")
|
151
|
+
args = parser.parse_args()
|
152
|
+
|
153
|
+
integ_server = args.integ_server if args.integ_server is not None else EGERIA_INTEGRATION_DAEMON
|
154
|
+
integ_url = args.integ_url if args.integ_url is not None else EGERIA_INTEGRATION_DAEMON_URL
|
155
|
+
view_server = args.view_server if args.view_server is not None else EGERIA_VIEW_SERVER
|
156
|
+
view_url = args.view_url if args.view_url is not None else EGERIA_VIEW_SERVER_URL
|
157
|
+
userid = args.userid if args.userid is not None else EGERIA_USER
|
158
|
+
user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
|
159
|
+
display_integration_daemon_status(integ_server=integ_server, integ_url=integ_url,
|
160
|
+
view_server = view_server, view_url = view_url,
|
161
|
+
user=userid, user_pass = user_pass, paging = False)
|
162
|
+
|
163
|
+
def main_paging():
|
138
164
|
parser = argparse.ArgumentParser()
|
139
165
|
parser.add_argument("--integ_server", help="Name of the integration server to display status for")
|
140
166
|
parser.add_argument("--integ_url", help="URL Platform to connect to")
|
@@ -152,7 +178,9 @@ def main():
|
|
152
178
|
user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
|
153
179
|
display_integration_daemon_status(integ_server=integ_server, integ_url=integ_url,
|
154
180
|
view_server = view_server, view_url = view_url,
|
155
|
-
user=userid, user_pass = user_pass)
|
181
|
+
user=userid, user_pass = user_pass, paging = True)
|
182
|
+
if __name__ == "__main_live__":
|
183
|
+
main_live()
|
156
184
|
|
157
|
-
if __name__ == "
|
158
|
-
|
185
|
+
if __name__ == "__main_paging__":
|
186
|
+
main_paging()
|
pyegeria/__init__.py
CHANGED
@@ -13,7 +13,6 @@ the server platform and servers.
|
|
13
13
|
|
14
14
|
from ._globals import (is_debug, disable_ssl_warnings, max_paging_size, TEMPLATE_GUIDS, INTEGRATION_GUIDS
|
15
15
|
)
|
16
|
-
from .core_guids import *
|
17
16
|
|
18
17
|
if disable_ssl_warnings:
|
19
18
|
from urllib3.exceptions import InsecureRequestWarning
|
pyegeria/server_operations.py
CHANGED
@@ -86,7 +86,7 @@ class ServerOps(Platform):
|
|
86
86
|
#
|
87
87
|
# Archive Files
|
88
88
|
#
|
89
|
-
async def _async_add_archive_file(self, archive_file: str, server: str = None, timeout: int =
|
89
|
+
async def _async_add_archive_file(self, archive_file: str, server: str = None, timeout: int = 60) -> None:
|
90
90
|
"""
|
91
91
|
Load the server with the contents of the indicated archive file.
|
92
92
|
|
pyegeria/utils.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pyegeria
|
3
|
-
Version: 0.5.6.
|
3
|
+
Version: 0.5.6.5
|
4
4
|
Summary: A python client for Egeria
|
5
5
|
Home-page: https://github.com/odpi/egeria-python
|
6
6
|
License: Apache 2.0
|
@@ -14,12 +14,14 @@ Classifier: Programming Language :: Python
|
|
14
14
|
Classifier: Programming Language :: Python :: 3
|
15
15
|
Classifier: Programming Language :: Python :: 3.11
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
17
|
+
Requires-Dist: click (>=8.1.7,<9.0.0)
|
17
18
|
Requires-Dist: confluent-kafka (>=2.5.0,<3.0.0)
|
18
19
|
Requires-Dist: httpx (>=0.27.0,<0.28.0)
|
19
20
|
Requires-Dist: jupyter (>=1.0.0,<2.0.0)
|
20
21
|
Requires-Dist: pytest (>=8.2.2,<9.0.0)
|
21
22
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
22
23
|
Requires-Dist: rich (>=13.7.1,<14.0.0)
|
24
|
+
Requires-Dist: trogon (>=0.5.0,<0.6.0)
|
23
25
|
Requires-Dist: urllib3 (>=2.2.2,<3.0.0)
|
24
26
|
Requires-Dist: validators (>=0.32.0,<0.33.0)
|
25
27
|
Project-URL: Repository, https://github.com/odpi/egeria-python
|
@@ -20,11 +20,12 @@ examples/widgets/operational/README.md,sha256=PJsSDcvMv6E6og6y-cwvxFX5lhCII0UCwg
|
|
20
20
|
examples/widgets/operational/__init__.py,sha256=8ebdyTD7i-XXyZr0vDx6jnXalE6QjhCvu7n6YXxwgL0,112
|
21
21
|
examples/widgets/operational/get_tech_type_elements.py,sha256=_wSZOShJ17kuMlgh8xC-iAzByi1A0JeB4cmEiAL87M0,5846
|
22
22
|
examples/widgets/operational/get_tech_type_template.py,sha256=qIb-JYcoI_YR7NHUKH7TSdq56QI1H4QuyqWTvldNKNo,5866
|
23
|
+
examples/widgets/operational/load_archive.py,sha256=j9K4uPpUzvqEyvsUMZoY0-1NVuljAwqcMg8Lhin_p1E,2280
|
23
24
|
examples/widgets/operational/monitor_asset_events.py,sha256=u9kNtkdVxOwi1LYYlaKup_fG5b2vJj8zdF74mvEHGek,3686
|
24
25
|
examples/widgets/operational/monitor_coco_status.py,sha256=QloMgVcXL2Fx2XHyk71PKCwmzRfc_Q_cAvpyomcYi_Y,3322
|
25
|
-
examples/widgets/operational/monitor_eng_action_status.py,sha256=
|
26
|
-
examples/widgets/operational/monitor_gov_eng_status.py,sha256=
|
27
|
-
examples/widgets/operational/monitor_integ_daemon_status.py,sha256=
|
26
|
+
examples/widgets/operational/monitor_eng_action_status.py,sha256=ac0idBPvIQclhm0zjv-W4_ZFm47GjuH-qqHGNZWm6TE,6977
|
27
|
+
examples/widgets/operational/monitor_gov_eng_status.py,sha256=b1FBkovNQJ3x9GBEZm3SrbTBYRUUeRgSeuITi0-KPuo,5579
|
28
|
+
examples/widgets/operational/monitor_integ_daemon_status.py,sha256=DbLKMGJSYZEp6Ox-6cjn0_sxTw_6VDSsxs3-vhM7kts,8800
|
28
29
|
examples/widgets/operational/monitor_platform_status.py,sha256=xjTgRIj9JvUWQ5BVAp7qmyS5fSxa6MnfY3SWHsuWx6w,5700
|
29
30
|
examples/widgets/operational/monitor_server_list.py,sha256=nOPeMjUAxMqfv0aq5zZtgkKa5Yqo6wXdC3nImQQNRmI,4317
|
30
31
|
examples/widgets/operational/monitor_server_status.py,sha256=rjVMacuwTLwKZ_bmZ_2TkyZTY2QpiMRZM3MCX3ERHMc,4016
|
@@ -38,7 +39,7 @@ examples/widgets/personal_organizer/monitor_my_todos.py,sha256=oIWmIObQSOizGE0Z-
|
|
38
39
|
examples/widgets/personal_organizer/monitor_open_todos.py,sha256=TLXpRpkJrTxz87_2KHZDlPbJNWXGO4wRouSQM9pVuw4,5093
|
39
40
|
pyegeria/Xfeedback_manager_omvs.py,sha256=uNQMOPG08UyIuLzBfYt4uezDyLWdpBgJ2ZuvqumaWuY,9231
|
40
41
|
pyegeria/Xloaded_resources_omvs.py,sha256=cseWZTIwNhkzhZ0fhujI66DslNAQcjuwsz_p1GRmSPQ,3392
|
41
|
-
pyegeria/__init__.py,sha256=
|
42
|
+
pyegeria/__init__.py,sha256=ZtYdj0GqdobIb16MsJwvBHVeNrc0yhcMdLLiqSy-DjY,6913
|
42
43
|
pyegeria/_client.py,sha256=mTK3qqaxwrwn4OiIKZkSkMVEsHPJsHxKmfz1LK_FgEg,26308
|
43
44
|
pyegeria/_deprecated_gov_engine.py,sha256=_DAEHsksnTKGqL9-TaaMVrfnNOrvatNACfg7pJ-ZX4w,17600
|
44
45
|
pyegeria/_exceptions.py,sha256=NJ7vAhmvusK1ENvY2MMrBB6A6TgpYjzS9QJxFH56b8c,18470
|
@@ -48,7 +49,6 @@ pyegeria/action_author_omvs.py,sha256=m0wsfmyO-VxRDaPpACeIDw8eVAFu3RVbo45RPCUel9
|
|
48
49
|
pyegeria/asset_catalog_omvs.py,sha256=oQ8ThJOiIXfgmlT6I9RwxvBDCpkK0EZGcACJNatzzlQ,25900
|
49
50
|
pyegeria/automated_curation_omvs.py,sha256=7mBOXnq06zf1TB3vzo2FPUw2GRLZKKYT2MDQkPxDokk,121332
|
50
51
|
pyegeria/collection_manager_omvs.py,sha256=IyGCbqx2Blm0OwCsC2071EeoNWHXyWGl_6pEtacizAs,112642
|
51
|
-
pyegeria/core_guids.py,sha256=JKziCsKhklbWRramQ0orRMNTudJXYB721a32TJegBl4,4320
|
52
52
|
pyegeria/core_omag_server_config.py,sha256=16ld7aBTgO3gGhvFs-_yzwqPsatdCAiKYi005_2evZU,93096
|
53
53
|
pyegeria/create_tech_guid_lists.py,sha256=7BT02Nt7Vo4O71UelHtFx90-JJR4gIbCMAwAvdHCQ2I,3340
|
54
54
|
pyegeria/full_omag_server_config.py,sha256=l4G0oM6l-axosYACypqNqzkF6wELzs9FgKJwvDMF0Fc,45817
|
@@ -59,11 +59,11 @@ pyegeria/platform_services.py,sha256=T2UiAl7tPfOBGL_H2b73XyyHtR0Y36irgbaljZTjD4I
|
|
59
59
|
pyegeria/project_manager_omvs.py,sha256=_U6m2vquu4eEV7aY8X3hsvfm2zX0EBica1reGWX9amY,77078
|
60
60
|
pyegeria/registered_info.py,sha256=GfMcYz3IO0aNquf8qCrYQ9cA5KplhPx1kNt0_nMMpTM,6475
|
61
61
|
pyegeria/runtime_manager_omvs.py,sha256=WekK7Yeyn6Qu9YmbSDo3m57MN0xOsIm9M8kGHfROZHI,37628
|
62
|
-
pyegeria/server_operations.py,sha256=
|
63
|
-
pyegeria/utils.py,sha256=
|
62
|
+
pyegeria/server_operations.py,sha256=ZX7FlJRrAC7RK4bq4wHWepEsYbbWlqkUZdsJrTplVVU,16534
|
63
|
+
pyegeria/utils.py,sha256=pkVmS3RrbjaS9yz7FtOCwaOfV5FMqz-__Rt5koCnd9c,5374
|
64
64
|
pyegeria/valid_metadata_omvs.py,sha256=aisdRodIwJSkyArAzfm_sEnBELh69xE8k4Nea-vHu8M,36745
|
65
|
-
pyegeria-0.5.6.
|
66
|
-
pyegeria-0.5.6.
|
67
|
-
pyegeria-0.5.6.
|
68
|
-
pyegeria-0.5.6.
|
69
|
-
pyegeria-0.5.6.
|
65
|
+
pyegeria-0.5.6.5.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
66
|
+
pyegeria-0.5.6.5.dist-info/METADATA,sha256=fDsLqXXBRJwGi1sfryNKIIigSKmtYn-XaxJD5SblgOU,2688
|
67
|
+
pyegeria-0.5.6.5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
68
|
+
pyegeria-0.5.6.5.dist-info/entry_points.txt,sha256=IQjFPmR0n2MjqUOezL-YCUDJsz3hnvuOuX1a3FyjX28,2516
|
69
|
+
pyegeria-0.5.6.5.dist-info/RECORD,,
|
@@ -9,6 +9,8 @@ list_asset_types=examples.widgets.developer.list_asset_types:main
|
|
9
9
|
list_assets=examples.widgets.catalog_user.list_assets:main
|
10
10
|
list_eng_action_status=examples.widgets.operational.monitor_eng_action_status:main_paging
|
11
11
|
list_glossary=examples.widgets.catalog_user.list_glossary:main
|
12
|
+
list_gov_eng_status=examples.widgets.operational.monitor_gov_eng_status:main_paging
|
13
|
+
list_integ_daemon_status=examples.widgets.operational.monitor_integ_daemon_status:main_paging
|
12
14
|
list_my_profile=examples.widgets.personal_organizer.list_my_profile:main
|
13
15
|
list_projects=examples.widgets.personal_organizer.list_projects:main
|
14
16
|
list_registered_services=examples.widgets.developer.list_registered_services:main
|
@@ -17,11 +19,13 @@ list_tech_templates=examples.widgets.developer.list_tech_templates:main
|
|
17
19
|
list_tech_types=examples.widgets.developer.list_tech_types:main
|
18
20
|
list_todos=examples.widgets.personal_organizer.list_todos:main
|
19
21
|
list_valid_metadata_values=examples.widgets.developer.list_valid_metadata_values:main
|
22
|
+
load_archive=examples.widgets.operational.load_archive.py:load_archive
|
23
|
+
load_archive_tui=examples.widgets.operational.load_archive.py:tui
|
20
24
|
monitor_asset_events=examples.widgets.operational.monitor_asset_events:main
|
21
25
|
monitor_coco_status=examples.widgets.operational.monitor_coco_status:main
|
22
26
|
monitor_eng_action_status=examples.widgets.operational.monitor_eng_action_status:main_live
|
23
|
-
monitor_gov_eng_status=examples.widgets.operational.monitor_gov_eng_status:
|
24
|
-
monitor_integ_daemon_status=examples.widgets.operational.monitor_integ_daemon_status:
|
27
|
+
monitor_gov_eng_status=examples.widgets.operational.monitor_gov_eng_status:main_live
|
28
|
+
monitor_integ_daemon_status=examples.widgets.operational.monitor_integ_daemon_status:main_live
|
25
29
|
monitor_my_todos=examples.widgets.personal_organizer.monitor_my_todos:main
|
26
30
|
monitor_open_todos=examples.widgets.personal_organizer.monitor_open_todos:main
|
27
31
|
monitor_platform_status=examples.widgets.operational.monitor_platform_status:main
|
pyegeria/core_guids.py
DELETED
@@ -1,127 +0,0 @@
|
|
1
|
-
"""
|
2
|
-
SPDX-License-Identifier: Apache-2.0
|
3
|
-
Copyright Contributors to the ODPi Egeria project.
|
4
|
-
|
5
|
-
Useful from core content archive
|
6
|
-
"""
|
7
|
-
|
8
|
-
#
|
9
|
-
# Template guids
|
10
|
-
#
|
11
|
-
|
12
|
-
CSV_DATA_FILE_TEMPLATE_GUID = '13770f93-13c8-42be-9bb8-e0b1b1e52b1f'
|
13
|
-
|
14
|
-
KEYSTORE_FILE_TEMPLATE_GUID = 'fbcfcc0c-1652-421f-b49b-c3e1c108768f'
|
15
|
-
|
16
|
-
OSS_UNITY_CATALOG_FUNCTION_TEMPLATE_GUID = '5b72bd18-665d-4696-8ebb-f6d0885312e2'
|
17
|
-
|
18
|
-
DATA_FILE_TEMPLATE_GUID = '66d8dda9-00cf-4e59-938c-4b0583596b1e'
|
19
|
-
|
20
|
-
VIEW_SERVER_TEMPLATE_GUID = 'fd61ca01-390d-4aa2-a55d-426826aa4e1b'
|
21
|
-
|
22
|
-
ARCHIVE_FILE_TEMPLATE_GUID = '7578e504-d00f-406d-a194-3fc0a351cdf9'
|
23
|
-
|
24
|
-
POSTGRESQL_RELATIONAL_DATABASE_TEMPLATE_GUID = '3d398b3f-7ae6-4713-952a-409f3dea8520'
|
25
|
-
|
26
|
-
OSS_UNITY_CATALOG_VOLUME_TEMPLATE_GUID = 'dfc0c928-0db3-4eb4-a1f0-0760dab168c5'
|
27
|
-
|
28
|
-
PROGRAM_FILE_TEMPLATE_GUID = '32d27e9c-1fdf-455a-ad2a-42b4d7d99108'
|
29
|
-
|
30
|
-
FILEFOLDER_TEMPLATE_GUID = 'fbdd8efd-1b69-474c-bb6d-0a304b394146'
|
31
|
-
|
32
|
-
OSS_UNITY_CATALOG_CATALOG_TEMPLATE_GUID = 'f7b05a3e-913c-497d-96f5-acdeb2ec897e'
|
33
|
-
|
34
|
-
POSTGRESQL_SERVER_TEMPLATE_GUID = '542134e6-b9ce-4dce-8aef-22e8daf34fdb'
|
35
|
-
|
36
|
-
AUDIO_DATA_FILE_TEMPLATE_GUID = '39b4b670-7f15-4744-a5ba-62e8edafbcee'
|
37
|
-
|
38
|
-
DOCUMENT_FILE_TEMPLATE_GUID = 'eb6f728d-fa54-4350-9807-1199cbf96851'
|
39
|
-
|
40
|
-
INTEGRATION_DAEMON_TEMPLATE_GUID = '6b3516f0-dd13-4786-9601-07215f995197'
|
41
|
-
|
42
|
-
XML_DATA_FILE_TEMPLATE_GUID = 'ea67ae71-c674-473e-b38b-689879d2a7d9'
|
43
|
-
|
44
|
-
PARQUET_DATA_FILE_TEMPLATE_GUID = '7f6cd744-79c3-4d25-a056-eeb1a91574c3'
|
45
|
-
|
46
|
-
THREED_IMAGE_DATA_FILE_TEMPLATE_GUID = '0059ea2b-6292-4cac-aa6f-a80a605f1114'
|
47
|
-
|
48
|
-
YAML_FILE_TEMPLATE_GUID = '2221855b-2b64-4b45-a2ee-c40adc5e2a64'
|
49
|
-
|
50
|
-
METADATA_ACCESS_SERVER_TEMPLATE_GUID = 'bd8de890-fa79-4c24-aab8-20b41b5893dd'
|
51
|
-
|
52
|
-
PROPERTIES_FILE_TEMPLATE_GUID = '3b281111-a0ef-4fc4-99e7-9a0ef84a7636'
|
53
|
-
|
54
|
-
VECTOR_DATA_FILE_TEMPLATE_GUID = 'db1bec7f-55a9-40d3-91c0-a57b76d422e2'
|
55
|
-
|
56
|
-
APACHE_KAFKA_SERVER_TEMPLATE_GUID = '5e1ff810-5418-43f7-b7c4-e6e062f9aff7'
|
57
|
-
|
58
|
-
OSS_UNITY_CATALOG_SCHEMA_TEMPLATE_GUID = 'd68f5aa3-152e-40fa-8c16-e73db8d925d6'
|
59
|
-
|
60
|
-
EXECUTABLE_FILE_TEMPLATE_GUID = '3d99a163-7a13-4576-a212-784010a8302a'
|
61
|
-
|
62
|
-
JSON_DATA_FILE_TEMPLATE_GUID = 'c4836635-7e9e-446a-83b5-15e206b1aff3'
|
63
|
-
|
64
|
-
FILE_SYSTEM_TEMPLATE_GUID = '522f228c-097c-4f90-9efc-26c1f2696f87'
|
65
|
-
|
66
|
-
SOURCE_CODE_FILE_TEMPLATE_GUID = '9c7013ef-f29b-4b01-a8ea-5ea14f64c67a'
|
67
|
-
|
68
|
-
OSS_UNITY_CATALOG_SERVER_TEMPLATE_GUID = '1077a346-7a50-4cb0-a795-b219bafaabf6'
|
69
|
-
|
70
|
-
APPLE_MACBOOK_PRO_TEMPLATE_GUID = '32a9fd56-85c9-47fe-a211-9da3871bf4da'
|
71
|
-
|
72
|
-
OSS_UNITY_CATALOG_TABLE_TEMPLATE_GUID = 'cb34184b-d6a9-4a27-9fd2-ea4c78978f9f'
|
73
|
-
|
74
|
-
BUILD_INSTRUCTION_FILE_TEMPLATE_GUID = 'fbb2fa2e-8bcb-402e-9be7-5c6db9f2c504'
|
75
|
-
|
76
|
-
SPREADSHEET_DATA_FILE_TEMPLATE_GUID = 'e4fabff5-2ba9-4050-9076-6ed917970b4c'
|
77
|
-
|
78
|
-
UNIX_FILE_SYSTEM_TEMPLATE_GUID = '27117270-8667-41d0-a99a-9118f9b60199'
|
79
|
-
|
80
|
-
VIDEO_DATA_FILE_TEMPLATE_GUID = '93b2b722-ec0f-4da4-960a-b8d4922f8bf5'
|
81
|
-
|
82
|
-
POSTGRESQL_RELATIONAL_DATABASE_SCHEMA_TEMPLATE_GUID = '82a5417c-d882-4271-8444-4c6a996a8bfc'
|
83
|
-
|
84
|
-
ENGINE_HOST_TEMPLATE_GUID = '1764a891-4234-45f1-8cc3-536af40c790d'
|
85
|
-
|
86
|
-
AVRO_DATA_FILE_TEMPLATE_GUID = '9f5be428-058e-41dd-b506-3a222283b579'
|
87
|
-
|
88
|
-
FILE_TEMPLATE_GUID = 'ae3067c7-cc72-4a18-88e1-746803c2c86f'
|
89
|
-
|
90
|
-
APACHE_KAFKA_TOPIC_TEMPLATE_GUID = 'ea8f81c9-c59c-47de-9525-7cc59d1251e5'
|
91
|
-
|
92
|
-
SCRIPT_FILE_TEMPLATE_GUID = 'dbd5e6bb-1ff8-46f4-a007-fb0485f68c92'
|
93
|
-
|
94
|
-
APACHE_ATLAS_SERVER_TEMPLATE_GUID = 'fe6dce45-a978-4417-ab55-17f05b8bcea7'
|
95
|
-
|
96
|
-
RASTER_DATA_FILE_TEMPLATE_GUID = '47211156-f03f-4881-8526-015e695a3dac'
|
97
|
-
|
98
|
-
DATA_FOLDER_TEMPLATE_GUID = '372a0379-7060-4c9d-8d84-bc709b31794c'
|
99
|
-
|
100
|
-
OMAG_SERVER_PLATFORM_TEMPLATE_GUID = '9b06c4dc-ddc8-47ae-b56b-28775d3a96f0'
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
#
|
105
|
-
# Integration Connector GUIDS
|
106
|
-
#
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
JDBC_RELATIONAL_DATABASE_Integration_Connector_GUID = '70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa'
|
111
|
-
|
112
|
-
POSTGRESQL_RELATIONAL_DATABASE_Integration_Connector_GUID = '70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa'
|
113
|
-
|
114
|
-
FILEFOLDER_Integration_Connector_GUID = '1b98cdac-dd0a-4621-93db-99ef5a1098bc'
|
115
|
-
|
116
|
-
FILEFOLDER_Integration_Connector_GUID = 'cd6479e1-2fe7-4426-b358-8a0cf70be117'
|
117
|
-
|
118
|
-
OSS_UNITY_CATALOG_CATALOG_Integration_Connector_GUID = '74dde22f-2249-4ea3-af2b-b39e73f79b81'
|
119
|
-
|
120
|
-
POSTGRESQL_SERVER_Integration_Connector_GUID = '36f69fd0-54ba-4f59-8a44-11ccf2687a34'
|
121
|
-
|
122
|
-
APACHE_KAFKA_SERVER_Integration_Connector_GUID = 'fa1f711c-0b34-4b57-8e6e-16162b132b0c'
|
123
|
-
|
124
|
-
SOFTWARE_SERVER_Integration_Connector_GUID = 'b89d9a5a-2ea6-49bc-a4fc-e7df9f3ca93e'
|
125
|
-
|
126
|
-
OSS_UNITY_CATALOG_SERVER_Integration_Connector_GUID = '06d068d9-9e08-4e67-8c59-073bbf1013af'
|
127
|
-
|
File without changes
|
File without changes
|