From e0f7b385ba1c507af5527c7f1b01540c686c5465 Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Wed, 11 Mar 2026 14:34:09 +0000 Subject: [PATCH] Add component definition: workday --- component.json | 219 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 219 insertions(+) create mode 100644 component.json diff --git a/component.json b/component.json new file mode 100644 index 0000000..e2755fb --- /dev/null +++ b/component.json @@ -0,0 +1,219 @@ +{ + "component": { + "kind": "component", + "name": "workday", + "title": "Workday", + "description": "Detect and parse documents using Workday.", + "deprecated": false, + "firstVersion": "3.1.0", + "label": "cloud,api,saas", + "javaType": "org.apache.camel.component.workday.WorkdayComponent", + "supportLevel": "Stable", + "groupId": "org.apache.camel", + "artifactId": "camel-workday", + "version": "4.10.2", + "scheme": "workday", + "extendsScheme": "", + "syntax": "workday:entity:path", + "async": false, + "api": false, + "consumerOnly": false, + "producerOnly": true, + "lenientProperties": false, + "browsable": false, + "remote": true + }, + "headers": { + "CamelWorkdayURL": { + "index": 0, + "kind": "header", + "displayName": "", + "group": "producer", + "label": "", + "required": false, + "javaType": "String", + "deprecated": false, + "deprecationNote": "", + "autowired": false, + "secret": false, + "description": "The workday URL", + "constantName": "org.apache.camel.component.workday.producer.WorkdayDefaultProducer#WORKDAY_URL_HEADER" + } + }, + "properties": { + "entity": { + "index": 0, + "kind": "path", + "displayName": "Entity", + "group": "producer", + "label": "", + "required": true, + "type": "object", + "javaType": "org.apache.camel.component.workday.WorkdayConfiguration.Entity", + "enum": [ + "report", + "commonAPI" + ], + "deprecated": false, + "deprecationNote": "", + "autowired": false, + "secret": false, + "configurationClass": "org.apache.camel.component.workday.WorkdayConfiguration", + "configurationField": "workdayConfiguration", + "description": "The entity to be requested or subscribed via API." + }, + "path": { + "index": 1, + "kind": "path", + "displayName": "Path", + "group": "producer", + "label": "", + "required": true, + "type": "string", + "javaType": "java.lang.String", + "deprecated": false, + "deprecationNote": "", + "autowired": false, + "secret": false, + "configurationClass": "org.apache.camel.component.workday.WorkdayConfiguration", + "configurationField": "workdayConfiguration", + "description": "The API path to access an entity structure." + }, + "lazyStartProducer": { + "index": 2, + "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." + }, + "httpConnectionManager": { + "index": 3, + "kind": "parameter", + "displayName": "Http Connection Manager", + "group": "advanced", + "label": "advanced", + "required": false, + "type": "object", + "javaType": "org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManager", + "deprecated": false, + "autowired": false, + "secret": false, + "configurationClass": "org.apache.camel.component.workday.WorkdayConfiguration", + "configurationField": "workdayConfiguration", + "description": "Pool connection manager for advanced configuration." + }, + "reportFormat": { + "index": 4, + "kind": "parameter", + "displayName": "Report Format", + "group": "format", + "label": "format", + "required": false, + "type": "string", + "javaType": "java.lang.String", + "enum": [ + "json" + ], + "deprecated": false, + "autowired": false, + "secret": false, + "defaultValue": "json", + "configurationClass": "org.apache.camel.component.workday.WorkdayConfiguration", + "configurationField": "workdayConfiguration", + "description": "Workday Report as a service output format." + }, + "host": { + "index": 5, + "kind": "parameter", + "displayName": "Host", + "group": "host", + "label": "host", + "required": true, + "type": "string", + "javaType": "java.lang.String", + "deprecated": false, + "deprecationNote": "", + "autowired": false, + "secret": false, + "configurationClass": "org.apache.camel.component.workday.WorkdayConfiguration", + "configurationField": "workdayConfiguration", + "description": "Workday Host name." + }, + "clientId": { + "index": 6, + "kind": "parameter", + "displayName": "Client Id", + "group": "security", + "label": "security", + "required": true, + "type": "string", + "javaType": "java.lang.String", + "deprecated": false, + "deprecationNote": "", + "autowired": false, + "secret": true, + "configurationClass": "org.apache.camel.component.workday.WorkdayConfiguration", + "configurationField": "workdayConfiguration", + "description": "Workday client Id generated by API client for integrations." + }, + "clientSecret": { + "index": 7, + "kind": "parameter", + "displayName": "Client Secret", + "group": "security", + "label": "security", + "required": true, + "type": "string", + "javaType": "java.lang.String", + "deprecated": false, + "deprecationNote": "", + "autowired": false, + "secret": true, + "configurationClass": "org.apache.camel.component.workday.WorkdayConfiguration", + "configurationField": "workdayConfiguration", + "description": "Workday client Secret generated by API client for integrations." + }, + "tokenRefresh": { + "index": 8, + "kind": "parameter", + "displayName": "Token Refresh", + "group": "security", + "label": "security", + "required": true, + "type": "string", + "javaType": "java.lang.String", + "deprecated": false, + "deprecationNote": "", + "autowired": false, + "secret": true, + "configurationClass": "org.apache.camel.component.workday.WorkdayConfiguration", + "configurationField": "workdayConfiguration", + "description": "Workday token Refresh generated for integrations system user." + }, + "tenant": { + "index": 9, + "kind": "parameter", + "displayName": "Tenant", + "group": "tenant", + "label": "tenant", + "required": true, + "type": "string", + "javaType": "java.lang.String", + "deprecated": false, + "deprecationNote": "", + "autowired": false, + "secret": false, + "configurationClass": "org.apache.camel.component.workday.WorkdayConfiguration", + "configurationField": "workdayConfiguration", + "description": "Workday Tenant name." + } + } +} \ No newline at end of file