We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4f8356 commit b4c3650Copy full SHA for b4c3650
1 file changed
pyatlan/client/atlan.py
@@ -400,6 +400,13 @@ def purge_entity_by_guid(self, guid) -> AssetMutationResponse:
400
)
401
return AssetMutationResponse(**raw_json)
402
403
+ def delete_entity_by_guid(self, guid) -> AssetMutationResponse:
404
+ raw_json = self._call_api(
405
+ DELETE_ENTITY_BY_GUID.format_path_with_params(guid),
406
+ {"deleteType": AtlanDeleteType.SOFT.value},
407
+ )
408
+ return AssetMutationResponse(**raw_json)
409
+
410
def search(self, criteria: IndexSearchRequest) -> SearchResults:
411
raw_json = self._call_api(
412
INDEX_SEARCH,
0 commit comments