pyegeria 0.5.8.26__py3-none-any.whl → 0.5.9.1__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/catalog_user/get_asset_graph.py +9 -10
- examples/widgets/catalog_user/list_assets.py +10 -7
- examples/widgets/cli/egeria_my.py +3 -2
- examples/widgets/cli/egeria_ops.py +2 -2
- examples/widgets/cli/egeria_tech.py +17 -6
- examples/widgets/operational/monitor_platform_status.py +20 -15
- examples/widgets/tech/list_tech_templates.py +2 -2
- pyegeria/collection_manager_omvs.py +1 -1
- pyegeria/runtime_manager_omvs.py +14 -14
- {pyegeria-0.5.8.26.dist-info → pyegeria-0.5.9.1.dist-info}/METADATA +1 -1
- {pyegeria-0.5.8.26.dist-info → pyegeria-0.5.9.1.dist-info}/RECORD +14 -14
- {pyegeria-0.5.8.26.dist-info → pyegeria-0.5.9.1.dist-info}/LICENSE +0 -0
- {pyegeria-0.5.8.26.dist-info → pyegeria-0.5.9.1.dist-info}/WHEEL +0 -0
- {pyegeria-0.5.8.26.dist-info → pyegeria-0.5.9.1.dist-info}/entry_points.txt +0 -0
@@ -91,7 +91,6 @@ def asset_viewer(asset_guid: str, server_name: str, platform_url: str, user: str
|
|
91
91
|
return output
|
92
92
|
|
93
93
|
try:
|
94
|
-
|
95
94
|
a_client = AssetCatalog(server_name, platform_url,
|
96
95
|
user_id=user)
|
97
96
|
|
@@ -112,20 +111,20 @@ def asset_viewer(asset_guid: str, server_name: str, platform_url: str, user: str
|
|
112
111
|
|
113
112
|
# print(f"\n{json.dumps(asset_graph, indent =2)}\n")
|
114
113
|
|
115
|
-
asset_name = asset_graph["displayName"
|
116
|
-
qualified_name = asset_graph["qualifiedName"]
|
117
|
-
resource_name = asset_graph["resourceName"
|
114
|
+
asset_name = asset_graph["properties"].get("displayName",'---')
|
115
|
+
qualified_name = asset_graph["properties"]["qualifiedName"]
|
116
|
+
resource_name = asset_graph['properties'].get("resourceName","---")
|
118
117
|
|
119
118
|
tree = Tree(f"{asset_name} ({asset_guid})", style="bold bright_white on black", guide_style="bold bright_blue")
|
120
119
|
style = ""
|
121
|
-
|
122
|
-
asset_type =
|
120
|
+
asset_elements = asset_graph['elementHeader']
|
121
|
+
asset_type = asset_elements["type"]["typeName"]
|
123
122
|
asset_deployed_imp_type = asset_graph.get("deployedImplementationType", "---")
|
124
123
|
|
125
|
-
asset_origin =
|
126
|
-
asset_creation =
|
127
|
-
asset_created_by =
|
128
|
-
asset_classifications =
|
124
|
+
asset_origin = asset_elements["origin"]["homeMetadataCollectionName"]
|
125
|
+
asset_creation = asset_elements["versions"]["createTime"]
|
126
|
+
asset_created_by = asset_elements["versions"]["createdBy"]
|
127
|
+
asset_classifications = asset_elements["classifications"]
|
129
128
|
asset_nested_elements = asset_graph.get("anchoredElements", "----")
|
130
129
|
asset_relationships = asset_graph["relationships"]
|
131
130
|
asset_class_md = build_classifications(asset_classifications)
|
@@ -80,18 +80,21 @@ def display_assets(search_string: str, server: str, url: str, username: str, use
|
|
80
80
|
return table
|
81
81
|
|
82
82
|
for element in assets:
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
83
|
+
properties = element['properties']
|
84
|
+
header = element['elementHeader']
|
85
|
+
nested = element.get('matchingElements','---')
|
86
|
+
|
87
|
+
display_name = properties.get("displayName",'---')
|
88
|
+
# qualified_name = properties["qualifiedName"] # we decided that qualified name wasn't useful
|
89
|
+
type_name = header["type"]["typeName"]
|
90
|
+
tech_type = properties.get("deployedImplementationType",'---')
|
91
|
+
guid = header["guid"]
|
88
92
|
#### We decided that path wasn't useful
|
89
93
|
# path_name = element.get("extendedProperties", None)
|
90
94
|
# if path_name:
|
91
95
|
# path = path_name.get("pathName"," ")
|
92
96
|
# else:
|
93
97
|
# path = " "
|
94
|
-
matches = element['matchingElements']
|
95
98
|
match_md = ""
|
96
99
|
|
97
100
|
match_tab = Table(expand=True)
|
@@ -99,7 +102,7 @@ def display_assets(search_string: str, server: str, url: str, username: str, use
|
|
99
102
|
match_tab.add_column("GUID", no_wrap=True, width=36)
|
100
103
|
match_tab.add_column("Properties")
|
101
104
|
|
102
|
-
for match in
|
105
|
+
for match in nested:
|
103
106
|
match_type_name = match['type']['typeName']
|
104
107
|
matching_guid = match['guid']
|
105
108
|
match_props = match['properties']
|
@@ -33,9 +33,10 @@ from examples.widgets.personal.list_my_profile import display_my_profiles
|
|
33
33
|
#
|
34
34
|
# pass_config = click.make_pass_decorator(Config)
|
35
35
|
|
36
|
-
|
37
|
-
@tui('menu', 'menu', 'A textual command line interface')
|
36
|
+
@tui()
|
37
|
+
# @tui('menu', 'menu', 'A textual command line interface')
|
38
38
|
@click.version_option("0.0.1", prog_name="egeria_ops")
|
39
|
+
|
39
40
|
@click.group()
|
40
41
|
@click.option('--server', default='active-metadata-store', envvar='EGERIA_METADATA_STORE',
|
41
42
|
help='Egeria metadata store to work with')
|
@@ -43,8 +43,8 @@ from examples.widgets.operational.restart_integration_daemon import restart_conn
|
|
43
43
|
#
|
44
44
|
# pass_config = click.make_pass_decorator(Config)
|
45
45
|
|
46
|
-
|
47
|
-
@tui('menu', 'menu', 'A textual command line interface')
|
46
|
+
@tui()
|
47
|
+
# @tui('menu', 'menu', 'A textual command line interface')
|
48
48
|
@click.version_option("0.0.1", prog_name="egeria_ops")
|
49
49
|
@click.group()
|
50
50
|
@click.option('--server', default='active-metadata-store', envvar='EGERIA_METADATA_STORE',
|
@@ -19,8 +19,9 @@ from examples.widgets.tech.get_tech_details import tech_details_viewer
|
|
19
19
|
from examples.widgets.tech.list_asset_types import display_asset_types
|
20
20
|
from examples.widgets.tech.list_registered_services import display_registered_svcs
|
21
21
|
from examples.widgets.tech.list_relationship_types import display_relationship_types
|
22
|
-
from examples.widgets.tech.list_tech_templates import
|
22
|
+
from examples.widgets.tech.list_tech_templates import display_templates_spec
|
23
23
|
from examples.widgets.tech.list_valid_metadata_values import display_metadata_values
|
24
|
+
from examples.widgets.catalog_user.get_tech_type_template import template_viewer
|
24
25
|
|
25
26
|
|
26
27
|
# from pyegeria import ServerOps
|
@@ -40,7 +41,8 @@ from examples.widgets.tech.list_valid_metadata_values import display_metadata_va
|
|
40
41
|
# pass_config = click.make_pass_decorator(Config)
|
41
42
|
|
42
43
|
# @tui
|
43
|
-
@tui('menu', 'menu', 'A textual command line interface')
|
44
|
+
# @tui('menu', 'menu', 'A textual command line interface')
|
45
|
+
@tui()
|
44
46
|
@click.version_option("0.0.1", prog_name="egeria_ops")
|
45
47
|
@click.group()
|
46
48
|
@click.option('--server', default='active-metadata-store', envvar='EGERIA_METADATA_STORE',
|
@@ -176,10 +178,19 @@ def show_relationship_types(ctx, rel_type):
|
|
176
178
|
@show.command("tech-templates")
|
177
179
|
@click.pass_context
|
178
180
|
@click.option('--search-string', default='*', help='Technology type to get information about')
|
179
|
-
def
|
180
|
-
"""Display template information about the specified
|
181
|
+
def tech_templates(ctx, search_string):
|
182
|
+
"""Display template information about the specified technology."""
|
181
183
|
c = ctx.obj
|
182
|
-
|
184
|
+
template_viewer(search_string, c.view_server, c.view_server_url,
|
185
|
+
c.userid, c.password, c.jupyter, c.width)
|
186
|
+
|
187
|
+
@show.command("tech-template-spec")
|
188
|
+
@click.pass_context
|
189
|
+
@click.option('--search-string', default='*', help='Technology type to get information about')
|
190
|
+
def tech_template_spec(ctx, search_string):
|
191
|
+
"""Display template specification information about the specified technology."""
|
192
|
+
c = ctx.obj
|
193
|
+
display_templates_spec(search_string, c.view_server, c.view_server_url,
|
183
194
|
c.userid, c.password, c.jupyter, c.width)
|
184
195
|
|
185
196
|
|
@@ -187,7 +198,7 @@ def integrations_status(ctx, search_string):
|
|
187
198
|
@click.pass_context
|
188
199
|
@click.option('--property', default='projectHealth', help='Metadata property to query')
|
189
200
|
@click.option('--type-name', default='Project', help='Metadata type to query')
|
190
|
-
def
|
201
|
+
def valid_metadata_values(ctx, property, type_name):
|
191
202
|
"""Display the valid metadata values for a property and type"""
|
192
203
|
c = ctx.obj
|
193
204
|
display_metadata_values(property, type_name, c.view_server, c.view_server_url,
|
@@ -7,7 +7,7 @@ Display the status of cataloged platforms and servers.
|
|
7
7
|
"""
|
8
8
|
|
9
9
|
import argparse
|
10
|
-
import os
|
10
|
+
import os, sys
|
11
11
|
import time
|
12
12
|
|
13
13
|
from rich.console import Console
|
@@ -72,14 +72,18 @@ def display_status(server: str, url: str, username: str, user_pass: str, jupyter
|
|
72
72
|
"Engine Host Server": "EngineHost",
|
73
73
|
"Integration Daemon": "Integration"
|
74
74
|
}
|
75
|
+
try:
|
76
|
+
platform_list = r_client.get_platforms_by_type()
|
77
|
+
if type(platform_list) is str:
|
78
|
+
print("No OMAG Server Platforms found?")
|
79
|
+
sys.exit(1)
|
80
|
+
|
81
|
+
for platform in platform_list:
|
82
|
+
platform_name = platform['properties'].get("displayName", '---')
|
83
|
+
platform_guid = platform['elementHeader']["guid"]
|
84
|
+
platform_desc = platform['properties'].get("resourceDescription",'---')
|
85
|
+
server_list = ""
|
75
86
|
|
76
|
-
platform_list = r_client.get_platforms_by_type()
|
77
|
-
for platform in platform_list:
|
78
|
-
platform_name = platform['properties']["name"]
|
79
|
-
platform_guid = platform['elementHeader']["guid"]
|
80
|
-
platform_desc = platform['properties']["description"]
|
81
|
-
server_list = ""
|
82
|
-
try:
|
83
87
|
platform_report = r_client.get_platform_report(platform_guid)
|
84
88
|
platform_url = platform_report.get('platformURLRoot', " ")
|
85
89
|
platform_origin = platform_report.get("platformOrigin", " ")
|
@@ -103,13 +107,14 @@ def display_status(server: str, url: str, username: str, user_pass: str, jupyter
|
|
103
107
|
serv = f"{status_flag}{server_types[server_type]}: {server_name}\n"
|
104
108
|
server_list = server_list + serv
|
105
109
|
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
110
|
+
table.add_row(platform_name, platform_url, platform_origin, platform_desc,
|
111
|
+
platform_started, server_list, style="bold white on black")
|
112
|
+
|
113
|
+
except (Exception) as e:
|
114
|
+
# console.print_exception(e)
|
115
|
+
platform_url = " "
|
116
|
+
platform_origin = " "
|
117
|
+
platform_started = " "
|
113
118
|
|
114
119
|
return table
|
115
120
|
|
@@ -36,7 +36,7 @@ EGERIA_WIDTH = int(os.environ.get('EGERIA_WIDTH', '200'))
|
|
36
36
|
|
37
37
|
|
38
38
|
|
39
|
-
def
|
39
|
+
def display_templates_spec(search_string:str, server: str,
|
40
40
|
url: str, username: str, password: str, jupyter:bool=EGERIA_JUPYTER, width:int = EGERIA_WIDTH
|
41
41
|
):
|
42
42
|
|
@@ -141,7 +141,7 @@ def main():
|
|
141
141
|
|
142
142
|
try:
|
143
143
|
search_string = Prompt.ask("Enter the technology you are searching for:", default="*")
|
144
|
-
|
144
|
+
display_templates_spec(search_string, server, url, userid, password)
|
145
145
|
except(KeyboardInterrupt):
|
146
146
|
pass
|
147
147
|
|
@@ -2328,7 +2328,7 @@ class CollectionManager(Client):
|
|
2328
2328
|
return False
|
2329
2329
|
# finally, construct a list of member information
|
2330
2330
|
for member_rel in members:
|
2331
|
-
member_guid = member_rel['
|
2331
|
+
member_guid = member_rel['elementHeader']['guid']
|
2332
2332
|
member_resp = await self._async_get_collection(member_guid)
|
2333
2333
|
member = member_resp['element']
|
2334
2334
|
# print(json.dumps(member, indent = 4))
|
pyegeria/runtime_manager_omvs.py
CHANGED
@@ -198,7 +198,7 @@ class RuntimeManager(Client):
|
|
198
198
|
}
|
199
199
|
|
200
200
|
response = await self._async_make_request("POST", url, body)
|
201
|
-
return response.json().get('
|
201
|
+
return response.json().get('elements','No platforms found')
|
202
202
|
|
203
203
|
def get_platforms_by_type(self, filter: str = None, server:str = None, effective_time: str = None,
|
204
204
|
start_from: int = 0, page_size: int = max_paging_size ) -> str | list:
|
@@ -293,7 +293,7 @@ class RuntimeManager(Client):
|
|
293
293
|
}
|
294
294
|
|
295
295
|
response = await self._async_make_request("POST", url, body)
|
296
|
-
return response.json().get('
|
296
|
+
return response.json().get('elements','No platforms found')
|
297
297
|
|
298
298
|
|
299
299
|
def get_platform_templates_by_type(self, filter: str = None, server:str = None, effective_time: str = None,
|
@@ -438,7 +438,7 @@ class RuntimeManager(Client):
|
|
438
438
|
else:
|
439
439
|
response = await self._async_make_request("POST", url)
|
440
440
|
|
441
|
-
return response.json().get('
|
441
|
+
return response.json().get('elements','No platforms found')
|
442
442
|
|
443
443
|
def get_platform_by_guid(self, platform_guid: str = None, server: str = None,
|
444
444
|
effective_time: str = None) -> str | list:
|
@@ -506,7 +506,7 @@ class RuntimeManager(Client):
|
|
506
506
|
if server is None:
|
507
507
|
server = self.server_name
|
508
508
|
|
509
|
-
url = (f"{self.platform_url}/servers/{server}/api/open-metadata/runtime-manager/servers/{server_guid}")
|
509
|
+
url = (f"{self.platform_url}/servers/{server}/api/open-metadata/runtime-manager/software-servers/{server_guid}")
|
510
510
|
|
511
511
|
if effective_time is not None:
|
512
512
|
body = {
|
@@ -517,7 +517,7 @@ class RuntimeManager(Client):
|
|
517
517
|
else:
|
518
518
|
response = await self._async_make_request("POST", url)
|
519
519
|
|
520
|
-
return response.json().get('
|
520
|
+
return response.json().get('elements','No server found')
|
521
521
|
|
522
522
|
def get_server_by_guid(self, server_guid: str, server: str = None,
|
523
523
|
effective_time: str = None) -> str | dict:
|
@@ -585,7 +585,7 @@ class RuntimeManager(Client):
|
|
585
585
|
if server is None:
|
586
586
|
server = self.server_name
|
587
587
|
|
588
|
-
url = (f"{self.platform_url}/servers/{server}/api/open-metadata/runtime-manager/servers/by-name?"
|
588
|
+
url = (f"{self.platform_url}/servers/{server}/api/open-metadata/runtime-manager/software-servers/by-name?"
|
589
589
|
f"startFrom={start_from}&pageSize={page_size}")
|
590
590
|
|
591
591
|
if effective_time is None:
|
@@ -599,7 +599,7 @@ class RuntimeManager(Client):
|
|
599
599
|
}
|
600
600
|
response = await self._async_make_request("POST", url, body)
|
601
601
|
|
602
|
-
return response.json().get('
|
602
|
+
return response.json().get('elements','No platforms found')
|
603
603
|
|
604
604
|
def get_servers_by_name(self, filter: str, server: str = None) -> str | list:
|
605
605
|
""" Returns the list of servers with a particular name. The name is specified in the filter.
|
@@ -678,14 +678,14 @@ class RuntimeManager(Client):
|
|
678
678
|
if filter == '*':
|
679
679
|
filter = None
|
680
680
|
|
681
|
-
url = (f"{self.platform_url}/servers/{server}/api/open-metadata/runtime-manager/servers/"
|
681
|
+
url = (f"{self.platform_url}/servers/{server}/api/open-metadata/runtime-manager/software-servers/"
|
682
682
|
f"by-deployed-implementation-type?startFrom={start_from}&pageSize={page_size}")
|
683
683
|
|
684
684
|
body = body_slimmer({ "filter": filter, "effective_time": effective_time})
|
685
685
|
|
686
686
|
response = await self._async_make_request("POST", url, body)
|
687
687
|
|
688
|
-
return response.json().get('
|
688
|
+
return response.json().get('elements','No platforms found')
|
689
689
|
|
690
690
|
def get_servers_by_dep_impl_type(self, filter: str = "*", server:str = None, effective_time: str = None,
|
691
691
|
start_from: int = 0, page_size: int = max_paging_size ) -> str | list:
|
@@ -768,14 +768,14 @@ class RuntimeManager(Client):
|
|
768
768
|
if filter == '*':
|
769
769
|
filter = None
|
770
770
|
|
771
|
-
url = (f"{self.platform_url}/servers/{server}/api/open-metadata/runtime-manager/servers/"
|
771
|
+
url = (f"{self.platform_url}/servers/{server}/api/open-metadata/runtime-manager/software-servers/"
|
772
772
|
f"by-deployed-implementation-type?startFrom={start_from}&pageSize={page_size}&getTemplates=true")
|
773
773
|
|
774
774
|
body = body_slimmer({ "filter": filter, "effective_time": effective_time})
|
775
775
|
|
776
776
|
response = await self._async_make_request("POST", url, body)
|
777
777
|
|
778
|
-
return response.json().get('
|
778
|
+
return response.json().get('elements','No platforms found')
|
779
779
|
|
780
780
|
def get_server_templates_by_dep_impl_type(self, filter: str = "*", server:str = None, effective_time: str = None,
|
781
781
|
start_from: int = 0, page_size: int = max_paging_size ) -> str | list:
|
@@ -854,7 +854,7 @@ class RuntimeManager(Client):
|
|
854
854
|
if server is None:
|
855
855
|
server = self.server_name
|
856
856
|
|
857
|
-
url = (f"{self.platform_url}/servers/{server}/api/open-metadata/runtime-manager/servers/{server_guid}")
|
857
|
+
url = (f"{self.platform_url}/servers/{server}/api/open-metadata/runtime-manager/software-servers/{server_guid}")
|
858
858
|
|
859
859
|
if effective_time is not None:
|
860
860
|
body = {
|
@@ -929,11 +929,11 @@ class RuntimeManager(Client):
|
|
929
929
|
if server is None:
|
930
930
|
server = self.server_name
|
931
931
|
|
932
|
-
url = (f"{self.platform_url}/servers/{server}/api/open-metadata/runtime-manager/servers/{server_guid}/report")
|
932
|
+
url = (f"{self.platform_url}/servers/{server}/api/open-metadata/runtime-manager/software-servers/{server_guid}/report")
|
933
933
|
|
934
934
|
response = await self._async_make_request("GET", url)
|
935
935
|
|
936
|
-
return response.json().get('
|
936
|
+
return response.json().get('elements', 'No server found')
|
937
937
|
|
938
938
|
|
939
939
|
def get_server_report(self, server_guid: str = None, server: str = None) -> str | list:
|
@@ -2,20 +2,20 @@ examples/doc_samples/Create_Collection_Sample.py,sha256=D8nhc4qLXIzAqVdJQjmFIS-j
|
|
2
2
|
examples/doc_samples/Create_Sustainability_Collection_Sample.py,sha256=iLBm1LwRLi42Gayyb-wcWZ5NySQ6sc4kVSmwIAzP2Po,5049
|
3
3
|
examples/widgets/catalog_user/README.md,sha256=aCCVo7iqyE-XGEvmoYXnkIGM0VskF95JTj6Egzec7LM,883
|
4
4
|
examples/widgets/catalog_user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
-
examples/widgets/catalog_user/get_asset_graph.py,sha256=
|
5
|
+
examples/widgets/catalog_user/get_asset_graph.py,sha256=Q23n_svJBii58hgaMPLpliN8wqKl4yhnhCCk2IU2nvM,11168
|
6
6
|
examples/widgets/catalog_user/get_collection.py,sha256=DBZ5-XkoYsz4WmMSPz0Ao0wz3DlAUQve89KI26-44nc,4613
|
7
7
|
examples/widgets/catalog_user/get_tech_type_elements.py,sha256=SvnDWfBIA1NzpkKZj4-ZapIeM2SEhe5jJt7rTkvTzaA,6129
|
8
8
|
examples/widgets/catalog_user/get_tech_type_template.py,sha256=gMFVcgCIm09GQu1Vsc5ZUVH9XLhItAG1eVGZJrcnHeQ,6174
|
9
|
-
examples/widgets/catalog_user/list_assets.py,sha256=
|
9
|
+
examples/widgets/catalog_user/list_assets.py,sha256=7M1KlKFkxjMdKKiw8c7u5H7zZqDplcqbRdo4_fWJLuI,6476
|
10
10
|
examples/widgets/catalog_user/list_glossary.py,sha256=zljSzVKYysFZVmVhHJt0fYFDmAG9azIphOs4MOIfA7g,5395
|
11
11
|
examples/widgets/catalog_user/list_projects.py,sha256=RpxPj68X7yPl046xTuGRhl8EwUk_lFMW_BCbX7aJ2hA,6513
|
12
12
|
examples/widgets/catalog_user/list_tech_types.py,sha256=20T4v6L5qeebSsaL1nGkFMDAIsy2W3A3SMm1RcgFoh0,4609
|
13
13
|
examples/widgets/catalog_user/list_todos.py,sha256=iiHvw0zM2khHDNKnrzNe2i0tqD_3xzrB5Z2Z0tP7N4k,5521
|
14
14
|
examples/widgets/cli/__init__.py,sha256=ReG7mIcm5c512S_z1UZIpMtE67zlO_zj-1HhHWYS4fI,30
|
15
15
|
examples/widgets/cli/egeria_cat.py,sha256=xEzI4Lbl3vyQlJLxMSmDVphhyjTUL1whSfbZi4I2Hwk,9324
|
16
|
-
examples/widgets/cli/egeria_my.py,sha256
|
17
|
-
examples/widgets/cli/egeria_ops.py,sha256=
|
18
|
-
examples/widgets/cli/egeria_tech.py,sha256=
|
16
|
+
examples/widgets/cli/egeria_my.py,sha256=wni3UWzwxnk0hToeUwSLclfHY4Vi1ez4mtRqVGWVi8A,5341
|
17
|
+
examples/widgets/cli/egeria_ops.py,sha256=ZxfijlBuDdOKdDgflKdJ0npGp5bB35qCzy-SHUGAk0k,10112
|
18
|
+
examples/widgets/cli/egeria_tech.py,sha256=_DjPR5rslrZKk0NshpE_VNQf4YVxBGaVpNqT8YMgt9I,8917
|
19
19
|
examples/widgets/cli/ops_config.py,sha256=BPfiU2mZA61aA1p1DHRA5eLWH8qaAwgWNoRmazzAlM4,1398
|
20
20
|
examples/widgets/operational/README.md,sha256=PJsSDcvMv6E6og6y-cwvxFX5lhCII0UCwgKiM1T17MQ,1595
|
21
21
|
examples/widgets/operational/__init__.py,sha256=SCfzF3-aMx8EpqLWmH7JQf13gTmMAtHRbg69oseLvi8,480
|
@@ -28,7 +28,7 @@ examples/widgets/operational/monitor_coco_status.py,sha256=ERz3OJ0TXImNKHGD4gJvg
|
|
28
28
|
examples/widgets/operational/monitor_engine_activity.py,sha256=5ceNWogsJqKTxerBRWK68T4Qr5OcqnqZF1ERqFnYbGk,7282
|
29
29
|
examples/widgets/operational/monitor_gov_eng_status.py,sha256=cVRtA1Ub9uGf4fic1FnMwmzCwNEnU7joCqsjsiAZ7bg,5912
|
30
30
|
examples/widgets/operational/monitor_integ_daemon_status.py,sha256=E3HO6ZCAv4CBZFHhxqpa7brRG3jfw3ZubwUkRfRySwo,8766
|
31
|
-
examples/widgets/operational/monitor_platform_status.py,sha256=
|
31
|
+
examples/widgets/operational/monitor_platform_status.py,sha256=mgEeRjv2mIRBUxusHqeQGeoOp8Ehlk2IX-t3qtLKFqs,6123
|
32
32
|
examples/widgets/operational/monitor_server_list.py,sha256=eHSeM5dW7Wyjp2zR_AD6_FalFnZ2dBaZKxtob2kva9I,4483
|
33
33
|
examples/widgets/operational/monitor_server_status.py,sha256=A-8hMDfbscdcq-b1OD4wKn0tphumX8WIK-Hz8uPoFkc,3974
|
34
34
|
examples/widgets/operational/refresh_integration_daemon.py,sha256=QDB3dpAlLY8PhrGhAZG4tWKzx_1R0bOOM048N68RQ4w,2712
|
@@ -45,7 +45,7 @@ examples/widgets/tech/get_tech_details.py,sha256=b7i3kSTaZ2pZPcxkDccqY27bqeHJoYn
|
|
45
45
|
examples/widgets/tech/list_asset_types.py,sha256=PHPtCXqCHhIw0K59hUvoKdybp6IKPt_9Wc0AJVDtdrg,4181
|
46
46
|
examples/widgets/tech/list_registered_services.py,sha256=TqZbT54vMGvHUAX_bovCce3A3eV_RbjSEtPP6u6ZJV0,6388
|
47
47
|
examples/widgets/tech/list_relationship_types.py,sha256=0T8Sl7J3WFq_0IQLLzcL0T79pUxVENWNT95Cpjz2ukc,5633
|
48
|
-
examples/widgets/tech/list_tech_templates.py,sha256=
|
48
|
+
examples/widgets/tech/list_tech_templates.py,sha256=RiyA8a4fIL9BGeGf37Bkk471mK5ECkDJMN9QVNReC1M,6192
|
49
49
|
examples/widgets/tech/list_valid_metadata_values.py,sha256=64z5tr-0VD-mPTFmr6FT76gj4MXJZLWTxT4oeIiUaiU,6043
|
50
50
|
pyegeria/Xfeedback_manager_omvs.py,sha256=uNQMOPG08UyIuLzBfYt4uezDyLWdpBgJ2ZuvqumaWuY,9231
|
51
51
|
pyegeria/Xloaded_resources_omvs.py,sha256=cseWZTIwNhkzhZ0fhujI66DslNAQcjuwsz_p1GRmSPQ,3392
|
@@ -58,7 +58,7 @@ pyegeria/_validators.py,sha256=DQuMsATRGxGSBtOrVtXlCgWXGhj6Nh-uqPtCsrUGLxk,12703
|
|
58
58
|
pyegeria/action_author_omvs.py,sha256=m0wsfmyO-VxRDaPpACeIDw8eVAFu3RVbo45RPCUel9M,6340
|
59
59
|
pyegeria/asset_catalog_omvs.py,sha256=ckEpASyz1yjiMyYtGh0teHdzEBRDOb52IReZdq8EMEo,25904
|
60
60
|
pyegeria/automated_curation_omvs.py,sha256=7mBOXnq06zf1TB3vzo2FPUw2GRLZKKYT2MDQkPxDokk,121332
|
61
|
-
pyegeria/collection_manager_omvs.py,sha256=
|
61
|
+
pyegeria/collection_manager_omvs.py,sha256=aGtzC3P8_YgY2KEzhtO19_H9drStE0hW5hUj-dA7bLo,112649
|
62
62
|
pyegeria/core_omag_server_config.py,sha256=16ld7aBTgO3gGhvFs-_yzwqPsatdCAiKYi005_2evZU,93096
|
63
63
|
pyegeria/create_tech_guid_lists.py,sha256=jClpvURy20o4UV83LOwhGg3TZdHGzfjZ9y0MNZyG2To,4282
|
64
64
|
pyegeria/full_omag_server_config.py,sha256=l4G0oM6l-axosYACypqNqzkF6wELzs9FgKJwvDMF0Fc,45817
|
@@ -68,12 +68,12 @@ pyegeria/my_profile_omvs.py,sha256=w-3aL9s7VlonUGtdKgfMSCeYIbCtJn0zDLTuqUxAYFc,4
|
|
68
68
|
pyegeria/platform_services.py,sha256=T2UiAl7tPfOBGL_H2b73XyyHtR0Y36irgbaljZTjD4I,41808
|
69
69
|
pyegeria/project_manager_omvs.py,sha256=_U6m2vquu4eEV7aY8X3hsvfm2zX0EBica1reGWX9amY,77078
|
70
70
|
pyegeria/registered_info.py,sha256=GfMcYz3IO0aNquf8qCrYQ9cA5KplhPx1kNt0_nMMpTM,6475
|
71
|
-
pyegeria/runtime_manager_omvs.py,sha256=
|
71
|
+
pyegeria/runtime_manager_omvs.py,sha256=oSVFeG_yBGXIvQR0EClLZqTZ6C5z5ReZzwm8cce854U,37658
|
72
72
|
pyegeria/server_operations.py,sha256=ZX7FlJRrAC7RK4bq4wHWepEsYbbWlqkUZdsJrTplVVU,16534
|
73
73
|
pyegeria/utils.py,sha256=pkVmS3RrbjaS9yz7FtOCwaOfV5FMqz-__Rt5koCnd9c,5374
|
74
74
|
pyegeria/valid_metadata_omvs.py,sha256=aisdRodIwJSkyArAzfm_sEnBELh69xE8k4Nea-vHu8M,36745
|
75
|
-
pyegeria-0.5.
|
76
|
-
pyegeria-0.5.
|
77
|
-
pyegeria-0.5.
|
78
|
-
pyegeria-0.5.
|
79
|
-
pyegeria-0.5.
|
75
|
+
pyegeria-0.5.9.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
76
|
+
pyegeria-0.5.9.1.dist-info/METADATA,sha256=Q1PdS7m48TAx-hQpd8czlwAeJL0OHlGLeXHVLrzoD_k,2688
|
77
|
+
pyegeria-0.5.9.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
78
|
+
pyegeria-0.5.9.1.dist-info/entry_points.txt,sha256=YLwELMauo52P2zmfF3ovfayZGcUEVQ2XQnCF4xNzG1M,2781
|
79
|
+
pyegeria-0.5.9.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|