The correct command to list log buckets is 'gcloud logging buckets list' with the project flag.
Step 2: Identify incorrect syntax
gcloud logging buckets show --project=my-project uses 'show' which is for single bucket details, not listing; options B and C have wrong order of words.
Final Answer:
gcloud logging buckets list --project=my-project -> Option A
Quick Check:
List buckets command = 'gcloud logging buckets list' [OK]
Quick Trick:Use 'gcloud logging buckets list' to list buckets [OK]
Common Mistakes:
Swapping command words order
Using 'show' instead of 'list' for multiple buckets
Omitting the project flag
Master "Cloud Monitoring and Logging" in GCP
9 interactive learning modes - each teaches the same concept differently