AlejandroMorgante commented on code in PR #68479:
URL: https://github.com/apache/airflow/pull/68479#discussion_r3447446046


##########
providers/google/src/airflow/providers/google/cloud/triggers/vertex_ai.py:
##########
@@ -126,6 +130,213 @@ def _serialize_job(self, job: Any) -> Any:
         return self.job_serializer_class.to_dict(job)
 
 
+class AgentEngineDeleteTrigger(BaseTrigger):
+    """Trigger that waits until a Vertex AI Agent Engine no longer exists."""
+
+    def __init__(
+        self,
+        project_id: str,
+        location: str,
+        agent_engine_id: str,
+        gcp_conn_id: str = "google_cloud_default",
+        impersonation_chain: str | Sequence[str] | None = None,
+        poll_interval: float = 30,
+        timeout: float | None = None,
+        operation_name: str | None = None,
+    ):
+        super().__init__()
+        self.project_id = project_id

Review Comment:
   Removed



-- 
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