Reputation: 533
I am trying to export a file from local to Google cloud storage. I am importing some storage related libraries for this purpose.
import com.google.api.services.storage.Storage;
import com.google.api.services.storage.StorageScopes;
import com.google.api.services.storage.model.Bucket;
import com.google.api.services.storage.model.StorageObject;
I am using google plugin for eclipse to add API related libraries. But I am not able to find specific API which I need to add for the above mentioned libraries. Can you please help?
Upvotes: 0
Views: 44
Reputation: 163
You can consult this url for the client library of the cloud storage API. Also this one gives you a summary of the classes related to that API and methods used inside.
Upvotes: 1
Reputation: 3251
It sounds like you're probably looking for the Cloud Storage API client library. The JavaDoc, at least, contains the types you've listed in your question.
https://developers.google.com/api-client-library/java/apis/storage/v1
Upvotes: 0