From c09ee8bb0e9612c53dd13e8b4e8013b6b04f28d5 Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Wed, 11 Mar 2026 14:25:46 +0000 Subject: [PATCH] Add component definition: azure-key-vault --- component.json | 218 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 218 insertions(+) create mode 100644 component.json diff --git a/component.json b/component.json new file mode 100644 index 0000000..8ccfc91 --- /dev/null +++ b/component.json @@ -0,0 +1,218 @@ +{ + "component": { + "kind": "component", + "name": "azure-key-vault", + "title": "Azure Key Vault", + "description": "Manage secrets and keys in Azure Key Vault Service", + "deprecated": false, + "firstVersion": "3.17.0", + "label": "cloud,cloud", + "javaType": "org.apache.camel.component.azure.key.vault.KeyVaultComponent", + "supportLevel": "Stable", + "metadata": { + "vault": "azure-key-vault" + }, + "groupId": "org.apache.camel", + "artifactId": "camel-azure-key-vault", + "version": "4.10.2", + "scheme": "azure-key-vault", + "extendsScheme": "", + "syntax": "azure-key-vault:vaultName", + "async": false, + "api": false, + "consumerOnly": false, + "producerOnly": true, + "lenientProperties": false, + "browsable": false, + "remote": true + }, + "headers": { + "CamelAzureKeyVaultProducerOperation": { + "index": 0, + "kind": "header", + "displayName": "", + "group": "producer", + "label": "producer", + "required": false, + "javaType": "org.apache.camel.component.azure.key.vault.KeyVaultOperationDefinition", + "deprecated": false, + "deprecationNote": "", + "autowired": false, + "secret": false, + "description": "Overrides the desired operation to be used in the producer.", + "constantName": "org.apache.camel.component.azure.key.vault.KeyVaultConstants#OPERATION" + }, + "CamelAzureKeyVaultSecretName": { + "index": 1, + "kind": "header", + "displayName": "", + "group": "producer", + "label": "producer", + "required": false, + "javaType": "String", + "deprecated": false, + "deprecationNote": "", + "autowired": false, + "secret": false, + "description": "The secret name to be used in Key Vault", + "constantName": "org.apache.camel.component.azure.key.vault.KeyVaultConstants#SECRET_NAME" + }, + "CamelAzureKeyVaultSecretProperties": { + "index": 2, + "kind": "header", + "displayName": "", + "group": "producer", + "label": "producer", + "required": false, + "javaType": "String", + "deprecated": false, + "deprecationNote": "", + "autowired": false, + "secret": false, + "description": "The secret properties to be used in Key Vault for updating a secret", + "constantName": "org.apache.camel.component.azure.key.vault.KeyVaultConstants#SECRET_PROPERTIES" + } + }, + "properties": { + "vaultName": { + "index": 0, + "kind": "path", + "displayName": "Vault Name", + "group": "producer", + "label": "", + "required": false, + "type": "string", + "javaType": "java.lang.String", + "deprecated": false, + "autowired": false, + "secret": false, + "configurationClass": "org.apache.camel.component.azure.key.vault.KeyVaultConfiguration", + "configurationField": "configuration", + "description": "Vault Name to be used" + }, + "credentialType": { + "index": 1, + "kind": "parameter", + "displayName": "Credential Type", + "group": "common", + "label": "common", + "required": false, + "type": "object", + "javaType": "org.apache.camel.component.azure.key.vault.CredentialType", + "enum": [ + "CLIENT_SECRET", + "AZURE_IDENTITY" + ], + "deprecated": false, + "autowired": false, + "secret": false, + "defaultValue": "CLIENT_SECRET", + "configurationClass": "org.apache.camel.component.azure.key.vault.KeyVaultConfiguration", + "configurationField": "configuration", + "description": "Determines the credential strategy to adopt" + }, + "operation": { + "index": 2, + "kind": "parameter", + "displayName": "Operation", + "group": "producer", + "label": "producer", + "required": false, + "type": "object", + "javaType": "org.apache.camel.component.azure.key.vault.KeyVaultOperation", + "enum": [ + "createSecret", + "getSecret", + "updateSecretProperties", + "deleteSecret", + "purgeDeletedSecret" + ], + "deprecated": false, + "autowired": false, + "secret": false, + "configurationClass": "org.apache.camel.component.azure.key.vault.KeyVaultConfiguration", + "configurationField": "configuration", + "description": "Operation to be performed" + }, + "secretClient": { + "index": 3, + "kind": "parameter", + "displayName": "Secret Client", + "group": "producer", + "label": "", + "required": false, + "type": "object", + "javaType": "com.azure.security.keyvault.secrets.SecretClient", + "deprecated": false, + "deprecationNote": "", + "autowired": true, + "secret": false, + "configurationClass": "org.apache.camel.component.azure.key.vault.KeyVaultConfiguration", + "configurationField": "configuration", + "description": "Instance of Secret client" + }, + "lazyStartProducer": { + "index": 4, + "kind": "parameter", + "displayName": "Lazy Start Producer", + "group": "producer (advanced)", + "label": "producer,advanced", + "required": false, + "type": "boolean", + "javaType": "boolean", + "deprecated": false, + "autowired": false, + "secret": false, + "defaultValue": false, + "description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing." + }, + "clientId": { + "index": 5, + "kind": "parameter", + "displayName": "Client Id", + "group": "security", + "label": "security", + "required": false, + "type": "string", + "javaType": "java.lang.String", + "deprecated": false, + "autowired": false, + "secret": true, + "configurationClass": "org.apache.camel.component.azure.key.vault.KeyVaultConfiguration", + "configurationField": "configuration", + "description": "Client Id to be used" + }, + "clientSecret": { + "index": 6, + "kind": "parameter", + "displayName": "Client Secret", + "group": "security", + "label": "security", + "required": false, + "type": "string", + "javaType": "java.lang.String", + "deprecated": false, + "autowired": false, + "secret": true, + "configurationClass": "org.apache.camel.component.azure.key.vault.KeyVaultConfiguration", + "configurationField": "configuration", + "description": "Client Secret to be used" + }, + "tenantId": { + "index": 7, + "kind": "parameter", + "displayName": "Tenant Id", + "group": "security", + "label": "security", + "required": false, + "type": "string", + "javaType": "java.lang.String", + "deprecated": false, + "autowired": false, + "secret": true, + "configurationClass": "org.apache.camel.component.azure.key.vault.KeyVaultConfiguration", + "configurationField": "configuration", + "description": "Tenant Id to be used" + } + } +} \ No newline at end of file