File tree Expand file tree Collapse file tree
src/main/java/com/google/gcloud/storage Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717/**
1818 * A client to Google Cloud Storage.
1919 *
20- * @see <a href="https://cloud.google.com/storage/">Google Cloud Storageg</a>
20+ * <p>A simple usage example:
21+ * <pre>{@code
22+ * StorageServiceOptions options = StorageServiceOptions.builder().projectId("project").build();
23+ * StorageService storage = StorageServiceFactory.instance().get(options);
24+ * byte[] content = readContent();
25+ * Blob blob = storage.create(Blob.of("bucket", "blob_name"), content);
26+ * } </pre>
27+ *
28+ * @see <a href="https://cloud.google.com/storage/">Google Cloud Storage</a>
2129 */
2230package com .google .gcloud .storage ;
2331
You can’t perform that action at this time.
0 commit comments