Complete the code to create a Cloud Storage bucket for backups.
gcloud storage buckets create [1] --location=us-central1The bucket name must be globally unique and descriptive. "backup-bucket-123" is a valid example.
Complete the command to create a backup of a Cloud SQL instance.
gcloud sql backups create --instance=[1]The instance name must match the Cloud SQL instance you want to back up. "sql-instance-01" is a typical instance name.
Fix the error in the command to restore a Cloud SQL instance from a backup.
gcloud sql instances restore-backup [1] --backup-id=12345
The instance name should be provided as a positional argument without flags in this command.
Fill both blanks to configure automated backups for a Cloud SQL instance.
gcloud sql instances patch [1] --backup-start-time=[2]
Use the correct instance name and specify the backup start time in 24-hour format.
Fill all three blanks to create a backup export of a Cloud SQL database to Cloud Storage.
gcloud sql export sql [1] gs://[2]/[3].sql --database=mydb
Specify the correct instance name, the bucket name, and a descriptive filename for the export.