Ultimate access to all questions.
To create a Google Cloud Storage regional bucket named 'logs-archive' in the Los Angeles region (us-west2) using the Coldline storage class to minimize costs and retain files for 10 years, which command should you execute?
Explanation:
The correct command is gsutil mb -l us-west2 -s coldline --retention 10y gs://logs-archive
. This command correctly specifies the Los Angeles region (us-west2), uses the Coldline storage class for cost efficiency, and sets the retention period to 10 years. Other options either use incorrect storage classes, wrong region names, or incorrect retention periods. For more details, refer to the Google Cloud Storage documentation and location guide.