rawwar commented on code in PR #54597:
URL: https://github.com/apache/airflow/pull/54597#discussion_r2297793856


##########
airflow-core/src/airflow/api_fastapi/core_api/datamodels/common.py:
##########
@@ -77,6 +77,14 @@ class BulkUpdateAction(BulkBaseAction[T]):
 
     action: Literal[BulkAction.UPDATE] = Field(description="The action to be 
performed on the entities.")
     entities: list[T] = Field(..., description="A list of entities to be 
updated.")
+    update_mask: list[str] | None = Field(
+        default=None,
+        description=(
+            "A list of field names to update for each entity. "
+            "Only these fields will be applied from the request body to the 
database model. "

Review Comment:
   ```suggestion
               "A list of field names to update for each entity."
               "Only these fields will be applied from the request body to the 
database model."
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to