Google Cloud Storage Java Programming Model: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 19: Line 19:
Page<Bucket> buckets = storageService.list();
Page<Bucket> buckets = storageService.list();
</syntaxhighlight>
</syntaxhighlight>
=Local Testing=
{{External|https://github.com/googleapis/google-cloud-java/blob/master/TESTING.md#testing-code-that-uses-storage}}

Revision as of 00:15, 3 September 2021

Internal

Overview

ServiceAccountCredentials serviceAccountCredentials;
Storage storageService = StorageOptions.newBuilder().setCredentials(serviceAccountCredentials).build().getService();

Bucket by Name

ServiceAccountCredentials serviceAccountCredentials;
storageService.get(bucketName, options);
// or
storageService.get(bucketName);

List Buckets

Page<Bucket> buckets = storageService.list();

Local Testing

https://github.com/googleapis/google-cloud-java/blob/master/TESTING.md#testing-code-that-uses-storage