Skip to content

Commit b900983

Browse files
author
Dhriti Chopra
committed
fix: Reverting deleted comments
1 parent f6b31d3 commit b900983

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

google-cloud-storage/src/main/java/com/google/cloud/storage/multipartupload/model/ListMultipartUploadsResponse.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,23 @@ private ListMultipartUploadsResponse(
111111
}
112112
}
113113

114+
/**
115+
* The list of multipart uploads.
116+
*
117+
* @return The list of multipart uploads.
118+
* @since 2.60.0 This new api is in preview and is subject to breaking changes.
119+
*/
114120
@BetaApi
115121
public ImmutableList<MultipartUpload> getUploads() {
116122
return uploads == null ? ImmutableList.of() : ImmutableList.copyOf(uploads);
117123
}
118124

125+
/**
126+
* The bucket that contains the multipart uploads.
127+
*
128+
* @return The bucket name.
129+
* @since 2.60.0 This new api is in preview and is subject to breaking changes.
130+
*/
119131
@BetaApi
120132
public String getBucket() {
121133
return bucket;
@@ -310,6 +322,12 @@ public static class CommonPrefixHelper {
310322
public String prefix;
311323
}
312324

325+
326+
/**
327+
* A builder for {@link ListMultipartUploadsResponse}.
328+
*
329+
* @since 2.60.0 This new api is in preview and is subject to breaking changes.
330+
*/
313331
@BetaApi
314332
public static final class Builder {
315333
private ImmutableList<MultipartUpload> uploads;

0 commit comments

Comments
 (0)