pyegeria 5.3.2__py3-none-any.whl → 5.3.3.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.
- pyegeria/.DS_Store +0 -0
- pyegeria/classification_manager_omvs.py +4 -4
- pyegeria/commands/.DS_Store +0 -0
- pyegeria/commands/cli/egeria.py +203 -68
- pyegeria/commands/cli/egeria_tech.py +251 -141
- pyegeria/commands/doc/.DS_Store +0 -0
- pyegeria/commands/doc/Visual Command Reference/.DS_Store +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/.DS_Store +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/.DS_Store +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/.DS_Store +0 -0
- pyegeria/commands/doc/glossary/.DS_Store +0 -0
- pyegeria/commands/doc/glossary/images/.DS_Store +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/.DS_Store +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/.DS_Store +0 -0
- pyegeria/commands/tech/{list_elements.py → list_all_om_type_elements.py} +2 -2
- pyegeria/commands/tech/{list_elements_x.py → list_all_om_type_elements_x.py} +2 -2
- pyegeria/commands/tech/{list_related_elements.py → list_all_related_elements.py} +1 -1
- pyegeria/commands/tech/list_elements_by_classification_by_property_value.py +186 -0
- pyegeria/commands/tech/list_elements_by_property_value.py +175 -0
- pyegeria/commands/tech/list_elements_by_property_value_x.py +196 -0
- pyegeria/commands/tech/list_elements_for_classification.py +1 -1
- pyegeria/commands/tech/list_related_elements_with_prop_value.py +207 -0
- pyegeria/commands/tech/x_list_related_elements.py +1 -1
- pyegeria/valid_metadata_omvs.py +1 -1
- {pyegeria-5.3.2.dist-info → pyegeria-5.3.3.1.dist-info}/METADATA +1 -1
- {pyegeria-5.3.2.dist-info → pyegeria-5.3.3.1.dist-info}/RECORD +29 -14
- {pyegeria-5.3.2.dist-info → pyegeria-5.3.3.1.dist-info}/entry_points.txt +7 -2
- {pyegeria-5.3.2.dist-info → pyegeria-5.3.3.1.dist-info}/LICENSE +0 -0
- {pyegeria-5.3.2.dist-info → pyegeria-5.3.3.1.dist-info}/WHEEL +0 -0
@@ -0,0 +1,207 @@
|
|
1
|
+
"""This finds all elements related to the specified element by the specified relationship type,
|
2
|
+
that match the property value for the properties specified"""
|
3
|
+
from jedi import Project
|
4
|
+
from rich.markdown import Markdown
|
5
|
+
from rich.prompt import Prompt
|
6
|
+
import os
|
7
|
+
import argparse
|
8
|
+
import time
|
9
|
+
import sys
|
10
|
+
from rich import box
|
11
|
+
from rich.console import Console
|
12
|
+
from rich.table import Table
|
13
|
+
|
14
|
+
from pyegeria import (
|
15
|
+
InvalidParameterException,
|
16
|
+
PropertyServerException,
|
17
|
+
UserNotAuthorizedException,
|
18
|
+
print_exception_response,
|
19
|
+
EgeriaTech,
|
20
|
+
)
|
21
|
+
|
22
|
+
console = Console()
|
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("EGERIA_VIEW_SERVER", "view-server")
|
27
|
+
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
28
|
+
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
29
|
+
)
|
30
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("INTEGRATION_DAEMON", "integration-daemon")
|
31
|
+
EGERIA_ADMIN_USER = os.environ.get("ADMIN_USER", "garygeeke")
|
32
|
+
EGERIA_ADMIN_PASSWORD = os.environ.get("ADMIN_PASSWORD", "secret")
|
33
|
+
EGERIA_USER = os.environ.get("EGERIA_USER", "erinoverview")
|
34
|
+
EGERIA_USER_PASSWORD = os.environ.get("EGERIA_USER_PASSWORD", "secret")
|
35
|
+
EGERIA_JUPYTER = bool(os.environ.get("EGERIA_JUPYTER", "False"))
|
36
|
+
EGERIA_WIDTH = int(os.environ.get("EGERIA_WIDTH", "220"))
|
37
|
+
|
38
|
+
|
39
|
+
def list_related_elements_with_prop_value(
|
40
|
+
element_guid: str,
|
41
|
+
relationship_type: str,
|
42
|
+
property_value: str,
|
43
|
+
property_names: [str],
|
44
|
+
om_type: str,
|
45
|
+
server: str,
|
46
|
+
url: str,
|
47
|
+
username: str,
|
48
|
+
password: str,
|
49
|
+
jupyter: bool = EGERIA_JUPYTER,
|
50
|
+
width: int = EGERIA_WIDTH,
|
51
|
+
):
|
52
|
+
c_client = EgeriaTech(server, url, user_id=username, user_pwd=password)
|
53
|
+
token = c_client.create_egeria_bearer_token()
|
54
|
+
|
55
|
+
if om_type is not None:
|
56
|
+
om_typedef = c_client.get_typedef_by_name(om_type)
|
57
|
+
if type(om_typedef) is str:
|
58
|
+
print(
|
59
|
+
f"The type name '{om_type}' is not known to the Egeria platform at {url} - {server}"
|
60
|
+
)
|
61
|
+
sys.exit(1)
|
62
|
+
|
63
|
+
def generate_table() -> Table:
|
64
|
+
"""Make a new table."""
|
65
|
+
table = Table(
|
66
|
+
caption=f"Metadata Elements for: {url} - {server} @ {time.asctime()}",
|
67
|
+
style="bold bright_white on black",
|
68
|
+
row_styles=["bold bright_white on black"],
|
69
|
+
header_style="white on dark_blue",
|
70
|
+
title_style="bold bright_white on black",
|
71
|
+
caption_style="white on black",
|
72
|
+
show_lines=True,
|
73
|
+
box=box.ROUNDED,
|
74
|
+
title=f"Elements related to: '{element_guid}' ",
|
75
|
+
expand=True,
|
76
|
+
# width=500
|
77
|
+
)
|
78
|
+
table.add_column("Relationship GUID", width=38, no_wrap=True)
|
79
|
+
table.add_column("Rel Header", width=38, no_wrap=True)
|
80
|
+
table.add_column("Relationship Props")
|
81
|
+
table.add_column("Related GUID", width=38, no_wrap=True)
|
82
|
+
table.add_column("Properties")
|
83
|
+
table.add_column("Element Header")
|
84
|
+
|
85
|
+
elements = c_client.get_related_elements(
|
86
|
+
element_guid, relationship_type, om_type
|
87
|
+
)
|
88
|
+
|
89
|
+
if type(elements) is list:
|
90
|
+
for element in elements:
|
91
|
+
header = element["relationshipHeader"]
|
92
|
+
el_type = header["type"]["typeName"]
|
93
|
+
el_home = header["origin"]["homeMetadataCollectionName"]
|
94
|
+
el_create_time = header["versions"]["createTime"][:-10]
|
95
|
+
el_guid = header["guid"]
|
96
|
+
el_class = header.get("classifications", "---")
|
97
|
+
rel_header_md = (
|
98
|
+
f"* Type: {el_type}\n"
|
99
|
+
f"* Home: {el_home}\n"
|
100
|
+
f"* Created: {el_create_time}\n"
|
101
|
+
)
|
102
|
+
rel_header_out = Markdown(rel_header_md)
|
103
|
+
rel_props = element.get("relationshipProperties", "---")
|
104
|
+
|
105
|
+
rel_props_md = ""
|
106
|
+
if type(rel_props) is list:
|
107
|
+
for prop in rel_props.keys():
|
108
|
+
rel_props_md += (
|
109
|
+
f"* **{prop}**: {element['relationshipProperties'][prop]}\n"
|
110
|
+
)
|
111
|
+
rel_props_out = Markdown(rel_props_md)
|
112
|
+
|
113
|
+
c_md = ""
|
114
|
+
if type(el_class) is list:
|
115
|
+
for classification in el_class:
|
116
|
+
classification_name = classification.get(
|
117
|
+
"classificationName", "---"
|
118
|
+
)
|
119
|
+
c_md = f"* **{classification_name}**\n"
|
120
|
+
class_props = classification.get(
|
121
|
+
"classificationProperties", "---"
|
122
|
+
)
|
123
|
+
if type(class_props) is dict:
|
124
|
+
for prop in class_props.keys():
|
125
|
+
c_md += f" * **{prop}**: {class_props[prop]}\n"
|
126
|
+
c_md_out = Markdown(c_md)
|
127
|
+
|
128
|
+
rel_element = element["relatedElement"]
|
129
|
+
rel_el_header = rel_element["elementHeader"]
|
130
|
+
rel_type = rel_el_header["type"]["typeName"]
|
131
|
+
rel_home = rel_el_header["origin"]["homeMetadataCollectionName"]
|
132
|
+
rel_guid = rel_el_header["guid"]
|
133
|
+
|
134
|
+
rel_el_header_md = f"* Type: {rel_type}\n" f"* Home: {rel_home}\n"
|
135
|
+
rel_el_header_out = Markdown(rel_el_header_md)
|
136
|
+
|
137
|
+
rel_el_props_md = ""
|
138
|
+
for prop in rel_element["properties"].keys():
|
139
|
+
rel_el_props_md += (
|
140
|
+
f"* **{prop}**: {rel_element['properties'][prop]}\n"
|
141
|
+
)
|
142
|
+
rel_el_props_out = Markdown(rel_el_props_md)
|
143
|
+
|
144
|
+
table.add_row(
|
145
|
+
el_guid,
|
146
|
+
rel_header_out,
|
147
|
+
rel_props_out,
|
148
|
+
# el_q_name,
|
149
|
+
rel_guid,
|
150
|
+
rel_el_props_out,
|
151
|
+
rel_el_header_out,
|
152
|
+
)
|
153
|
+
|
154
|
+
return table
|
155
|
+
else:
|
156
|
+
print("No instances found")
|
157
|
+
sys.exit(1)
|
158
|
+
|
159
|
+
try:
|
160
|
+
console = Console(width=width, force_terminal=not jupyter)
|
161
|
+
|
162
|
+
with console.pager(styles=True):
|
163
|
+
console.print(generate_table())
|
164
|
+
|
165
|
+
except (
|
166
|
+
InvalidParameterException,
|
167
|
+
PropertyServerException,
|
168
|
+
UserNotAuthorizedException,
|
169
|
+
) as e:
|
170
|
+
print_exception_response(e)
|
171
|
+
print("\n\nPerhaps the type name isn't known")
|
172
|
+
finally:
|
173
|
+
c_client.close_session()
|
174
|
+
|
175
|
+
|
176
|
+
def main():
|
177
|
+
parser = argparse.ArgumentParser()
|
178
|
+
parser.add_argument("--server", help="Name of the server to display status for")
|
179
|
+
parser.add_argument("--url", help="URL Platform to connect to")
|
180
|
+
parser.add_argument("--userid", help="User Id")
|
181
|
+
parser.add_argument("--password", help="Password")
|
182
|
+
|
183
|
+
args = parser.parse_args()
|
184
|
+
|
185
|
+
server = args.server.strip() if args.server is not None else EGERIA_VIEW_SERVER
|
186
|
+
url = args.url.strip if args.url is not None else EGERIA_PLATFORM_URL
|
187
|
+
userid = args.userid.strip() if args.userid is not None else EGERIA_USER
|
188
|
+
password = args.password.strip() if args.password is not None else EGERIA_USER_PASSWORD
|
189
|
+
|
190
|
+
try:
|
191
|
+
element_guid = Prompt.ask("Guid of base element").strip()
|
192
|
+
relationship_type = Prompt.ask("Enter the relationship type to follow").strip()
|
193
|
+
property_value = Prompt.ask("Enter the property value to search for").strip()
|
194
|
+
property_names = Prompt.ask("Enter a comma seperated list of properties to search").strip()
|
195
|
+
om_type = Prompt.ask(
|
196
|
+
"Enter the Open Metadata Type to find elements of", default="Referenceable"
|
197
|
+
)
|
198
|
+
om_type = om_type.strip() if type(om_type) is str else None
|
199
|
+
list_related_elements_with_prop_value(element_guid, relationship_type, property_value,
|
200
|
+
[property_names], om_type, server, url,
|
201
|
+
userid,password)
|
202
|
+
except KeyboardInterrupt:
|
203
|
+
pass
|
204
|
+
|
205
|
+
|
206
|
+
if __name__ == "__main__":
|
207
|
+
main()
|
@@ -153,7 +153,7 @@ def main():
|
|
153
153
|
"Enter the relationship to search",
|
154
154
|
default="SpecificationPropertyAssignment",
|
155
155
|
)
|
156
|
-
om_type = Prompt.ask("Enter an optional Open Metadata Type", default=
|
156
|
+
om_type = Prompt.ask("Enter an optional Open Metadata Type", default="Referenceable")
|
157
157
|
display_related_elements(
|
158
158
|
element_guid, relationship, om_type, server, url, userid, password
|
159
159
|
)
|
pyegeria/valid_metadata_omvs.py
CHANGED
@@ -1809,7 +1809,7 @@ class ValidMetadataManager(Client):
|
|
1809
1809
|
return resp.json().get("typeDefs", "No TypeDefs Found")
|
1810
1810
|
|
1811
1811
|
def get_valid_classification_types(self, entity_type: str) -> list | str:
|
1812
|
-
"""Returns all the TypeDefs for
|
1812
|
+
"""Returns all the TypeDefs for classifications that can be attached to the requested entity type.
|
1813
1813
|
Async version.
|
1814
1814
|
|
1815
1815
|
Parameters
|
@@ -1,3 +1,4 @@
|
|
1
|
+
pyegeria/.DS_Store,sha256=NXvKqE04FGJAyq25tRApO9AJj14vF1vzFC-R0JjEWhc,6148
|
1
2
|
pyegeria/README.md,sha256=PwX5OC7-YSZUCIsoyHh1O-WBM2hE84sm3Bd4O353NOk,1464
|
2
3
|
pyegeria/__init__.py,sha256=CA9NbkkmpBlmkJWkVVKKHqIoGa9c3BMBeMHaM1ZXKe4,21947
|
3
4
|
pyegeria/_client.py,sha256=9yZfSyLJqq5ORlM7NzeaozXjPX0i9YsfD2Ue3mN9Y9Q,30811
|
@@ -7,8 +8,9 @@ pyegeria/_globals.py,sha256=1Uc8392wjbiVN5L__RzxC1-U97RMXj77_iUsMSgeAjQ,638
|
|
7
8
|
pyegeria/_validators.py,sha256=rnZelHJnjHaLZ8UhUTDyB59MfIUJifhALtkYoHBaos4,12736
|
8
9
|
pyegeria/asset_catalog_omvs.py,sha256=OqZYjf5RBwuTbYvu43CL100VCNqYuXHDog2jc6sOBtA,25580
|
9
10
|
pyegeria/automated_curation_omvs.py,sha256=fFZef1GeUNBSFIC8QltpzkQs_W5OD0xVYW1TzW07UWc,130239
|
10
|
-
pyegeria/classification_manager_omvs.py,sha256=
|
11
|
+
pyegeria/classification_manager_omvs.py,sha256=rHkcpzPeQqH1XmlbXnWtAJeG6mVMIL_N9ZGn13kR30U,187155
|
11
12
|
pyegeria/collection_manager_omvs.py,sha256=Zl3clg29bORkfBDunklgna0cIceF278njqzDW9pUJwk,101697
|
13
|
+
pyegeria/commands/.DS_Store,sha256=9m3ajPPW2e7MhodsfTR2-KL9opdeTap-MlUAb3x9aR4,8196
|
12
14
|
pyegeria/commands/README.md,sha256=hJdOWhZ5eCfwTkY4Tx6De6Y1XVo7cbaddQEvjqppvls,2036
|
13
15
|
pyegeria/commands/__init__.py,sha256=IBYAvBbuGneZ06YSFjZsU-Zxx-b-Qo4ZV_Vd4zz4AI0,844
|
14
16
|
pyegeria/commands/cat/README.md,sha256=-aaAnIT2fcfU63vajgB-RzQk4l4yFdhkyVfSaTPiqRY,967
|
@@ -35,20 +37,25 @@ pyegeria/commands/cat/list_terms.py,sha256=pHNR_5na1tS_6Yj4T0rA4kaT1lOtd1fMw6Z3k
|
|
35
37
|
pyegeria/commands/cat/list_todos.py,sha256=I1b8kJJnekWEm3NpwiLStxr50no7KTUfDrI6pBExzA8,6549
|
36
38
|
pyegeria/commands/cat/list_user_ids.py,sha256=7TmksDy7rV0HTpn2nFKwLKf4Hq3s80GoR3_SmPhL_Hc,5100
|
37
39
|
pyegeria/commands/cli/__init__.py,sha256=hpTVSMP2gnPRhcAZPdeUEsQ-eaDySlXlk239dNWYmng,292
|
38
|
-
pyegeria/commands/cli/egeria.py,sha256=
|
40
|
+
pyegeria/commands/cli/egeria.py,sha256=IbhkBfe08hPhUeZ3M66iTqRkwR5JGsXS7d7xhfQi6g0,49491
|
39
41
|
pyegeria/commands/cli/egeria_cat.py,sha256=P6pd17KvldSYCWJJAu56_DX90NOBFuQBireZ0gCuPB4,16017
|
40
42
|
pyegeria/commands/cli/egeria_login_tui.py,sha256=Mbdf2IqxMqm_jOeHqsGvrKQAFxerfkYEgdBlA1gX-ks,9487
|
41
43
|
pyegeria/commands/cli/egeria_my.py,sha256=ncLN1DM_P7A0N2J96lET64t4fW21ifpDr8S6yI2lZHQ,6389
|
42
44
|
pyegeria/commands/cli/egeria_ops.py,sha256=ff_935fAuF1I2zfu4Y8hjk9WTmbJXFMddvYqldvUFS0,12828
|
43
|
-
pyegeria/commands/cli/egeria_tech.py,sha256=
|
45
|
+
pyegeria/commands/cli/egeria_tech.py,sha256=W1fZ135hVXyYivdUova5IHyg77rIBpFBiaUBNswqO_E,18981
|
44
46
|
pyegeria/commands/cli/ops_config.py,sha256=4ShMgVl2eJoQLqJTK4npAdeAeJuq3FE6qsqngXYON74,1331
|
45
47
|
pyegeria/commands/cli/txt_custom_v2.tcss,sha256=ixkzpFyTZ5i3byFO9EmEAeJgzbEa7nZb_3iTgxNtVPk,232
|
48
|
+
pyegeria/commands/doc/.DS_Store,sha256=o8grXspPw9gdVWRFjZAhnydbdtkzpNBvsC_UQJ_YGYw,10244
|
46
49
|
pyegeria/commands/doc/README.md,sha256=3TDtLjanw5Sn5fhw0apsYv2HS2Hd7NSdjLu3qTwwXBg,13941
|
50
|
+
pyegeria/commands/doc/Visual Command Reference/.DS_Store,sha256=W5AtaSlvKv-H-jko3CB6eWSkgKC_uwwjH5fgt7pN2vg,6148
|
47
51
|
pyegeria/commands/doc/Visual Command Reference/README.md,sha256=StopwmMDYmJgfKeRC8nHOJMbXkz6n15zIDJBmHDPoxM,32445
|
52
|
+
pyegeria/commands/doc/Visual Command Reference/cat/.DS_Store,sha256=ClvMg3-Ho93FhF0gHhgg7fwkQNt0LVqQfh87P2sokGA,6148
|
53
|
+
pyegeria/commands/doc/Visual Command Reference/cat/show/.DS_Store,sha256=7EbExYG-CdFFiWoKv4aMY7d8k0ORVJY4nvbdAskF-2E,6148
|
48
54
|
pyegeria/commands/doc/Visual Command Reference/cat/show/assets/asset-graph 2024-11-20 at 15.56.42.png,sha256=gL7LDmS0OUeDmmmz6ayZL7qbriaos6ryct-2T0D7CIM,769210
|
49
55
|
pyegeria/commands/doc/Visual Command Reference/cat/show/assets/assets-in-domain 2024-11-20 at 15.49.55@2x.png,sha256=Op6NHsqPfYVvpKX46Z-IX8G_Of8rrVtDK34C1MJIJdw,540605
|
50
56
|
pyegeria/commands/doc/Visual Command Reference/cat/show/assets/elements-of-type 2024-11-20 at 16.01.35.png,sha256=NCtzoZau5ANXjNh2IH57htfVvWAtMns87_M_5E9DSQ0,627528
|
51
57
|
pyegeria/commands/doc/Visual Command Reference/cat/show/assets/tech-type-elements 2024-11-20 at 16.05.05.png,sha256=-QCu00HYhdkOJqclthiBSVKQuz1qHVothDwng53n_cw,271680
|
58
|
+
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/.DS_Store,sha256=9INiWTHDvOMYAnQ8xRpC9FRYHV3wd0cTE88HddKea5A,6148
|
52
59
|
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-data-catalogs 2024-12-17 at 15.43.27@2x.png,sha256=tlL6FQsIYYC-TDeUZy5LqmVx5l5GJXbnTEag_iY11CQ,536963
|
53
60
|
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-data-catalogs-2024-11-20 at 16.17.43@2x.png,sha256=MUgoH6orUk9qUeCv8yEjuQ6sAao3eZyK3DOF4aXfqkw,525598
|
54
61
|
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-schemas 2024-11-25 at 20.14.50@2x.png,sha256=W6_JDqWKBOqeEMTAteX7JJ_MIPOigc2ttD01UYBxNxg,443831
|
@@ -102,7 +109,9 @@ pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/list_tech_ty
|
|
102
109
|
pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/list_technology_types 2024-12-16 at 15.39.20@2x.png,sha256=3fKSh5-IrrjVQezeSNgVfwU-nJ4qUTw7Vysv0Wzleyo,721136
|
103
110
|
pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/tech_type_details 2024-12-16 at 15.37.21@2x.png,sha256=0kqptIlkbIb1jKoMZJsV3UbMYAD1tjkSwy9XauJQQx4,233574
|
104
111
|
pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/tech_type_templates 2024-12-16 at 16.11.48@2x.png,sha256=vvLzbGkyDMUxHqayN8cHq5B99FTLD0vzrMVZhF50K70,177993
|
112
|
+
pyegeria/commands/doc/glossary/.DS_Store,sha256=6uo-B4k5C89EcQPw65oPRAvNIy8AJjs62fKJNqYM0y4,6148
|
105
113
|
pyegeria/commands/doc/glossary/basic-glossary-tui.md,sha256=2HoFDMCbIZuh4sBA1xRuu7qHQPyGwWS-JNUm5XNZ8JE,5880
|
114
|
+
pyegeria/commands/doc/glossary/images/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
106
115
|
pyegeria/commands/doc/glossary/images/delete-glossary-step1 2024-11-06 at 15.47.23@2x.png,sha256=rppVqEwN1ZrSMzyXnsYqDl7fnPs0zTlE7PMmX4VUbQI,203332
|
107
116
|
pyegeria/commands/doc/glossary/images/delete-glossary-step2 2024-11-06 at 15.51.29@2x.png,sha256=tV0h6i1eRAbvAzye8iuWt0eJ14y1Crk9DovaJLGJCSA,299425
|
108
117
|
pyegeria/commands/doc/glossary/images/delete-glossary-step3 2024-11-06 at 15.53.19@2x.png,sha256=i_SJAW_CeM0fNfZ3fLrZAKdrE9LHG1zHHui86pejlkg,22826
|
@@ -137,7 +146,9 @@ pyegeria/commands/doc/glossary/images/tui-show-glossaries 2024-11-07 at 20.00.05
|
|
137
146
|
pyegeria/commands/doc/glossary/images/tui-show-glossary-terms 2024-11-05 at 19.37.53@2x.png,sha256=AAq9De5X-Qf_KPKZlHgaBk0nlSsc7Y3wra72L7vzvjs,326972
|
138
147
|
pyegeria/commands/doc/glossary/images/tui-upsert 2024-11-07 at 11.49.04.png,sha256=tLM_fX53WHDL3bALqvTugOsq_v-CcwaLQpJ0325gewE,347024
|
139
148
|
pyegeria/commands/doc/glossary/images/upsert-example.om-terms 2024-11-07 at 11.44.05.png,sha256=h0VE0ybRygOToKYnRplTwXcQlK4H7AzCySO7YEfkKuc,174761
|
149
|
+
pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/.DS_Store,sha256=YddwojkKcSQuxToj6KJLUAjVIaKe8W-azzKHfQFdpME,6148
|
140
150
|
pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/README.md,sha256=neHM4S3NSr7S4Nzv008P6r5H0smHjGW4YcXCDCmQuWg,19545
|
151
|
+
pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
141
152
|
pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/CleanShot 2024-11-18 at 21.32.03@2x.png,sha256=7twshXV74tnBr5RWugLZCgijyOl55_ETIraH_X6DLv8,961218
|
142
153
|
pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/Xmind 1731421782704.png,sha256=8lfyO8prtahjTqqT4Uk3HSICipBpf1ly2bXp00csRb8,314990
|
143
154
|
pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/Xmind 1731422134920.png,sha256=Ri4xBHuYzsMrOpoq48-3UkfQNLm9coJxLT_LJGNIU80,745535
|
@@ -187,21 +198,25 @@ pyegeria/commands/tech/get_element_info.py,sha256=PM63y00TVy1RXBMqNdvaR_xxvfknuO
|
|
187
198
|
pyegeria/commands/tech/get_guid_info.py,sha256=OplbQUNYUTYKh6-hbCX0b8ZLhd4x4dXDzR7NOJdI93A,4289
|
188
199
|
pyegeria/commands/tech/get_tech_details.py,sha256=2PQ4wa-cspMCZFKcIspY_XOLHEjsv-TI9833F-pYr0c,6379
|
189
200
|
pyegeria/commands/tech/get_tech_type_template.py,sha256=AVogQHaAqLX9wIXmtEAvg4JH4NhdhODyM_Gs12mpQQ4,6239
|
201
|
+
pyegeria/commands/tech/list_all_om_type_elements.py,sha256=3lrxZ9tRKBBhhVNJDbMcrQPoizWfyVoHFqMXK8FU4d4,5991
|
202
|
+
pyegeria/commands/tech/list_all_om_type_elements_x.py,sha256=pKntFtOiJjH0fqlfIU4oVwzAGmKXXKPtb3GIUuaA2AQ,6571
|
203
|
+
pyegeria/commands/tech/list_all_related_elements.py,sha256=2teagEuuAOuWJMpJBBWStizmBoj5jRyV-OXFHWFjDj0,7773
|
190
204
|
pyegeria/commands/tech/list_anchored_elements.py,sha256=0VI94D5CjAJY6LvAoqTUIzJayBNS6rBzT_5TTkxg3YA,7562
|
191
205
|
pyegeria/commands/tech/list_asset_types.py,sha256=SsNDAitUtwq0IF3jvUiaDBK7kcY7v1ACkHsBF-Y5M-U,4169
|
192
|
-
pyegeria/commands/tech/
|
193
|
-
pyegeria/commands/tech/
|
194
|
-
pyegeria/commands/tech/
|
206
|
+
pyegeria/commands/tech/list_elements_by_classification_by_property_value.py,sha256=NK18WJDfkp48gPze60k7-ZBp9N2swCgvBVquG9VnrWs,7137
|
207
|
+
pyegeria/commands/tech/list_elements_by_property_value.py,sha256=3OG8uyPKY3zX-K_QB9r2WUZLY_hBaZQ_VT4OAkCIQdA,6578
|
208
|
+
pyegeria/commands/tech/list_elements_by_property_value_x.py,sha256=y77Nszqg5XtyQXwKm3XjB38gwmlpiULEn4NLr_SnRug,7065
|
209
|
+
pyegeria/commands/tech/list_elements_for_classification.py,sha256=jck8bPQHiS61IKslmA2a_B1iopHZ0cE50vAs6Ud2Gkc,6207
|
195
210
|
pyegeria/commands/tech/list_gov_action_processes.py,sha256=NaoZ3t5n1uXcLI0OdUAgMTuzDrEkptY9w7uQeZ4KZP8,4587
|
196
211
|
pyegeria/commands/tech/list_registered_services.py,sha256=fNh21Acd5bCbOQmxpDMOH6QNT5GkiGPLZpadbzIA8F8,6541
|
197
|
-
pyegeria/commands/tech/
|
212
|
+
pyegeria/commands/tech/list_related_elements_with_prop_value.py,sha256=NhWSfJmtBIUN5IBWEK_uQn0OxpCeWnVhy0kaZ_gyEGw,8157
|
198
213
|
pyegeria/commands/tech/list_related_specification.py,sha256=aMUZBiQcTMaNTvSgGUsRjqvqhmebP9iO0eAlbJsDWBk,5925
|
199
214
|
pyegeria/commands/tech/list_relationship_types.py,sha256=VgErUNsCKZ77wyg56U0v1fIUqC0MxHE_qi9A2b2csWo,5791
|
200
215
|
pyegeria/commands/tech/list_relationships.py,sha256=lKZBQleZRK9qDCAUOExejl5gtYb0XyXygTgIcbW5Igk,5933
|
201
216
|
pyegeria/commands/tech/list_tech_templates.py,sha256=FvJ2qAHo7yoCdd9LnZtvWjd3DQEvD0P5wfz5-D5qjmw,14153
|
202
217
|
pyegeria/commands/tech/list_valid_metadata_values.py,sha256=Mv4eSHCR_pR0llWRrpMIzNKA6_QEr8qccAv4NQv4dg0,6340
|
203
218
|
pyegeria/commands/tech/table_tech_templates.py,sha256=kv9VWhZ6pEN-1vEjo6IprliwFTjumjdVV3IWQB2HzI4,9503
|
204
|
-
pyegeria/commands/tech/x_list_related_elements.py,sha256=
|
219
|
+
pyegeria/commands/tech/x_list_related_elements.py,sha256=viUFq_G52CvLO_RJsgN8fkLeIF89Tb8Gvl-nNfeDPSI,5871
|
205
220
|
pyegeria/core_omag_server_config.py,sha256=ej0oNpGelSTTm2oERS86LpgT9O9E5CZFbUm2Iek8f1E,97764
|
206
221
|
pyegeria/create_tech_guid_lists.py,sha256=mI__-i9U01emyqQMdPK2miealwQNiZfB23iiFGmrH0g,4640
|
207
222
|
pyegeria/egeria_cat_client.py,sha256=NzwDbdi5OBHOOA7JzIQC5LqJJ7xtEwHA5yaKrGkDFnc,2022
|
@@ -223,10 +238,10 @@ pyegeria/runtime_manager_omvs.py,sha256=ygrY5I_oSoJQun05W7wSNbZT_nOtPp_BkIKKFCLF
|
|
223
238
|
pyegeria/server_operations.py,sha256=PfH0wvWCOr43ezJAAXj7VEUdT0x_oTrfr0dzzQvcQk4,16766
|
224
239
|
pyegeria/template_manager_omvs.py,sha256=Sw5xsQAhy7a48xFCg59mg9_nqyhawoS9v4WyF-PjPqM,42425
|
225
240
|
pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
|
226
|
-
pyegeria/valid_metadata_omvs.py,sha256=
|
241
|
+
pyegeria/valid_metadata_omvs.py,sha256=cCt5CCLv6BdzCu90n68r_PkG_PEQJjrtwCxio7K6yko,65034
|
227
242
|
pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
|
228
|
-
pyegeria-5.3.
|
229
|
-
pyegeria-5.3.
|
230
|
-
pyegeria-5.3.
|
231
|
-
pyegeria-5.3.
|
232
|
-
pyegeria-5.3.
|
243
|
+
pyegeria-5.3.3.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
244
|
+
pyegeria-5.3.3.1.dist-info/METADATA,sha256=vBSo3ssWMF2EG5P5zvdSQctum67DhYCpo_FrRtuABOA,2672
|
245
|
+
pyegeria-5.3.3.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
246
|
+
pyegeria-5.3.3.1.dist-info/entry_points.txt,sha256=sqVSCsr2oVnXtKTgRs5_F9OjbtexhmaXE330sO8V9bk,5873
|
247
|
+
pyegeria-5.3.3.1.dist-info/RECORD,,
|
@@ -22,6 +22,7 @@ hey_egeria_cat=pyegeria.commands.cli.egeria_cat:cli
|
|
22
22
|
hey_egeria_my=pyegeria.commands.cli.egeria_my:cli
|
23
23
|
hey_egeria_ops=pyegeria.commands.cli.egeria_ops:cli
|
24
24
|
hey_egeria_tech=pyegeria.commands.cli.egeria_tech:cli
|
25
|
+
list_all_related_elements=pyegeria.commands.tech.list_all_related_elements:main
|
25
26
|
list_anchored_elements=pyegeria.commands.tech.list_anchored_elements:main
|
26
27
|
list_archives=pyegeria.commands.ops.list_archives:main
|
27
28
|
list_asset_types=pyegeria.commands.tech.list_asset_types:main
|
@@ -33,8 +34,12 @@ list_deployed_catalogs=pyegeria.commands.cat.list_deployed_catalogs:main
|
|
33
34
|
list_deployed_databases=pyegeria.commands.cat.list_deployed_databases:main
|
34
35
|
list_deployed_schemas=pyegeria.commands.cat.list_deployed_database_schemas:main
|
35
36
|
list_deployed_servers=pyegeria.commands.cat.list_servers_deployed_imp.py:main
|
36
|
-
list_elements=pyegeria.commands.tech.
|
37
|
+
list_elements=pyegeria.commands.tech.list_all_om_type_elements:main
|
38
|
+
list_elements_by_classification_by_prop_value=pyegeria.commands.tech.list_elements_by_classification_by_property_value:main
|
39
|
+
list_elements_by_prop_value=pyegeria.commands.tech.list_elements_by_property_value:main
|
40
|
+
list_elements_by_prop_value_x=pyegeria.commands.tech.list_elements_by_property_value_x:main
|
37
41
|
list_elements_for_classification=pyegeria.commands.tech.list_elements_for_classification:main
|
42
|
+
list_elements_x=pyegeria.commands.tech.list_all_om_type_elements_x:main
|
38
43
|
list_engine_activity=pyegeria.commands.ops.monitor_engine_activity:main_paging
|
39
44
|
list_engine_activity_compressed=pyegeria.commands.ops.monitor_engine_activity_c:main_paging
|
40
45
|
list_glossaries=pyegeria.commands.cat.list_glossaries:main
|
@@ -45,7 +50,7 @@ list_my_profile=pyegeria.commands.my.list_my_profile:main
|
|
45
50
|
list_my_roles=pyegeria.commands.my.list_my_roles:main
|
46
51
|
list_projects=pyegeria.commands.cat.list_projects:main
|
47
52
|
list_registered_services=pyegeria.commands.tech.list_registered_services:main
|
48
|
-
|
53
|
+
list_related_elements_with_prop_value=pyegeria.commands.tech.list_related_elements_with_prop_value:main
|
49
54
|
list_related_specification=pyegeria.commands.tech.list_related_specification:main
|
50
55
|
list_relationship_types=pyegeria.commands.tech.list_relationship_types:main
|
51
56
|
list_relationships=pyegeria.commands.tech.list_relationships:main
|
File without changes
|
File without changes
|