Complete the code to list all billing accounts using gcloud CLI.
gcloud [1] billing accounts listThe gcloud billing accounts list command lists all billing accounts accessible to you.
Complete the code to create a budget for a billing account using gcloud CLI.
gcloud beta billing budgets create --billing-account=[1] --amount=1000 --display-name="My Budget"
The billing account ID looks like a string with numbers and letters separated by dashes, e.g., 012345-6789AB-CDEF01.
Fix the error in the command to update a budget amount.
gcloud beta billing budgets update [1] --amount=1500
The update command requires the budget name or ID as a positional argument, not flags.
Fill both blanks to create a budget filter for projects and services.
gcloud beta billing budgets create --billing-account=[1] --filter='projects:[2]'
The billing account ID is needed first, then the project ID is used in the filter.
Fill all three blanks to list budgets for a billing account with gcloud CLI.
gcloud beta billing budgets list --billing-account=[1] --format=[2] --filter=[3]
Use the billing account ID, format as table for readability, and filter by display name.