You are tasked with deploying a new Google Cloud Storage bucket named `analytics-data-dump` in the `us-central1` region using the modern Google Cloud CLI (`gcloud`). Which command should you run to create this bucket following Google Cloud best practices?
- gcloud storage buckets create gs://analytics-data-dump --location=us-central1Cevap
- Bgcloud storage buckets make gs://analytics-data-dump --region=us-central1
- Cgsutil mb -l us-central1 bucket://analytics-data-dump
- Dgcloud compute buckets create analytics-data-dump --zone=us-central1-a
Cevap
The command `gcloud storage buckets create gs://analytics-data-dump --location=us-central1` correctly deploys a Cloud Storage bucket using the unified Google Cloud CLI.
The correct command uses `gcloud storage buckets create` along with the standard `gs://` prefix and the `--location` flag to specify the target GCP region (`us-central1`). This aligns with current Google Cloud CLI best practices.
Adım Adım Çözüm
Anahtar Kavram
Deploying Cloud Storage buckets using modern gcloud storage commands