Skip to content

Commit c23d808

Browse files
committed
Regen
1 parent 0f351e0 commit c23d808

File tree

9 files changed

+119
-88
lines changed

9 files changed

+119
-88
lines changed

catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-athena.json

Lines changed: 17 additions & 16 deletions
Large diffs are not rendered by default.

catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-cw.json

Lines changed: 56 additions & 48 deletions
Large diffs are not rendered by default.

catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-ddb.json

Lines changed: 21 additions & 20 deletions
Large diffs are not rendered by default.

catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/once.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"kind": "component",
44
"name": "once",
55
"title": "Once",
6-
"description": "Camel Once component",
6+
"description": "Trigger a single message only once at startup (useful for development and testing purposes).",
77
"deprecated": false,
88
"firstVersion": "4.17.0",
99
"label": "core,scheduling",

catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/stripe.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"kind": "component",
44
"name": "stripe",
55
"title": "Stripe",
6-
"description": "Camel Stripe component",
6+
"description": "Interact with the Stripe payment platform.",
77
"deprecated": false,
88
"firstVersion": "4.17.0",
99
"label": "saas,finance",

components-starter/camel-aws2-cw-starter/src/main/docs/aws2-cw.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,13 @@
7676
"description": "The metric name",
7777
"sourceType": "org.apache.camel.component.aws2.cw.springboot.Cw2ComponentConfiguration"
7878
},
79+
{
80+
"name": "camel.component.aws2-cw.operation",
81+
"type": "org.apache.camel.component.aws2.cw.Cw2Operations",
82+
"description": "The operation to perform. Defaults to putMetricData.",
83+
"sourceType": "org.apache.camel.component.aws2.cw.springboot.Cw2ComponentConfiguration",
84+
"defaultValue": "putmetricdata"
85+
},
7986
{
8087
"name": "camel.component.aws2-cw.override-endpoint",
8188
"type": "java.lang.Boolean",

components-starter/camel-aws2-cw-starter/src/main/java/org/apache/camel/component/aws2/cw/springboot/Cw2ComponentConfiguration.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import java.time.Instant;
2020
import org.apache.camel.component.aws2.cw.Cw2Component;
2121
import org.apache.camel.component.aws2.cw.Cw2Configuration;
22+
import org.apache.camel.component.aws2.cw.Cw2Operations;
2223
import org.apache.camel.spring.boot.ComponentConfigurationPropertiesCommon;
2324
import org.springframework.boot.context.properties.ConfigurationProperties;
2425
import software.amazon.awssdk.core.Protocol;
@@ -59,6 +60,10 @@ public class Cw2ComponentConfiguration
5960
* The metric name
6061
*/
6162
private String name;
63+
/**
64+
* The operation to perform. Defaults to putMetricData.
65+
*/
66+
private Cw2Operations operation = Cw2Operations.putMetricData;
6267
/**
6368
* Set the need for overriding the endpoint. This option needs to be used in
6469
* combination with the uriEndpointOverride option
@@ -188,6 +193,14 @@ public void setName(String name) {
188193
this.name = name;
189194
}
190195

196+
public Cw2Operations getOperation() {
197+
return operation;
198+
}
199+
200+
public void setOperation(Cw2Operations operation) {
201+
this.operation = operation;
202+
}
203+
191204
public Boolean getOverrideEndpoint() {
192205
return overrideEndpoint;
193206
}

components-starter/camel-once-starter/src/main/java/org/apache/camel/component/once/springboot/OnceComponentConfiguration.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
import org.springframework.boot.context.properties.ConfigurationProperties;
2121

2222
/**
23-
* Camel Once component
23+
* Trigger a single message only once at startup (useful for development and
24+
* testing purposes).
2425
*
2526
* Generated by camel-package-maven-plugin - do not edit this file!
2627
*/

components-starter/camel-stripe-starter/src/main/java/org/apache/camel/component/stripe/springboot/StripeComponentConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import org.springframework.boot.context.properties.ConfigurationProperties;
2121

2222
/**
23-
* Camel Stripe component
23+
* Interact with the Stripe payment platform.
2424
*
2525
* Generated by camel-package-maven-plugin - do not edit this file!
2626
*/

0 commit comments

Comments
 (0)