0

We have a Java application running on Google App engine. We are using cloud datastore also and we created around 150 indexes in datastore.

I can see what are the indexes from GCP UI console.

I just want to see the list of indexes in local using Gcloud / appcfg tool , How can I do this ?

Thanks

Rams
  • 2,141
  • 5
  • 33
  • 59

2 Answers2

1

Neither of the tools has such capability, at least not presently.

AFAIK your only alternative would be to obtain the index configurations using the approach I described in the answer to your related question How generate datastore-indexes.xml in Google App engine application (Java)

Dan Cornilescu
  • 39,470
  • 12
  • 57
  • 97
0

As of gcloud 211.0.0 you can list your composite indexes with gcloud beta datastore indexes list .

Jim Morrison
  • 2,784
  • 1
  • 7
  • 11