### Java API client version 7.17.8 ### Java version 11 ### Elasticsearch Version 7.17.8 ### Problem description I coded using ProcessorBuilders.script(). However, I noticed that ProcessorBuilders.script() does not support most of the parameters available in Script Processor as described in the Ingest processor reference documentation. https://www.elastic.co/guide/en/elasticsearch/reference/7.17/script-processor.html Is there any way to work around this problem? ```java return ProcessorBuilders.script(b -> b .inline(i -> i .lang(map.getLang()) .source(map.getSource()) .params(params))); ```