CAMEL-23328: Add support for blob index tags (set and get) to camel-azure-storage-blob#22673
Open
CAMEL-23328: Add support for blob index tags (set and get) to camel-azure-storage-blob#22673
Conversation
…zure-storage-blob Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Andrea Cosentino <ancosen@gmail.com>
Contributor
|
🌟 Thank you for your contribution to the Apache Camel project! 🌟 🐫 Apache Camel Committers, please review the following items:
|
davsclaus
approved these changes
Apr 17, 2026
Contributor
|
🧪 CI tested the following changed modules:
All tested modules (9 modules)
|
apupier
requested changes
Apr 17, 2026
Contributor
apupier
left a comment
There was a problem hiding this comment.
rebase required with conflicts to fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Claude Code on behalf of Andrea Cosentino
Adds two new producer operations to the
camel-azure-storage-blobcomponent for managing Azure Blob Storage index tags:setBlobTags— Sets user-defined key-value tags on a blob. Tags can be provided via theCamelAzureStorageBlobTagsheader (Map<String, String>) or as the message body.getBlobTags— Retrieves tags from a blob. Returns the tags as the message body and also sets them in theCamelAzureStorageBlobTagsheader.Changes
BlobOperationsDefinition: addedsetBlobTagsandgetBlobTagsenum valuesBlobConstants: addedBLOB_TAGSheader constant (CamelAzureStorageBlobTags)BlobExchangeHeaders: added static gettergetBlobTagsFromHeaders()and fluent setterblobTags()BlobClientWrapper: addedsetTags()andgetTags()wrapper methods usingBlobSetTagsOptions/BlobGetTagsOptionsBlobOperations: addedsetBlobTags()andgetBlobTags()operation implementationsBlobProducer: wired new operations in the switch statementBlobConfiguration: updated@UriParamenums stringBlobConfigurationOptionsProxy: addedgetBlobTags()proxy methodTests
BlobOperationsTest:testSetBlobTags,testSetBlobTagsFromBody,testSetBlobTagsWithNoTagsThrows,testGetBlobTagsBlobOperationsIT(Azurite):testSetAndGetBlobTags,testSetBlobTagsFromBody,testOverwriteBlobTagsTest plan
mvn testin module)mvn verify)🤖 Generated with Claude Code