pyegeria 5.2.0.9__py3-none-any.whl → 5.2.0.10__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/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-12-06 at 08.46.30@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-12-06 at 11.27.56@2x.png +0 -0
- pyegeria/metadata_explorer_omvs.py +151 -75
- pyegeria/valid_metadata_omvs.py +1 -1
- {pyegeria-5.2.0.9.dist-info → pyegeria-5.2.0.10.dist-info}/METADATA +1 -1
- {pyegeria-5.2.0.9.dist-info → pyegeria-5.2.0.10.dist-info}/RECORD +9 -7
- {pyegeria-5.2.0.9.dist-info → pyegeria-5.2.0.10.dist-info}/LICENSE +0 -0
- {pyegeria-5.2.0.9.dist-info → pyegeria-5.2.0.10.dist-info}/WHEEL +0 -0
- {pyegeria-5.2.0.9.dist-info → pyegeria-5.2.0.10.dist-info}/entry_points.txt +0 -0
Binary file
|
Binary file
|
@@ -40,6 +40,31 @@ def base_path(client, view_server: str):
|
|
40
40
|
return f"{client.platform_url}/servers/{view_server}/api/open-metadata/metadata-explorer"
|
41
41
|
|
42
42
|
|
43
|
+
def process_related_element_list(response: Response, mermaid_only: bool) -> str | dict:
|
44
|
+
"""Process the result payload
|
45
|
+
|
46
|
+
Parameters
|
47
|
+
----------
|
48
|
+
response
|
49
|
+
mermaid_only
|
50
|
+
|
51
|
+
Returns
|
52
|
+
-------
|
53
|
+
|
54
|
+
"""
|
55
|
+
elements = response.json().get("relatedElementList", "No elements found")
|
56
|
+
if isinstance(elements, str):
|
57
|
+
return "No elements found"
|
58
|
+
el_list = elements.get("elementList", "No elements found")
|
59
|
+
if isinstance(el_list, str):
|
60
|
+
return el_list
|
61
|
+
if mermaid_only:
|
62
|
+
return elements.get("mermaidGraph", "No mermaid graph found")
|
63
|
+
if len(el_list) == 0:
|
64
|
+
return "No elements returned"
|
65
|
+
return elements
|
66
|
+
|
67
|
+
|
43
68
|
class MetadataExplorer(Client):
|
44
69
|
"""MetadataExplorer is a class that extends the Client class. The Metadata Explorer OMVS provides APIs for
|
45
70
|
supporting the search, query and retrieval of open metadata. It is an advanced API for users that understands
|
@@ -319,6 +344,7 @@ class MetadataExplorer(Client):
|
|
319
344
|
as_of_time: str = None,
|
320
345
|
for_lineage: bool = None,
|
321
346
|
for_duplicate_processing: bool = None,
|
347
|
+
mermaid_only: bool = False,
|
322
348
|
) -> dict | str:
|
323
349
|
"""
|
324
350
|
Retrieve the metadata element and all of its anchored elements using its unique identifier. Async version.
|
@@ -335,11 +361,15 @@ class MetadataExplorer(Client):
|
|
335
361
|
- determines if elements classified as Memento should be returned - normally false
|
336
362
|
for_duplicate_processing: bool, default is set by server
|
337
363
|
- Normally false. Set true when the caller is part of a deduplication function
|
364
|
+
mermaid_only: bool, default is False
|
365
|
+
- if true only a string representing the mermaid graph will be returned
|
338
366
|
|
339
367
|
Returns
|
340
368
|
-------
|
341
369
|
dict | str
|
342
|
-
If the element is found, a dict of the element details is returned.
|
370
|
+
If the element is found, and mermaid_only is False, a dict of the element details is returned.
|
371
|
+
If mermaid_only is True, a string representing the mermaid graph will be returned.
|
372
|
+
If no elements found, string "No element found".
|
343
373
|
|
344
374
|
Raises
|
345
375
|
------
|
@@ -371,7 +401,22 @@ class MetadataExplorer(Client):
|
|
371
401
|
response: Response = await self._async_make_request(
|
372
402
|
"POST", url, body_slimmer(body)
|
373
403
|
)
|
374
|
-
|
404
|
+
# if mermaid_only:
|
405
|
+
# return response.json()["elementGraph"].get(
|
406
|
+
# "mermaidGraph", "No elements found"
|
407
|
+
# )
|
408
|
+
# else:
|
409
|
+
# return response.json().get("elementGraph", "No elements found")
|
410
|
+
if isinstance(response, str):
|
411
|
+
return "No elements found"
|
412
|
+
el_list = response.json().get("elementGraph", "No elements found")
|
413
|
+
if isinstance(el_list, str):
|
414
|
+
return el_list
|
415
|
+
if mermaid_only:
|
416
|
+
return el_list.get("mermaidGraph", "No mermaid graph found")
|
417
|
+
if len(el_list) == 0:
|
418
|
+
return "No elements returned"
|
419
|
+
return el_list
|
375
420
|
|
376
421
|
def get_metadata_element_graph(
|
377
422
|
self,
|
@@ -380,9 +425,10 @@ class MetadataExplorer(Client):
|
|
380
425
|
as_of_time: str = None,
|
381
426
|
for_lineage: bool = None,
|
382
427
|
for_duplicate_processing: bool = None,
|
428
|
+
mermaid_only: bool = False,
|
383
429
|
) -> dict | str:
|
384
430
|
"""
|
385
|
-
Retrieve the metadata element using its unique identifier.
|
431
|
+
Retrieve the metadata element and all of its anchored elements using its unique identifier. Async version.
|
386
432
|
|
387
433
|
Parameters
|
388
434
|
----------
|
@@ -396,11 +442,15 @@ class MetadataExplorer(Client):
|
|
396
442
|
- determines if elements classified as Memento should be returned - normally false
|
397
443
|
for_duplicate_processing: bool, default is set by server
|
398
444
|
- Normally false. Set true when the caller is part of a deduplication function
|
445
|
+
mermaid_only: bool, default is False
|
446
|
+
- if true only a string representing the mermaid graph will be returned
|
399
447
|
|
400
448
|
Returns
|
401
449
|
-------
|
402
450
|
dict | str
|
403
|
-
If the element is found, a dict of the element details is returned.
|
451
|
+
If the element is found, and mermaid_only is False, a dict of the element details is returned.
|
452
|
+
If mermaid_only is True, a string representing the mermaid graph will be returned.
|
453
|
+
If no elements found, string "No element found".
|
404
454
|
|
405
455
|
Raises
|
406
456
|
------
|
@@ -415,54 +465,59 @@ class MetadataExplorer(Client):
|
|
415
465
|
loop = asyncio.get_event_loop()
|
416
466
|
response = loop.run_until_complete(
|
417
467
|
self._async_get_metadata_element_graph(
|
418
|
-
guid,
|
468
|
+
guid,
|
469
|
+
effective_time,
|
470
|
+
as_of_time,
|
471
|
+
for_lineage,
|
472
|
+
for_duplicate_processing,
|
473
|
+
mermaid_only,
|
419
474
|
)
|
420
475
|
)
|
421
476
|
return response
|
422
477
|
|
423
|
-
def get_metadata_element_mermaid_graph(
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
) -> dict | str:
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
478
|
+
# def get_metadata_element_mermaid_graph(
|
479
|
+
# self,
|
480
|
+
# guid: str,
|
481
|
+
# effective_time: str = None,
|
482
|
+
# as_of_time: str = None,
|
483
|
+
# for_lineage: bool = None,
|
484
|
+
# for_duplicate_processing: bool = None,
|
485
|
+
# ) -> dict | str:
|
486
|
+
# """
|
487
|
+
# Retrieve the metadata element using its unique identifier.
|
488
|
+
#
|
489
|
+
# Parameters
|
490
|
+
# ----------
|
491
|
+
# guid : str
|
492
|
+
# - unique identifier of the element to retrieve
|
493
|
+
# effective_time: str, default = None
|
494
|
+
# - Time format is "YYYY-MM-DDTHH:MM:SS" (ISO 8601)
|
495
|
+
# as_of_time: str, default = None
|
496
|
+
# - Query the element as of this time. If None, then use current time.
|
497
|
+
# for_lineage: bool, default is set by server
|
498
|
+
# - determines if elements classified as Memento should be returned - normally false
|
499
|
+
# for_duplicate_processing: bool, default is set by server
|
500
|
+
# - Normally false. Set true when the caller is part of a deduplication function
|
501
|
+
#
|
502
|
+
# Returns
|
503
|
+
# -------
|
504
|
+
# dict | str
|
505
|
+
# If the element is found, a dict of the element details is returned. Otherwise the string "No element found".
|
506
|
+
#
|
507
|
+
# Raises
|
508
|
+
# ------
|
509
|
+
# InvalidParameterException
|
510
|
+
# one of the parameters is null or invalid or
|
511
|
+
# PropertyServerException
|
512
|
+
# There is a problem adding the element properties to the metadata repository or
|
513
|
+
# UserNotAuthorizedException
|
514
|
+
# the requesting user is not authorized to issue this request.
|
515
|
+
# """
|
516
|
+
#
|
517
|
+
# response = self.get_metadata_element_graph(
|
518
|
+
# guid, effective_time, as_of_time, for_lineage, for_duplicate_processing
|
519
|
+
# )
|
520
|
+
# return response.get("mermaidGraph", "No elements found")
|
466
521
|
|
467
522
|
async def _async_get_metadata_element_by_unique_name(
|
468
523
|
self,
|
@@ -897,6 +952,7 @@ class MetadataExplorer(Client):
|
|
897
952
|
start_from: int = 0,
|
898
953
|
page_size: int = max_paging_size,
|
899
954
|
time_out: int = default_time_out,
|
955
|
+
mermaid_only: bool = False,
|
900
956
|
) -> list | str:
|
901
957
|
"""
|
902
958
|
Retrieve the metadata elements connected to the supplied element.
|
@@ -920,6 +976,9 @@ class MetadataExplorer(Client):
|
|
920
976
|
- maximum number of elements to return.
|
921
977
|
time_out: int, default = default_time_out
|
922
978
|
- http request timeout for this request
|
979
|
+
mermaid_only: bool, default is False
|
980
|
+
- if true only a string representing the mermaid graph will be returned
|
981
|
+
|
923
982
|
|
924
983
|
Returns
|
925
984
|
-------
|
@@ -967,12 +1026,7 @@ class MetadataExplorer(Client):
|
|
967
1026
|
response: Response = await self._async_make_request(
|
968
1027
|
"POST", url, body_slimmer(body), time_out=time_out
|
969
1028
|
)
|
970
|
-
|
971
|
-
elements = response.json().get("elementList", "No elements found")
|
972
|
-
if type(elements) is list:
|
973
|
-
if len(elements) == 0:
|
974
|
-
return "No elements found"
|
975
|
-
return elements
|
1029
|
+
return process_related_element_list(response, mermaid_only)
|
976
1030
|
|
977
1031
|
def get_all_related_metadata_elements(
|
978
1032
|
self,
|
@@ -984,6 +1038,7 @@ class MetadataExplorer(Client):
|
|
984
1038
|
start_from: int = 0,
|
985
1039
|
page_size: int = max_paging_size,
|
986
1040
|
time_out: int = default_time_out,
|
1041
|
+
mermaid_only: bool = False,
|
987
1042
|
) -> list | str:
|
988
1043
|
"""
|
989
1044
|
Retrieve the metadata elements connected to the supplied element.
|
@@ -1006,6 +1061,9 @@ class MetadataExplorer(Client):
|
|
1006
1061
|
- maximum number of elements to return.
|
1007
1062
|
time_out: int, default = default_time_out
|
1008
1063
|
- http request timeout for this request
|
1064
|
+
mermaid_only: bool, default is False
|
1065
|
+
- if true only a string representing the mermaid graph will be returned
|
1066
|
+
|
1009
1067
|
|
1010
1068
|
Returns
|
1011
1069
|
-------
|
@@ -1045,6 +1103,7 @@ class MetadataExplorer(Client):
|
|
1045
1103
|
start_from,
|
1046
1104
|
page_size,
|
1047
1105
|
time_out,
|
1106
|
+
mermaid_only,
|
1048
1107
|
)
|
1049
1108
|
)
|
1050
1109
|
return response
|
@@ -1060,6 +1119,7 @@ class MetadataExplorer(Client):
|
|
1060
1119
|
start_from: int = 0,
|
1061
1120
|
page_size: int = max_paging_size,
|
1062
1121
|
time_out: int = default_time_out,
|
1122
|
+
mermaid_only: bool = False,
|
1063
1123
|
) -> list | str:
|
1064
1124
|
"""
|
1065
1125
|
Retrieve the metadata elements connected to the supplied element.
|
@@ -1085,6 +1145,8 @@ class MetadataExplorer(Client):
|
|
1085
1145
|
- maximum number of elements to return.
|
1086
1146
|
time_out: int, default = default_time_out
|
1087
1147
|
- http request timeout for this request
|
1148
|
+
mermaid_only: bool, default is False
|
1149
|
+
- if true only a string representing the mermaid graph will be returned
|
1088
1150
|
|
1089
1151
|
Returns
|
1090
1152
|
-------
|
@@ -1133,11 +1195,7 @@ class MetadataExplorer(Client):
|
|
1133
1195
|
"POST", url, body_slimmer(body), time_out=time_out
|
1134
1196
|
)
|
1135
1197
|
|
1136
|
-
|
1137
|
-
if type(elements) is list:
|
1138
|
-
if len(elements) == 0:
|
1139
|
-
return "No elements found"
|
1140
|
-
return elements
|
1198
|
+
return process_related_element_list(response, mermaid_only)
|
1141
1199
|
|
1142
1200
|
def get_related_metadata_elements(
|
1143
1201
|
self,
|
@@ -1150,6 +1208,7 @@ class MetadataExplorer(Client):
|
|
1150
1208
|
start_from: int = 0,
|
1151
1209
|
page_size: int = max_paging_size,
|
1152
1210
|
time_out: int = default_time_out,
|
1211
|
+
mermaid_only: bool = False,
|
1153
1212
|
) -> list | str:
|
1154
1213
|
"""
|
1155
1214
|
Retrieve the metadata elements connected to the supplied element.
|
@@ -1174,6 +1233,8 @@ class MetadataExplorer(Client):
|
|
1174
1233
|
- maximum number of elements to return.
|
1175
1234
|
time_out: int, default = default_time_out
|
1176
1235
|
- http request timeout for this request
|
1236
|
+
mermaid_only: bool, default is False
|
1237
|
+
- if true only a string representing the mermaid graph will be returned
|
1177
1238
|
|
1178
1239
|
Returns
|
1179
1240
|
-------
|
@@ -1214,6 +1275,7 @@ class MetadataExplorer(Client):
|
|
1214
1275
|
start_from,
|
1215
1276
|
page_size,
|
1216
1277
|
time_out,
|
1278
|
+
mermaid_only,
|
1217
1279
|
)
|
1218
1280
|
)
|
1219
1281
|
return response
|
@@ -1229,6 +1291,7 @@ class MetadataExplorer(Client):
|
|
1229
1291
|
start_from: int = 0,
|
1230
1292
|
page_size: int = max_paging_size,
|
1231
1293
|
time_out: int = default_time_out,
|
1294
|
+
mermaid_only: bool = False,
|
1232
1295
|
) -> list | str:
|
1233
1296
|
"""
|
1234
1297
|
Retrieve the relationships linking the supplied elements.
|
@@ -1254,6 +1317,9 @@ class MetadataExplorer(Client):
|
|
1254
1317
|
- maximum number of elements to return.
|
1255
1318
|
time_out: int, default = default_time_out
|
1256
1319
|
- http request timeout for this request
|
1320
|
+
mermaid_only: bool, default is False
|
1321
|
+
- if true only a string representing the mermaid graph will be returned
|
1322
|
+
|
1257
1323
|
|
1258
1324
|
Returns
|
1259
1325
|
-------
|
@@ -1303,11 +1369,7 @@ class MetadataExplorer(Client):
|
|
1303
1369
|
"POST", url, body_slimmer(body), time_out=time_out
|
1304
1370
|
)
|
1305
1371
|
|
1306
|
-
|
1307
|
-
if type(elements) is list:
|
1308
|
-
if len(elements) == 0:
|
1309
|
-
return "No elements found"
|
1310
|
-
return elements
|
1372
|
+
return process_related_element_list(response, mermaid_only)
|
1311
1373
|
|
1312
1374
|
def get_all_metadata_element_relationships(
|
1313
1375
|
self,
|
@@ -1320,6 +1382,7 @@ class MetadataExplorer(Client):
|
|
1320
1382
|
start_from: int = 0,
|
1321
1383
|
page_size: int = max_paging_size,
|
1322
1384
|
time_out: int = default_time_out,
|
1385
|
+
mermaid_only: bool = False,
|
1323
1386
|
) -> list | str:
|
1324
1387
|
"""
|
1325
1388
|
Retrieve the relationships linking the supplied elements.
|
@@ -1344,6 +1407,8 @@ class MetadataExplorer(Client):
|
|
1344
1407
|
- maximum number of elements to return.
|
1345
1408
|
time_out: int, default = default_time_out
|
1346
1409
|
- http request timeout for this request
|
1410
|
+
mermaid_only: bool, default is False
|
1411
|
+
- if true only a string representing the mermaid graph will be returned
|
1347
1412
|
|
1348
1413
|
Returns
|
1349
1414
|
-------
|
@@ -1384,6 +1449,7 @@ class MetadataExplorer(Client):
|
|
1384
1449
|
start_from,
|
1385
1450
|
page_size,
|
1386
1451
|
time_out,
|
1452
|
+
mermaid_only,
|
1387
1453
|
)
|
1388
1454
|
)
|
1389
1455
|
return response
|
@@ -1400,6 +1466,7 @@ class MetadataExplorer(Client):
|
|
1400
1466
|
start_from: int = 0,
|
1401
1467
|
page_size: int = max_paging_size,
|
1402
1468
|
time_out: int = default_time_out,
|
1469
|
+
mermaid_only: bool = False,
|
1403
1470
|
) -> list | str:
|
1404
1471
|
"""
|
1405
1472
|
Retrieve the relationships linking the supplied elements.
|
@@ -1427,6 +1494,8 @@ class MetadataExplorer(Client):
|
|
1427
1494
|
- maximum number of elements to return.
|
1428
1495
|
time_out: int, default = default_time_out
|
1429
1496
|
- http request timeout for this request
|
1497
|
+
mermaid_only: bool, default is False
|
1498
|
+
- if true only a string representing the mermaid graph will be returned
|
1430
1499
|
|
1431
1500
|
Returns
|
1432
1501
|
-------
|
@@ -1476,11 +1545,7 @@ class MetadataExplorer(Client):
|
|
1476
1545
|
"POST", url, body_slimmer(body), time_out=time_out
|
1477
1546
|
)
|
1478
1547
|
|
1479
|
-
|
1480
|
-
if type(elements) is list:
|
1481
|
-
if len(elements) == 0:
|
1482
|
-
return "No elements found"
|
1483
|
-
return elements
|
1548
|
+
return process_related_element_list(response, mermaid_only)
|
1484
1549
|
|
1485
1550
|
def get_metadata_element_relationships(
|
1486
1551
|
self,
|
@@ -1494,6 +1559,7 @@ class MetadataExplorer(Client):
|
|
1494
1559
|
start_from: int = 0,
|
1495
1560
|
page_size: int = max_paging_size,
|
1496
1561
|
time_out: int = default_time_out,
|
1562
|
+
mermaid_only: bool = False,
|
1497
1563
|
) -> list | str:
|
1498
1564
|
"""
|
1499
1565
|
Retrieve the relationships linking the supplied elements.
|
@@ -1520,6 +1586,9 @@ class MetadataExplorer(Client):
|
|
1520
1586
|
- maximum number of elements to return.
|
1521
1587
|
time_out: int, default = default_time_out
|
1522
1588
|
- http request timeout for this request
|
1589
|
+
mermaid_only: bool, default is False
|
1590
|
+
- if true only a string representing the mermaid graph will be returned
|
1591
|
+
|
1523
1592
|
|
1524
1593
|
Returns
|
1525
1594
|
-------
|
@@ -1561,6 +1630,7 @@ class MetadataExplorer(Client):
|
|
1561
1630
|
start_from,
|
1562
1631
|
page_size,
|
1563
1632
|
time_out,
|
1633
|
+
mermaid_only,
|
1564
1634
|
)
|
1565
1635
|
)
|
1566
1636
|
return response
|
@@ -2098,6 +2168,7 @@ class MetadataExplorer(Client):
|
|
2098
2168
|
start_from: int = 0,
|
2099
2169
|
page_size: int = max_paging_size,
|
2100
2170
|
time_out: int = default_time_out,
|
2171
|
+
mermaid_only: bool = False,
|
2101
2172
|
) -> list | str:
|
2102
2173
|
"""
|
2103
2174
|
Retrieve all the versions of a relationship. Async version.
|
@@ -2123,6 +2194,8 @@ class MetadataExplorer(Client):
|
|
2123
2194
|
- maximum number of elements to return.
|
2124
2195
|
time_out: int, default = default_time_out
|
2125
2196
|
- http request timeout for this request
|
2197
|
+
mermaid_only: bool, default is False
|
2198
|
+
- if true only a string representing the mermaid graph will be returned
|
2126
2199
|
|
2127
2200
|
Returns
|
2128
2201
|
-------
|
@@ -2164,12 +2237,11 @@ class MetadataExplorer(Client):
|
|
2164
2237
|
response: Response = await self._async_make_request(
|
2165
2238
|
"POST", url, body_slimmer(body), time_out=time_out
|
2166
2239
|
)
|
2167
|
-
|
2168
|
-
|
2169
|
-
|
2170
|
-
|
2171
|
-
|
2172
|
-
return elements
|
2240
|
+
rel = response.json().get("relationshipList", "No elements found")
|
2241
|
+
if isinstance(rel, (list, dict)):
|
2242
|
+
return rel.get("elementList", "No elements found")
|
2243
|
+
else:
|
2244
|
+
return rel
|
2173
2245
|
|
2174
2246
|
def get_relationship_history(
|
2175
2247
|
self,
|
@@ -2183,6 +2255,7 @@ class MetadataExplorer(Client):
|
|
2183
2255
|
start_from: int = 0,
|
2184
2256
|
page_size: int = max_paging_size,
|
2185
2257
|
time_out: int = default_time_out,
|
2258
|
+
mermaid_only: bool = False,
|
2186
2259
|
) -> list | str:
|
2187
2260
|
"""
|
2188
2261
|
Retrieve all the versions of a relationship.
|
@@ -2208,6 +2281,8 @@ class MetadataExplorer(Client):
|
|
2208
2281
|
- maximum number of elements to return.
|
2209
2282
|
time_out: int, default = default_time_out
|
2210
2283
|
- http request timeout for this request
|
2284
|
+
mermaid_only: bool, default is False
|
2285
|
+
- if true only a string representing the mermaid graph will be returned
|
2211
2286
|
|
2212
2287
|
Returns
|
2213
2288
|
-------
|
@@ -2237,6 +2312,7 @@ class MetadataExplorer(Client):
|
|
2237
2312
|
start_from,
|
2238
2313
|
page_size,
|
2239
2314
|
time_out,
|
2315
|
+
mermaid_only,
|
2240
2316
|
)
|
2241
2317
|
)
|
2242
2318
|
return response
|
pyegeria/valid_metadata_omvs.py
CHANGED
@@ -1421,7 +1421,7 @@ class ValidMetadataManager(Client):
|
|
1421
1421
|
url = f"{self.platform_url}/servers/{self.view_server}{self.valid_m_command_base}/open-metadata-types"
|
1422
1422
|
|
1423
1423
|
resp = await self._async_make_request("GET", url)
|
1424
|
-
return resp.json()
|
1424
|
+
return resp.json()
|
1425
1425
|
|
1426
1426
|
def get_all_entity_types(self) -> list | str:
|
1427
1427
|
"""Returns the list of different types of metadata organized into two groups. The first are the
|
@@ -52,6 +52,8 @@ pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot
|
|
52
52
|
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.36.42@2x.png,sha256=ki-tG_CkXAa-SGajxkfkwHPaOw2uipUKYRf9H86FB_k,27874
|
53
53
|
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.36.55@2x.png,sha256=Y3XWP5RB8tY93ChiAHEGU1oc-o5O-3RRoAIs9SnHdLc,98769
|
54
54
|
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.37.07@2x.png,sha256=pJZ0Yz5bXAadZasEBzUTxFy_VRB216saLD6OkyjnOWQ,455058
|
55
|
+
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-12-06 at 08.46.30@2x.png,sha256=IbIpTsOAKt-TyvH-_tTG9_jemENgeVZ5QIoMuVLhHFo,950898
|
56
|
+
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-12-06 at 11.27.56@2x.png,sha256=PZKjjJIht9SUouRNu5m5gNmc62mI0BXycnS7GLCbLxA,337971
|
55
57
|
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/catalogs 2024-11-25 at 16.28.53@2x.png,sha256=VXRq9sOKApd5Vm1w5GwABI4RJM1V50R8S_rjQfNV3QI,171649
|
56
58
|
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
|
57
59
|
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
|
@@ -173,7 +175,7 @@ pyegeria/full_omag_server_config.py,sha256=k3fUfopAFAE3OKkFR7zZPiki_FYj6j2xQ4oD2
|
|
173
175
|
pyegeria/glossary_browser_omvs.py,sha256=NcitYaZJqwVODBO5zBtWpXPNUJJ3DKzEbRaOFSAyUlg,93554
|
174
176
|
pyegeria/glossary_manager_omvs.py,sha256=SWgPGkRag5hOXYM-cpbWI6oW_DXUZBt4ePtmOP7ZYUc,128787
|
175
177
|
pyegeria/mermaid_utilities.py,sha256=GXiS-subb5nJcDqlThZWX2T8WspU1neFfhf4TxRoMh4,8344
|
176
|
-
pyegeria/metadata_explorer_omvs.py,sha256=
|
178
|
+
pyegeria/metadata_explorer_omvs.py,sha256=1Uf8xlRx440hRmUZxvRJHbUBQeuZgsL31j9D_1J3o9Y,85615
|
177
179
|
pyegeria/my_profile_omvs.py,sha256=DyECbUFEcgokrIbzdMMNljC3bqfqKGXAF2wZEpzvRYs,34666
|
178
180
|
pyegeria/platform_services.py,sha256=CJIOYIFEbcIGwdWlApAQcXxZTsdrhFtpJcm4O3p7dG0,41646
|
179
181
|
pyegeria/project_manager_omvs.py,sha256=Y7Lyqh4jIujJrr_Ub7feo904FN_uz4R10T4hKhqE1Uw,67499
|
@@ -182,10 +184,10 @@ pyegeria/runtime_manager_omvs.py,sha256=ygrY5I_oSoJQun05W7wSNbZT_nOtPp_BkIKKFCLF
|
|
182
184
|
pyegeria/server_operations.py,sha256=ciH890hYT85YQ6OpByn4w7s3a7TtvWZpIG5rkRqbcI0,16766
|
183
185
|
pyegeria/template_manager_omvs.py,sha256=heqbKeum5hPCHap4r1RUZU8YB3QaQlxVNbq4GZimJtE,42450
|
184
186
|
pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
|
185
|
-
pyegeria/valid_metadata_omvs.py,sha256=
|
187
|
+
pyegeria/valid_metadata_omvs.py,sha256=kmcyXBsu99L25r16w9xVXqU_KwADsGuft4yPDZzyUds,65032
|
186
188
|
pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
|
187
|
-
pyegeria-5.2.0.
|
188
|
-
pyegeria-5.2.0.
|
189
|
-
pyegeria-5.2.0.
|
190
|
-
pyegeria-5.2.0.
|
191
|
-
pyegeria-5.2.0.
|
189
|
+
pyegeria-5.2.0.10.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
190
|
+
pyegeria-5.2.0.10.dist-info/METADATA,sha256=AR9GWexnjhSGIuUeXkVdOQyLxU904RF_mZb2LzcAE7M,2880
|
191
|
+
pyegeria-5.2.0.10.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
192
|
+
pyegeria-5.2.0.10.dist-info/entry_points.txt,sha256=JhYgb02izlV2wb7SIfCOMxeVISUd9YJvgDW1-kuHad4,5240
|
193
|
+
pyegeria-5.2.0.10.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|