What should you do?

You need to produce a list of the enabled Google Cloud Platform APIs for a GCP project using the gcloud command line in the Cloud Shell. The project name is my-project.

What should you do?
A . Run gcloud projects list to get the project ID, and then run gcloud services list –project <project ID>.
B . Run gcloud init to set the current project to my-project, and then run gcloud services list — available.
C . Run gcloud info to view the account value, and then run gcloud services list –account <Account>.
D . Run gcloud projects describe <project ID> to verify the project value, and then run gcloud services list –available.

Answer: A

Explanation:

`gcloud services list –available` returns not only the enabled services in the project but also services that CAN be enabled.

https://cloud.google.com/sdk/gcloud/reference/services/list#–available

Run the following command to list the enabled APIs and services in your current project:

gcloud services list

whereas, Run the following command to list the APIs and services available to you in your current project:

gcloud services list Cavailable

https://cloud.google.com/sdk/gcloud/reference/services/list#–available –available

Return the services available to the project to enable. This list will include any services that the project has already enabled.

To list the services the current project has enabled for consumption, run:

gcloud services list –enabled

To list the services the current project can enable for consumption, run:

gcloud services list Cavailable

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments