Complete the code to output the name of the Google Cloud project.
gcloud config get-value [1]The command gcloud config get-value project outputs the current Google Cloud project name.
Complete the command to list all Compute Engine instances in JSON format.
gcloud compute instances list --format=[1]The --format=json flag outputs the list in JSON format.
Fix the error in the command to output only the instance names in a list.
gcloud compute instances list --format='value([1])'
The value(name) format outputs only the instance names as a list.
Fill both blanks to output instance names and their zones in a table format.
gcloud compute instances list --format='table([1], [2])'
The table(name, zone) format outputs a table with instance names and zones.
Fill all three blanks to output instance names, zones, and their status filtered by RUNNING state.
gcloud compute instances list --filter='status=[1]' --format='table([2], [3], status)'
The filter status=RUNNING selects running instances. The table shows name, zone, and status columns.