This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit eafe7224c48408e9681949e4f0133f929418b9b0 Author: Andrea Cosentino <[email protected]> AuthorDate: Mon Feb 22 13:53:13 2021 +0100 CAMEL-16115 - Remove Camel-AWS-* components - AWS-Lambda --- .../component/ComponentsBuilderFactory.java | 16 +- .../dsl/AwsLambdaComponentBuilderFactory.java | 297 --------------- .../builder/endpoint/StaticEndpointBuilders.java | 47 +-- .../endpoint/dsl/LambdaEndpointBuilderFactory.java | 415 --------------------- 4 files changed, 2 insertions(+), 773 deletions(-) diff --git a/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java b/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java index 535e569..967e024 100644 --- a/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java +++ b/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java @@ -446,20 +446,6 @@ public interface ComponentsBuilderFactory { return org.apache.camel.builder.component.dsl.AwsKmsComponentBuilderFactory.awsKms(); } /** - * AWS Lambda (camel-aws-lambda) - * Manage and invoke AWS Lambda functions. - * - * Category: cloud,computing,serverless - * Since: 2.20 - * Maven coordinates: org.apache.camel:camel-aws-lambda - * - * @return the dsl builder - */ - @Deprecated - static org.apache.camel.builder.component.dsl.AwsLambdaComponentBuilderFactory.AwsLambdaComponentBuilder awsLambda() { - return org.apache.camel.builder.component.dsl.AwsLambdaComponentBuilderFactory.awsLambda(); - } - /** * AWS S3 Storage Service (camel-aws-s3) * Store and retrieve objects from AWS S3 Storage Service. * @@ -4848,4 +4834,4 @@ public interface ComponentsBuilderFactory { static org.apache.camel.builder.component.dsl.ZookeeperMasterComponentBuilderFactory.ZookeeperMasterComponentBuilder zookeeperMaster() { return org.apache.camel.builder.component.dsl.ZookeeperMasterComponentBuilderFactory.zookeeperMaster(); } -} \ No newline at end of file +} diff --git a/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/AwsLambdaComponentBuilderFactory.java b/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/AwsLambdaComponentBuilderFactory.java deleted file mode 100644 index e42ae9a..0000000 --- a/core/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/AwsLambdaComponentBuilderFactory.java +++ /dev/null @@ -1,297 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.apache.camel.builder.component.dsl; - -import javax.annotation.Generated; -import org.apache.camel.Component; -import org.apache.camel.builder.component.AbstractComponentBuilder; -import org.apache.camel.builder.component.ComponentBuilder; -import org.apache.camel.component.aws.lambda.LambdaComponent; - -/** - * Manage and invoke AWS Lambda functions. - * - * Generated by camel-package-maven-plugin - do not edit this file! - */ -@Generated("org.apache.camel.maven.packaging.ComponentDslMojo") -public interface AwsLambdaComponentBuilderFactory { - - /** - * AWS Lambda (camel-aws-lambda) - * Manage and invoke AWS Lambda functions. - * - * Category: cloud,computing,serverless - * Since: 2.20 - * Maven coordinates: org.apache.camel:camel-aws-lambda - * - * @return the dsl builder - */ - @Deprecated - static AwsLambdaComponentBuilder awsLambda() { - return new AwsLambdaComponentBuilderImpl(); - } - - /** - * Builder for the AWS Lambda component. - */ - interface AwsLambdaComponentBuilder - extends - ComponentBuilder<LambdaComponent> { - /** - * Setting the autoDiscoverClient mechanism, if true, the component will - * look for a client instance in the registry automatically otherwise it - * will skip that checking. - * - * The option is a: <code>boolean</code> type. - * - * Default: true - * Group: common - * - * @param autoDiscoverClient the value to set - * @return the dsl builder - */ - default AwsLambdaComponentBuilder autoDiscoverClient( - boolean autoDiscoverClient) { - doSetProperty("autoDiscoverClient", autoDiscoverClient); - return this; - } - /** - * The AWS Lambda default configuration. - * - * The option is a: - * <code>org.apache.camel.component.aws.lambda.LambdaConfiguration</code> type. - * - * Group: producer - * - * @param configuration the value to set - * @return the dsl builder - */ - default AwsLambdaComponentBuilder configuration( - org.apache.camel.component.aws.lambda.LambdaConfiguration configuration) { - doSetProperty("configuration", configuration); - return this; - } - /** - * 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. - * - * The option is a: <code>boolean</code> type. - * - * Default: false - * Group: producer - * - * @param lazyStartProducer the value to set - * @return the dsl builder - */ - default AwsLambdaComponentBuilder lazyStartProducer( - boolean lazyStartProducer) { - doSetProperty("lazyStartProducer", lazyStartProducer); - return this; - } - /** - * The operation to perform. It can be listFunctions, getFunction, - * createFunction, deleteFunction or invokeFunction. - * - * The option is a: - * <code>org.apache.camel.component.aws.lambda.LambdaOperations</code> type. - * - * Default: invokeFunction - * Group: producer - * - * @param operation the value to set - * @return the dsl builder - */ - default AwsLambdaComponentBuilder operation( - org.apache.camel.component.aws.lambda.LambdaOperations operation) { - doSetProperty("operation", operation); - return this; - } - /** - * Amazon AWS Region. When using this parameter, the configuration will - * expect the capitalized name of the region (for example AP_EAST_1) - * You'll need to use the name Regions.EU_WEST_1.name(). - * - * The option is a: <code>java.lang.String</code> type. - * - * Group: producer - * - * @param region the value to set - * @return the dsl builder - */ - default AwsLambdaComponentBuilder region(java.lang.String region) { - doSetProperty("region", region); - return this; - } - /** - * Whether autowiring is enabled. This is used for automatic autowiring - * options (the option must be marked as autowired) by looking up in the - * registry to find if there is a single instance of matching type, - * which then gets configured on the component. This can be used for - * automatic configuring JDBC data sources, JMS connection factories, - * AWS Clients, etc. - * - * The option is a: <code>boolean</code> type. - * - * Default: true - * Group: advanced - * - * @param autowiredEnabled the value to set - * @return the dsl builder - */ - default AwsLambdaComponentBuilder autowiredEnabled( - boolean autowiredEnabled) { - doSetProperty("autowiredEnabled", autowiredEnabled); - return this; - } - /** - * To use a existing configured AwsLambdaClient as client. - * - * The option is a: - * <code>com.amazonaws.services.lambda.AWSLambda</code> - * type. - * - * Group: advanced - * - * @param awsLambdaClient the value to set - * @return the dsl builder - */ - default AwsLambdaComponentBuilder awsLambdaClient( - com.amazonaws.services.lambda.AWSLambda awsLambdaClient) { - doSetProperty("awsLambdaClient", awsLambdaClient); - return this; - } - /** - * To define a proxy host when instantiating the Lambda client. - * - * The option is a: <code>java.lang.String</code> type. - * - * Group: proxy - * - * @param proxyHost the value to set - * @return the dsl builder - */ - default AwsLambdaComponentBuilder proxyHost(java.lang.String proxyHost) { - doSetProperty("proxyHost", proxyHost); - return this; - } - /** - * To define a proxy port when instantiating the Lambda client. - * - * The option is a: <code>java.lang.Integer</code> type. - * - * Group: proxy - * - * @param proxyPort the value to set - * @return the dsl builder - */ - default AwsLambdaComponentBuilder proxyPort(java.lang.Integer proxyPort) { - doSetProperty("proxyPort", proxyPort); - return this; - } - /** - * To define a proxy protocol when instantiating the Lambda client. - * - * The option is a: <code>com.amazonaws.Protocol</code> - * type. - * - * Default: HTTPS - * Group: proxy - * - * @param proxyProtocol the value to set - * @return the dsl builder - */ - default AwsLambdaComponentBuilder proxyProtocol( - com.amazonaws.Protocol proxyProtocol) { - doSetProperty("proxyProtocol", proxyProtocol); - return this; - } - /** - * Amazon AWS Access Key. - * - * The option is a: <code>java.lang.String</code> type. - * - * Group: security - * - * @param accessKey the value to set - * @return the dsl builder - */ - default AwsLambdaComponentBuilder accessKey(java.lang.String accessKey) { - doSetProperty("accessKey", accessKey); - return this; - } - /** - * Amazon AWS Secret Key. - * - * The option is a: <code>java.lang.String</code> type. - * - * Group: security - * - * @param secretKey the value to set - * @return the dsl builder - */ - default AwsLambdaComponentBuilder secretKey(java.lang.String secretKey) { - doSetProperty("secretKey", secretKey); - return this; - } - } - - class AwsLambdaComponentBuilderImpl - extends - AbstractComponentBuilder<LambdaComponent> - implements - AwsLambdaComponentBuilder { - @Override - protected LambdaComponent buildConcreteComponent() { - return new LambdaComponent(); - } - private org.apache.camel.component.aws.lambda.LambdaConfiguration getOrCreateConfiguration( - org.apache.camel.component.aws.lambda.LambdaComponent component) { - if (component.getConfiguration() == null) { - component.setConfiguration(new org.apache.camel.component.aws.lambda.LambdaConfiguration()); - } - return component.getConfiguration(); - } - @Override - protected boolean setPropertyOnComponent( - Component component, - String name, - Object value) { - switch (name) { - case "autoDiscoverClient": getOrCreateConfiguration((LambdaComponent) component).setAutoDiscoverClient((boolean) value); return true; - case "configuration": ((LambdaComponent) component).setConfiguration((org.apache.camel.component.aws.lambda.LambdaConfiguration) value); return true; - case "lazyStartProducer": ((LambdaComponent) component).setLazyStartProducer((boolean) value); return true; - case "operation": getOrCreateConfiguration((LambdaComponent) component).setOperation((org.apache.camel.component.aws.lambda.LambdaOperations) value); return true; - case "region": getOrCreateConfiguration((LambdaComponent) component).setRegion((java.lang.String) value); return true; - case "autowiredEnabled": ((LambdaComponent) component).setAutowiredEnabled((boolean) value); return true; - case "awsLambdaClient": getOrCreateConfiguration((LambdaComponent) component).setAwsLambdaClient((com.amazonaws.services.lambda.AWSLambda) value); return true; - case "proxyHost": getOrCreateConfiguration((LambdaComponent) component).setProxyHost((java.lang.String) value); return true; - case "proxyPort": getOrCreateConfiguration((LambdaComponent) component).setProxyPort((java.lang.Integer) value); return true; - case "proxyProtocol": getOrCreateConfiguration((LambdaComponent) component).setProxyProtocol((com.amazonaws.Protocol) value); return true; - case "accessKey": getOrCreateConfiguration((LambdaComponent) component).setAccessKey((java.lang.String) value); return true; - case "secretKey": getOrCreateConfiguration((LambdaComponent) component).setSecretKey((java.lang.String) value); return true; - default: return false; - } - } - } -} \ No newline at end of file diff --git a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java index a6b3882..c52fd08 100644 --- a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java +++ b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java @@ -2282,51 +2282,6 @@ public class StaticEndpointBuilders { return org.apache.camel.builder.endpoint.dsl.KMSEndpointBuilderFactory.endpointBuilder(componentName, path); } /** - * AWS Lambda (camel-aws-lambda) - * Manage and invoke AWS Lambda functions. - * - * Category: cloud,computing,serverless - * Since: 2.20 - * Maven coordinates: org.apache.camel:camel-aws-lambda - * - * Syntax: <code>aws-lambda:function</code> - * - * Path parameter: function (required) - * Name of the Lambda function. - * - * @param path function - * @return the dsl builder - */ - @Deprecated - public static org.apache.camel.builder.endpoint.dsl.LambdaEndpointBuilderFactory.LambdaEndpointBuilder awsLambda( - String path) { - return org.apache.camel.builder.endpoint.dsl.LambdaEndpointBuilderFactory.endpointBuilder("aws-lambda", path); - } - /** - * AWS Lambda (camel-aws-lambda) - * Manage and invoke AWS Lambda functions. - * - * Category: cloud,computing,serverless - * Since: 2.20 - * Maven coordinates: org.apache.camel:camel-aws-lambda - * - * Syntax: <code>aws-lambda:function</code> - * - * Path parameter: function (required) - * Name of the Lambda function. - * - * @param componentName to use a custom component name for the endpoint - * instead of the default name - * @param path function - * @return the dsl builder - */ - @Deprecated - public static org.apache.camel.builder.endpoint.dsl.LambdaEndpointBuilderFactory.LambdaEndpointBuilder awsLambda( - String componentName, - String path) { - return org.apache.camel.builder.endpoint.dsl.LambdaEndpointBuilderFactory.endpointBuilder(componentName, path); - } - /** * AWS S3 Storage Service (camel-aws-s3) * Store and retrieve objects from AWS S3 Storage Service. * @@ -16982,4 +16937,4 @@ public class StaticEndpointBuilders { return org.apache.camel.builder.endpoint.dsl.ZooKeeperMasterEndpointBuilderFactory.endpointBuilder(componentName, path); } } -//CHECKSTYLE:ON \ No newline at end of file +//CHECKSTYLE:ON diff --git a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/LambdaEndpointBuilderFactory.java b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/LambdaEndpointBuilderFactory.java deleted file mode 100644 index cb6a193..0000000 --- a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/LambdaEndpointBuilderFactory.java +++ /dev/null @@ -1,415 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.apache.camel.builder.endpoint.dsl; - -import javax.annotation.Generated; -import org.apache.camel.builder.EndpointConsumerBuilder; -import org.apache.camel.builder.EndpointProducerBuilder; -import org.apache.camel.builder.endpoint.AbstractEndpointBuilder; - -/** - * Manage and invoke AWS Lambda functions. - * - * Generated by camel build tools - do NOT edit this file! - */ -@Generated("org.apache.camel.maven.packaging.EndpointDslMojo") -public interface LambdaEndpointBuilderFactory { - - - /** - * Builder for endpoint for the AWS Lambda component. - */ - public interface LambdaEndpointBuilder extends EndpointProducerBuilder { - default AdvancedLambdaEndpointBuilder advanced() { - return (AdvancedLambdaEndpointBuilder) this; - } - /** - * Setting the autoDiscoverClient mechanism, if true, the component will - * look for a client instance in the registry automatically otherwise it - * will skip that checking. - * - * The option is a: <code>boolean</code> type. - * - * Default: true - * Group: common - * - * @param autoDiscoverClient the value to set - * @return the dsl builder - */ - default LambdaEndpointBuilder autoDiscoverClient( - boolean autoDiscoverClient) { - doSetProperty("autoDiscoverClient", autoDiscoverClient); - return this; - } - /** - * Setting the autoDiscoverClient mechanism, if true, the component will - * look for a client instance in the registry automatically otherwise it - * will skip that checking. - * - * The option will be converted to a <code>boolean</code> - * type. - * - * Default: true - * Group: common - * - * @param autoDiscoverClient the value to set - * @return the dsl builder - */ - default LambdaEndpointBuilder autoDiscoverClient( - String autoDiscoverClient) { - doSetProperty("autoDiscoverClient", autoDiscoverClient); - return this; - } - /** - * 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. - * - * The option is a: <code>boolean</code> type. - * - * Default: false - * Group: producer - * - * @param lazyStartProducer the value to set - * @return the dsl builder - */ - default LambdaEndpointBuilder lazyStartProducer( - boolean lazyStartProducer) { - doSetProperty("lazyStartProducer", lazyStartProducer); - return this; - } - /** - * 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. - * - * The option will be converted to a <code>boolean</code> - * type. - * - * Default: false - * Group: producer - * - * @param lazyStartProducer the value to set - * @return the dsl builder - */ - default LambdaEndpointBuilder lazyStartProducer(String lazyStartProducer) { - doSetProperty("lazyStartProducer", lazyStartProducer); - return this; - } - /** - * The operation to perform. It can be listFunctions, getFunction, - * createFunction, deleteFunction or invokeFunction. - * - * The option is a: - * <code>org.apache.camel.component.aws.lambda.LambdaOperations</code> type. - * - * Default: invokeFunction - * Group: producer - * - * @param operation the value to set - * @return the dsl builder - */ - default LambdaEndpointBuilder operation(LambdaOperations operation) { - doSetProperty("operation", operation); - return this; - } - /** - * The operation to perform. It can be listFunctions, getFunction, - * createFunction, deleteFunction or invokeFunction. - * - * The option will be converted to a - * <code>org.apache.camel.component.aws.lambda.LambdaOperations</code> type. - * - * Default: invokeFunction - * Group: producer - * - * @param operation the value to set - * @return the dsl builder - */ - default LambdaEndpointBuilder operation(String operation) { - doSetProperty("operation", operation); - return this; - } - /** - * Amazon AWS Region. When using this parameter, the configuration will - * expect the capitalized name of the region (for example AP_EAST_1) - * You'll need to use the name Regions.EU_WEST_1.name(). - * - * The option is a: <code>java.lang.String</code> type. - * - * Group: producer - * - * @param region the value to set - * @return the dsl builder - */ - default LambdaEndpointBuilder region(String region) { - doSetProperty("region", region); - return this; - } - /** - * To define a proxy host when instantiating the Lambda client. - * - * The option is a: <code>java.lang.String</code> type. - * - * Group: proxy - * - * @param proxyHost the value to set - * @return the dsl builder - */ - default LambdaEndpointBuilder proxyHost(String proxyHost) { - doSetProperty("proxyHost", proxyHost); - return this; - } - /** - * To define a proxy port when instantiating the Lambda client. - * - * The option is a: <code>java.lang.Integer</code> type. - * - * Group: proxy - * - * @param proxyPort the value to set - * @return the dsl builder - */ - default LambdaEndpointBuilder proxyPort(Integer proxyPort) { - doSetProperty("proxyPort", proxyPort); - return this; - } - /** - * To define a proxy port when instantiating the Lambda client. - * - * The option will be converted to a - * <code>java.lang.Integer</code> type. - * - * Group: proxy - * - * @param proxyPort the value to set - * @return the dsl builder - */ - default LambdaEndpointBuilder proxyPort(String proxyPort) { - doSetProperty("proxyPort", proxyPort); - return this; - } - /** - * To define a proxy protocol when instantiating the Lambda client. - * - * The option is a: <code>com.amazonaws.Protocol</code> - * type. - * - * Default: HTTPS - * Group: proxy - * - * @param proxyProtocol the value to set - * @return the dsl builder - */ - default LambdaEndpointBuilder proxyProtocol(Protocol proxyProtocol) { - doSetProperty("proxyProtocol", proxyProtocol); - return this; - } - /** - * To define a proxy protocol when instantiating the Lambda client. - * - * The option will be converted to a - * <code>com.amazonaws.Protocol</code> type. - * - * Default: HTTPS - * Group: proxy - * - * @param proxyProtocol the value to set - * @return the dsl builder - */ - default LambdaEndpointBuilder proxyProtocol(String proxyProtocol) { - doSetProperty("proxyProtocol", proxyProtocol); - return this; - } - /** - * Amazon AWS Access Key. - * - * The option is a: <code>java.lang.String</code> type. - * - * Group: security - * - * @param accessKey the value to set - * @return the dsl builder - */ - default LambdaEndpointBuilder accessKey(String accessKey) { - doSetProperty("accessKey", accessKey); - return this; - } - /** - * Amazon AWS Secret Key. - * - * The option is a: <code>java.lang.String</code> type. - * - * Group: security - * - * @param secretKey the value to set - * @return the dsl builder - */ - default LambdaEndpointBuilder secretKey(String secretKey) { - doSetProperty("secretKey", secretKey); - return this; - } - } - - /** - * Advanced builder for endpoint for the AWS Lambda component. - */ - public interface AdvancedLambdaEndpointBuilder - extends - EndpointProducerBuilder { - default LambdaEndpointBuilder basic() { - return (LambdaEndpointBuilder) this; - } - /** - * To use a existing configured AwsLambdaClient as client. - * - * The option is a: - * <code>com.amazonaws.services.lambda.AWSLambda</code> - * type. - * - * Group: advanced - * - * @param awsLambdaClient the value to set - * @return the dsl builder - */ - default AdvancedLambdaEndpointBuilder awsLambdaClient( - Object awsLambdaClient) { - doSetProperty("awsLambdaClient", awsLambdaClient); - return this; - } - /** - * To use a existing configured AwsLambdaClient as client. - * - * The option will be converted to a - * <code>com.amazonaws.services.lambda.AWSLambda</code> - * type. - * - * Group: advanced - * - * @param awsLambdaClient the value to set - * @return the dsl builder - */ - default AdvancedLambdaEndpointBuilder awsLambdaClient( - String awsLambdaClient) { - doSetProperty("awsLambdaClient", awsLambdaClient); - return this; - } - } - - /** - * Proxy enum for - * <code>org.apache.camel.component.aws.lambda.LambdaOperations</code> enum. - */ - enum LambdaOperations { - listFunctions, - getFunction, - createAlias, - deleteAlias, - getAlias, - listAliases, - createFunction, - deleteFunction, - invokeFunction, - updateFunction, - createEventSourceMapping, - deleteEventSourceMapping, - listEventSourceMapping, - listTags, - tagResource, - untagResource, - publishVersion, - listVersions; - } - - /** - * Proxy enum for <code>com.amazonaws.Protocol</code> enum. - */ - enum Protocol { - HTTP, - HTTPS; - } - - public interface LambdaBuilders { - /** - * AWS Lambda (camel-aws-lambda) - * Manage and invoke AWS Lambda functions. - * - * Category: cloud,computing,serverless - * Since: 2.20 - * Maven coordinates: org.apache.camel:camel-aws-lambda - * - * Syntax: <code>aws-lambda:function</code> - * - * Path parameter: function (required) - * Name of the Lambda function. - * - * @param path function - * @return the dsl builder - */ - @Deprecated - default LambdaEndpointBuilder awsLambda(String path) { - return LambdaEndpointBuilderFactory.endpointBuilder("aws-lambda", path); - } - /** - * AWS Lambda (camel-aws-lambda) - * Manage and invoke AWS Lambda functions. - * - * Category: cloud,computing,serverless - * Since: 2.20 - * Maven coordinates: org.apache.camel:camel-aws-lambda - * - * Syntax: <code>aws-lambda:function</code> - * - * Path parameter: function (required) - * Name of the Lambda function. - * - * @param componentName to use a custom component name for the endpoint - * instead of the default name - * @param path function - * @return the dsl builder - */ - @Deprecated - default LambdaEndpointBuilder awsLambda( - String componentName, - String path) { - return LambdaEndpointBuilderFactory.endpointBuilder(componentName, path); - } - } - @Deprecated - static LambdaEndpointBuilder endpointBuilder( - String componentName, - String path) { - class LambdaEndpointBuilderImpl extends AbstractEndpointBuilder implements LambdaEndpointBuilder, AdvancedLambdaEndpointBuilder { - public LambdaEndpointBuilderImpl(String path) { - super(componentName, path); - } - } - return new LambdaEndpointBuilderImpl(path); - } -} \ No newline at end of file
