We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1270520 commit 88fe34eCopy full SHA for 88fe34e
1 file changed
pyatlan/client/atlan.py
@@ -377,11 +377,12 @@ def upsert(
377
entity: Union[Asset, list[Asset]],
378
replace_classifications: bool = False,
379
replace_custom_metadata: bool = False,
380
+ overwrite_custom_metadata: bool = False,
381
) -> AssetMutationResponse:
382
query_params = {
383
"replaceClassifications": replace_classifications,
384
"replaceBusinessAttributes": replace_custom_metadata,
- "overwriteBusinessAttribute": replace_custom_metadata,
385
+ "overwriteBusinessAttributes": overwrite_custom_metadata,
386
}
387
entities: list[Asset] = []
388
if isinstance(entity, list):
0 commit comments