File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
server/src/main/java/org/opensearch/common/blobstore Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -199,8 +199,6 @@ default void writeBlobConditionally(
199199 * this value is used in writing the blob to the repository.
200200 * @param failIfAlreadyExists
201201 * whether to throw a FileAlreadyExistsException if the given blob already exists
202- * @param metadata
203- * The metadata to be associate with the blob upload.
204202 * @param options
205203 * The {@link ConditionalWriteOptions} specifying the preconditions that must be met for the upload to proceed.
206204 * @param listener
Original file line number Diff line number Diff line change @@ -85,6 +85,10 @@ public Instant getUnmodifiedSince() {
8585 return unmodifiedSince ;
8686 }
8787
88+ /**
89+ * Builder for {@link ConditionalWriteOptions}.
90+ * Allows fine-grained construction of conditional write criteria.
91+ */
8892 public static final class Builder {
8993 private boolean ifNotExists = false ;
9094 private boolean ifMatch = false ;
You can’t perform that action at this time.
0 commit comments