This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch 17686-sb in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
commit 140bf8f9c238fe2990dc98c8293597596b054350 Author: Andrea Cosentino <[email protected]> AuthorDate: Mon Apr 4 11:03:34 2022 +0200 CAMEL-17686 - Support ability to load properties from Vault/Secrets cloud services - Azure Key Vault --- .../src/main/docs/spring-boot.json | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/core/camel-spring-boot/src/main/docs/spring-boot.json b/core/camel-spring-boot/src/main/docs/spring-boot.json index e21cdd273fe..0281f35d803 100644 --- a/core/camel-spring-boot/src/main/docs/spring-boot.json +++ b/core/camel-spring-boot/src/main/docs/spring-boot.json @@ -119,6 +119,11 @@ "type": "org.apache.camel.spring.boot.vault.AwsVaultConfigurationProperties", "sourceType": "org.apache.camel.spring.boot.vault.AwsVaultConfigurationProperties" }, + { + "name": "camel.vault.azure", + "type": "org.apache.camel.spring.boot.vault.AzureVaultConfigurationProperties", + "sourceType": "org.apache.camel.spring.boot.vault.AzureVaultConfigurationProperties" + }, { "name": "camel.vault.gcp", "type": "org.apache.camel.spring.boot.vault.GcpVaultConfigurationProperties", @@ -1337,6 +1342,30 @@ "description": "The AWS secret key", "sourceType": "org.apache.camel.spring.boot.vault.AwsVaultConfigurationProperties" }, + { + "name": "camel.vault.azure.client-id", + "type": "java.lang.String", + "description": "The Client Id", + "sourceType": "org.apache.camel.spring.boot.vault.AzureVaultConfigurationProperties" + }, + { + "name": "camel.vault.azure.client-secret", + "type": "java.lang.String", + "description": "The Client secret", + "sourceType": "org.apache.camel.spring.boot.vault.AzureVaultConfigurationProperties" + }, + { + "name": "camel.vault.azure.tenant-id", + "type": "java.lang.String", + "description": "The tenant Id", + "sourceType": "org.apache.camel.spring.boot.vault.AzureVaultConfigurationProperties" + }, + { + "name": "camel.vault.azure.vault-name", + "type": "java.lang.String", + "description": "The Vault Name", + "sourceType": "org.apache.camel.spring.boot.vault.AzureVaultConfigurationProperties" + }, { "name": "camel.vault.gcp.project-id", "type": "java.lang.String",
