Google Cloud Certified Associate Cloud Engineer Practice

Disable ads (and more) with a membership for a one time $2.99 payment

Prepare for the Google Cloud Certified Associate Cloud Engineer Exam. Engage with interactive quizzes and detailed explanations tailored to help you master key concepts. Ensure you're ready for a successful career in the cloud computing industry!

Practice this question and more.


The command to create a Deployment Manager deployment.

  1. `gcloud deploy create`

  2. `gcloud deployment create`

  3. `gcloud deploy manager create`

  4. `gcloud deployment-manager deployments create`

The correct answer is: `gcloud deployment-manager deployments create`

The command to create a Deployment Manager deployment is `gcloud deployment-manager deployments create`. Option A (`gcloud deploy create`) is incorrect as the correct command for deploying can be achieved with `gcloud deploy`; adding `create` at the end will generate an error. Option B (`gcloud deployment create`) is incorrect as it is missing the keyword `manager`, which is necessary for the Deployment Manager command to work. Option C (`gcloud deploy manager create`) is incorrect as it is missing the keyword `-deployment`, which specifies that the command is for creating a new deployment. Therefore, the only correct option is option D (`gcloud deployment-manager deployments create`).