Ultimate access to all questions.
Your team's engineer has deployed multiple new versions of a NodeJS application on Google App Engine Standard, and you're worried these new versions might be serving traffic. You need to list all application versions currently receiving traffic, including the percentage of traffic each is handling. What action should you take?
Explanation:
The correct command is gcloud app versions list --hide-no-traffic
, as it specifically lists versions that are receiving traffic by excluding those that aren't. This meets the requirement precisely. Other options either include versions not receiving traffic or use non-existent flags (--show-traffic
, --traffic
), making them incorrect. Reference: Google Cloud SDK Documentation.