pyegeria 5.4.0.19__py3-none-any.whl → 5.4.0.22__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/_client_new.py +401 -87
- pyegeria/_exceptions_new.py +35 -13
- pyegeria/_output_formats.py +3 -3
- pyegeria/collection_manager.py +570 -1386
- pyegeria/collection_manager_omvs.py +1 -1
- pyegeria/models.py +5 -4
- {pyegeria-5.4.0.19.dist-info → pyegeria-5.4.0.22.dist-info}/METADATA +1 -1
- {pyegeria-5.4.0.19.dist-info → pyegeria-5.4.0.22.dist-info}/RECORD +11 -11
- {pyegeria-5.4.0.19.dist-info → pyegeria-5.4.0.22.dist-info}/LICENSE +0 -0
- {pyegeria-5.4.0.19.dist-info → pyegeria-5.4.0.22.dist-info}/WHEEL +0 -0
- {pyegeria-5.4.0.19.dist-info → pyegeria-5.4.0.22.dist-info}/entry_points.txt +0 -0
@@ -6487,7 +6487,7 @@ class CollectionManager(Client2):
|
|
6487
6487
|
output_formats = select_output_format_set(output_format_set, output_format)
|
6488
6488
|
if isinstance(output_format_set, dict):
|
6489
6489
|
output_formats = get_output_format_type_match(output_format_set, output_format)
|
6490
|
-
# If no output_format was set, then use the
|
6490
|
+
# If no output_format was set, then use the collection_type to lookup the output format
|
6491
6491
|
elif classification_name:
|
6492
6492
|
output_formats = select_output_format_set(classification_name, output_format)
|
6493
6493
|
else:
|
pyegeria/models.py
CHANGED
@@ -283,7 +283,7 @@ class TemplateRequestBody(PyegeriaModel):
|
|
283
283
|
parent_guid: str | None = None
|
284
284
|
parent_relationship_type_name: str | None = None
|
285
285
|
parent_at_end_1: bool | None = True
|
286
|
-
template_guid: str
|
286
|
+
template_guid: str
|
287
287
|
replacement_properties: dict[str, Any] = {}
|
288
288
|
placeholder_properties: dict[str, Any] = {}
|
289
289
|
|
@@ -291,8 +291,9 @@ class TemplateRequestBody(PyegeriaModel):
|
|
291
291
|
class UpdateElementRequestBody(PyegeriaModel):
|
292
292
|
class_: Annotated[Literal["UpdateElementRequestBody"], Field(alias="class")]
|
293
293
|
properties: dict[str, Any] = {}
|
294
|
-
|
295
|
-
|
294
|
+
merge_update: bool | None = True
|
295
|
+
external_source_guid: str = None
|
296
|
+
external_source_name: str = None
|
296
297
|
effective_time: datetime | None = None
|
297
298
|
for_lineage: bool | None = False
|
298
299
|
for_duplicate_processing: bool | None = False
|
@@ -310,7 +311,7 @@ class UpdateStatusRequestBody(PyegeriaModel):
|
|
310
311
|
|
311
312
|
class GetRequestBody(PyegeriaModel):
|
312
313
|
class_: Annotated[Literal["GetRequestBody"], Field(alias="class")]
|
313
|
-
|
314
|
+
metadata_element_type_name: str | None = None
|
314
315
|
metadata_element_subtype_names: list[str] | None = None
|
315
316
|
skip_relationships: list[str] | None = None
|
316
317
|
include_only_relationships: list[str] | None = None
|
@@ -186,19 +186,19 @@ md_processing/md_processing_utils/message_constants.py,sha256=UBf18obM83umM6zplR
|
|
186
186
|
pyegeria/README.md,sha256=PwX5OC7-YSZUCIsoyHh1O-WBM2hE84sm3Bd4O353NOk,1464
|
187
187
|
pyegeria/__init__.py,sha256=sss-OnA9rioFSyer-KzJ9dBcHwLuVMs9g5xBFsB1xJE,31708
|
188
188
|
pyegeria/_client.py,sha256=hJHn5pD8sbelP_M9dK-M5Z2CYqpRXzXfg1UCgAdQ6dQ,33416
|
189
|
-
pyegeria/_client_new.py,sha256=
|
189
|
+
pyegeria/_client_new.py,sha256=RtBuGapIUymEnoVa55XkuHgIII7hvrkcQTu8xsfAzTA,46824
|
190
190
|
pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8MdpmVCQ,17264
|
191
191
|
pyegeria/_exceptions.py,sha256=1SrnV194V4_YJNnNAU0myTHQ3dhLn4GF2B2gZcj1u90,18153
|
192
|
-
pyegeria/_exceptions_new.py,sha256=
|
192
|
+
pyegeria/_exceptions_new.py,sha256=HaaPdza3tiWBhkIJakXSM51CO546jtvHdRYrCYy7dhA,19336
|
193
193
|
pyegeria/_globals.py,sha256=qSU5hM4uuJZPp-YapEEKxfcdgH9hauc6R7gRkELLroY,1132
|
194
194
|
pyegeria/_output_format_models.py,sha256=nVCq8usYiRqSGcolDEadkZNzzWISJBGwrvY2-56ndi8,12756
|
195
|
-
pyegeria/_output_formats.py,sha256=
|
195
|
+
pyegeria/_output_formats.py,sha256=70S5g1Ss9ih0n0D5IGSUAl2pZKI1Ea42-xQ11iMW0WY,24189
|
196
196
|
pyegeria/_validators.py,sha256=pNxND0dN2qvyuGE52N74l1Ezfrh2p9Hao2ziR_t1ENI,7425
|
197
197
|
pyegeria/asset_catalog_omvs.py,sha256=P6FceMP0FgakGSOt3ePxpEbsF7nnypzo1aQahjdL_94,29021
|
198
198
|
pyegeria/automated_curation_omvs.py,sha256=tzwCyXL0Hx8UjryBBWcPoEuBRajXZpLuwPQ1vuOg2yc,130349
|
199
199
|
pyegeria/classification_manager_omvs.py,sha256=kMyDP_dtHf2czU4ZlWYrakQtccPoteadlUCpWRRFJ1Q,187235
|
200
|
-
pyegeria/collection_manager.py,sha256=
|
201
|
-
pyegeria/collection_manager_omvs.py,sha256=
|
200
|
+
pyegeria/collection_manager.py,sha256=co-2kNUVBXC1zWlU4FgEtMV6jQCcuf3B_lcPbjVA78o,226313
|
201
|
+
pyegeria/collection_manager_omvs.py,sha256=hgPlwM3nJx0lSNp-j4XN1Wvc84MKMntiSz_fzZhdckI,285673
|
202
202
|
pyegeria/collection_models.py,sha256=d3DdWONqDdAeuUQgussiCNfvhKIDFpaI35cdW_Tv4_0,5315
|
203
203
|
pyegeria/core_omag_server_config.py,sha256=pNQpocICkZx8sRsTw5DPUe-TFyxlIo1U88qqgci_f7I,97764
|
204
204
|
pyegeria/create_tech_guid_lists.py,sha256=hf5q8Xrdsz-bqeIW3yTORZ1XB6_BrKzLDWWwC_bNG2g,4811
|
@@ -221,7 +221,7 @@ pyegeria/md_processing_utils.py,sha256=KRESCqAYjCgHRAdhHH49lLDDhaq740CUlqTG0bN-6
|
|
221
221
|
pyegeria/md_processing_utils_orig.py,sha256=SToZtXQiysi2_vmIY4-T2NIELRirzQ1zjkho_2jFsNE,52603
|
222
222
|
pyegeria/mermaid_utilities.py,sha256=Zcn8JRrqtf62oHoxuvP9tQ5G-BFxOGMNfr7-peuykgY,54290
|
223
223
|
pyegeria/metadata_explorer_omvs.py,sha256=xHnZTQKbd6XwOhYia-RiIisrvZcqHi0SL1l6OCf04Gk,86911
|
224
|
-
pyegeria/models.py,sha256=
|
224
|
+
pyegeria/models.py,sha256=_V7bp68hQI_zS_EoBVws0FA13N4TQ0MQEfdKji5kqz8,18093
|
225
225
|
pyegeria/my_profile_omvs.py,sha256=d0oJYCJG7pS9BINPuGciVa00ac0jwPHNANXDCLginEc,34720
|
226
226
|
pyegeria/output_formatter.py,sha256=sYsya_RSax6ExstJ3qjAGrgIhWM5Tdsyt-Vni5T5p64,25942
|
227
227
|
pyegeria/platform_services.py,sha256=AJNa8n2mKfAMK68q886YCD-p5bpCxIlCxBsRdr0R9O4,41708
|
@@ -234,8 +234,8 @@ pyegeria/template_manager_omvs.py,sha256=chBljs1vy5wr9DRAtbvIt4Cob_7HxGfxLkCNlDT
|
|
234
234
|
pyegeria/utils.py,sha256=CAh8LItgmGf5UHIYeYAOE4roHg1wuBk3zQ1lxK7lcZA,6805
|
235
235
|
pyegeria/valid_metadata_omvs.py,sha256=Xq9DqBQvBFFJzaFIRKcVZ2k4gJvSh9yeXs_j-O3vn1w,65050
|
236
236
|
pyegeria/x_action_author_omvs.py,sha256=RcqSzahUKCtvb_3u_wyintAlc9WFkC_2v0E12TZs8lQ,6433
|
237
|
-
pyegeria-5.4.0.
|
238
|
-
pyegeria-5.4.0.
|
239
|
-
pyegeria-5.4.0.
|
240
|
-
pyegeria-5.4.0.
|
241
|
-
pyegeria-5.4.0.
|
237
|
+
pyegeria-5.4.0.22.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
238
|
+
pyegeria-5.4.0.22.dist-info/METADATA,sha256=eZFaWE4V2whnI2fmnRzvC--qmWAntLq_Gnydwdar4pY,3031
|
239
|
+
pyegeria-5.4.0.22.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
240
|
+
pyegeria-5.4.0.22.dist-info/entry_points.txt,sha256=HAS-LHaaBfkaZ19XU9g5mXwn2uj2HK99isdijI-VIDk,6353
|
241
|
+
pyegeria-5.4.0.22.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|