Complete the code to create a Cloud Storage bucket named 'my-data-bucket'.
gsutil mb gs://[1]/The command gsutil mb creates a new Cloud Storage bucket. The bucket name must be unique and is placed after gs://.
Complete the code to create a BigQuery dataset named 'analytics_data'.
bq mk [1]The bq mk command creates a new BigQuery dataset. The dataset name should be descriptive and follow naming rules.
Fix the error in the command to load data from a CSV file into BigQuery table 'sales_data'.
bq load --source_format=CSV [1].sales_data gs://my-bucket/sales.csvThe bq load command requires the dataset name before the file path and table name. Here, 'mydataset' is the dataset where the table 'sales_data' will be created or updated.
Fill both blanks to create a Pub/Sub topic named 'data-updates' and publish a message 'Hello' to it.
gcloud pubsub topics create [1] gcloud pubsub topics publish [2] --message="Hello"
Both commands must use the exact same topic name 'data-updates' to create and then publish a message to that topic.
Fill all three blanks to define a Cloud Function named 'processData' triggered by a Pub/Sub topic 'data-topic' with runtime 'python39'.
gcloud functions deploy [1] --runtime=[2] --trigger-topic=[3] --entry-point=main
The Cloud Function name is 'processData', the runtime is 'python39', and the trigger topic is 'data-topic'. These must match exactly for the function to deploy and trigger correctly.