Google Cloud Deployment Manager API does not exist

I’m new to Serverless Framework & Google Cloud :slight_smile:
Please bear with me.

I’m following the quick start and now I’m stuck here. It seems that GCloud now has Google Cloud Deployment Manager V2 API and it’s already enabled. Is it a compatibility problem with version 2?

$ serverless deploy
Serverless: Packaging service...
Serverless: Excluding development dependencies...
Serverless: Compiling function "first"...

  Error --------------------------------------------------

  Error: Access Not Configured. Google Cloud Deployment Manager API has not been used in project 1043443670838 before or it is dis
abled. Enable it by visiting https://console.developers.google.com/apis/api/deploymentmanager.googleapis.com/overview?project=1043
443670838 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.

     For debugging logs, run again after setting the "SLS_DEBUG=*" environment variable.

  Get Support --------------------------------------------
     Docs:          docs.serverless.com
     Bugs:          github.com/serverless/serverless/issues
     Issues:        forum.serverless.com

  Your Environment Information -----------------------------
     OS:                     linux
     Node Version:           8.11.1
     Serverless Version:     1.27.2

I don’t Know whether you found the solution , but you need to replace the project below field on the serverless.yml file with name of the project-ID

  name: google
  runtime: nodejs
  project: my-project
  # the path to the credentials file needs to be absolute
  credentials: ~/.gcloud/keyfile.json``` 

all the best