The GCS files api is turned down on July 28th, 2015. In my development server I got the following warning:
The Google Cloud Storage Java API is deprecated and will soon be removed. Please use the Google Cloud Storage Client library instead. Migration documentation is available here: https://cloud.google.com/appengine/docs/java/googlecloudstorageclient/migrate
I have downloaded the latest version of the appengine-gcs-client from the git repository referenced in the official migration documentation. But I still got the warning in my dev server. I checked all my dependencies but it seems that the only reference to the files api is located inside the appengine-gcs-client library itself. It is used in LocalRawGcsService.java (which I think is used in the dev server only).
As I have not seen a deprecation warning in my productive logs I think I do not have a problem, but I seriously wonder why they annoy me with that warning.
- Am I missing something important?
- Will I be able to use the appengine-gcs-client library in my productive environment and/or in my dev server after they have turned down the service?