Lee-W commented on code in PR #45960:
URL: https://github.com/apache/airflow/pull/45960#discussion_r1967132125
##########
task_sdk/src/airflow/sdk/api/client.py:
##########
@@ -331,6 +332,30 @@ def get(self, name: str | None = None, uri: str | None =
None) -> AssetResponse:
return AssetResponse.model_validate_json(resp.read())
+class AssetEventOperations:
+ __slots__ = ("client",)
+
+ def __init__(self, client: Client):
+ self.client = client
+
+ def get(
+ self, name: str | None = None, uri: str | None = None, alias_name: str
| None = None
+ ) -> AssetEventCollectionResponse:
+ """Get Asset value from the API server."""
Review Comment:
updated, thanks!
--
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]