-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Fix documentation around updating blob metadata #5173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| * String bucketName = "my_unique_bucket"; | ||
| * String blobName = "my_blob_name"; | ||
| * Map<String, String> newMetadata = new HashMap<>(); | ||
| * newMetadata.put("keyToAdd", "value"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
keyToAddOrUpdate
| * String bucketName = "my_unique_bucket"; | ||
| * String blobName = "my_blob_name"; | ||
| * Map<String, String> newMetadata = new HashMap<>(); | ||
| * newMetadata.put("keyToAdd", "value"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
keyToAddOrUpdate
…cloud-java into metadatadocumentation
…cloud-java into metadatadocumentation
Codecov Report
@@ Coverage Diff @@
## master #5173 +/- ##
=========================================
Coverage 50.4% 50.4%
Complexity 23785 23785
=========================================
Files 2251 2251
Lines 226785 226785
Branches 24966 24966
=========================================
Hits 114314 114314
Misses 103864 103864
Partials 8607 8607
Continue to review full report at Codecov.
|
| * value to {@code null}. | ||
| * | ||
| * <p>Example of replacing blob's metadata. | ||
| * <p>Example of adding new metadata values or replacing existing ones. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replacing -> updating
…cloud-java into metadatadocumentation
…cloud-java into metadatadocumentation
Fix documentation around updating blob metadata