
Ultimate access to all questions.
How can you configure a Cloud Storage trigger for your application that activates only when a specific file is updated, while ensuring the solution is flexible enough to accommodate future trigger changes and maintain simplicity for team members to modify?
A
Configure Cloud Storage events to be sent to Pub/Sub, and use Pub/Sub events to trigger a Cloud Build job that executes your application.
B
Create an Eventarc trigger that monitors your Cloud Storage bucket for a specific filename, and set the target as Cloud Run.
C
Configure a Cloud Function that executes your application and is triggered when an object is updated in Cloud Storage.
D
Configure a Firebase function that executes your application and is triggered when an object is updated in Cloud Storage.