yujingz
yujingz

Reputation: 2389

What's the difference between Google Cloud SDK and App Engine SDK

They seem to do the same job but why are they separately listed?

Upvotes: 15

Views: 3119

Answers (2)

Hai Shang
Hai Shang

Reputation: 1

And for maven plugin, Google Cloud Platform provides guide to migrate from App Engine SDK plugin to Cloud SDK plugin: https://cloud.google.com/appengine/docs/standard/java/tools/migrate-maven

Upvotes: 0

Andrei Volgin
Andrei Volgin

Reputation: 41089

From the documentation:

Google Cloud SDK contains tools and libraries that enable you to easily create and manage resources on Google Cloud Platform, including App Engine, Compute Engine, Cloud Storage, BigQuery, Cloud SQL, and Cloud DNS.

Google Cloud SDK contains both the preview version of a new App Engine's command-line tool gcloud preview app, and App Engine Java, Python, PHP and Go SDKs.

So, the Cloud SDK is a wider set of tools that includes the App Engine SDK (for different run times) and much more.

Upvotes: 12

Related Questions