Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
How can you enable developers to test the latest revisions of a Cloud Run-hosted service at https://booking-engine-abcdef.a.run.app via HTTPS requests before the service is made available to customers?
https://booking-engine-abcdef.a.run.app
A
Run the gcloud run deploy booking-engine --no-traffic --tag dev command. Use the https://dev--booking-engine-abcdef.a.run.app URL for testing.
B
Run the gcloud run services update-traffic booking-engine --to-revisions LATEST=1 command. Use the https://booking-engine-abcdef.a.run.app URL for testing.
C
Pass the curl –H “Authorization:Bearer $(gcloud auth print-identity-token)” auth token. Use the https://booking-engine-abcdef.a.run.app URL to test privately.
D
Grant the roles/run.invoker role to the developers testing the booking-engine service. Use the https://booking-engine-abcdef.private.run.app URL for testing.