phanikumv commented on code in PR #30579:
URL: https://github.com/apache/airflow/pull/30579#discussion_r1170135979
##########
airflow/providers/google/cloud/triggers/gcs.py:
##########
@@ -97,3 +99,101 @@ async def _object_exists(self, hook: GCSAsyncHook,
bucket_name: str, object_name
if object_response:
return "success"
return "pending"
+
+
+class GCSCheckBlobUpdateTimeTrigger(BaseTrigger):
+ """
+ A trigger that makes an async call to GCS to check whether the object is
updated in a bucket.
+
+ :param bucket: google cloud storage bucket name cloud storage where the
objects are residing.
+ :param object_name: the file or folder present in the bucket
+ :param ts: datetime object
Review Comment:
added missing description of meaning of param
--
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]