bwillemo
bwillemo

Reputation: 71

Connect to Google Cloud Datastore from Google Managed VM (Custom/Java)?

Is it possible to connect to Google Cloud Datastore from Google App Engine Custom Managed VM for Java? I believe it is possible from the Standard Managed VM, but is it possible from the Custom ones?

Upvotes: 1

Views: 92

Answers (1)

Doug Richardson
Doug Richardson

Reputation: 10811

Yes.

Standard Managed VMs

From Using the Java Managed VM Environment:

The Java runtime is available as a Managed VM standard runtime. A standard runtime supports a subset of the App Engine service APIs. Currently, Managed VMs support these services:

  • Datastore
  • Logging
  • Memcache
  • Search
  • Task Queue
  • URL Fetch
  • Users

Managed VM with Custom Runtime

From Building Custom Runtimes: Accessing Cloud Platform services:

Runtimes in Managed VMs can access any Google or third party services via standard APIs.

Everything Else

You can also connect to Google Cloud Datastore from anywhere, using the Datastore REST API.

Upvotes: 2

Related Questions