A video streaming platform is implementing an automated ingest workflow in Google Cloud. A DevOps engineer needs to create a new Cloud Storage bucket named `media-raw-uploads-2026` in the `us-central1` region using modern `gcloud storage` CLI tools. The bucket design mandates two strict compliance and operational rules: all access permissions must be managed strictly at the bucket level rather than per-object ACLs, and all uploaded raw video files must automatically transition to Coldline storage 30 days after creation to manage storage expenditure. The lifecycle configuration policy has already been saved locally in a file named `lifecycle.json`. Which TWO commands should the engineer run to provision this bucket according to Google-recommended best practices?
- gcloud storage buckets create gs://media-raw-uploads-2026 --location=us-central1 --uniform-bucket-level-accessAnswer
- gcloud storage buckets update gs://media-raw-uploads-2026 --lifecycle-file=lifecycle.jsonAnswer
- Cgsutil lifecycle set lifecycle.json gs://media-raw-uploads-2026
- Dgcloud storage buckets create gs://media-raw-uploads-2026 --location=us-central1 --default-storage-class=COLDLINE