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 14fc40db91de3487706827d09cf60c8712597bf7 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Apr 22 12:26:33 2020 +0200 Regen website docs --- docs/components/modules/ROOT/pages/aws2-ec2-component.adoc | 2 +- docs/components/modules/ROOT/pages/aws2-ecs-component.adoc | 2 +- docs/components/modules/ROOT/pages/aws2-eks-component.adoc | 2 +- docs/components/modules/ROOT/pages/aws2-iam-component.adoc | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/components/modules/ROOT/pages/aws2-ec2-component.adoc b/docs/components/modules/ROOT/pages/aws2-ec2-component.adoc index 0fa9e0f..7c4de7c 100644 --- a/docs/components/modules/ROOT/pages/aws2-ec2-component.adoc +++ b/docs/components/modules/ROOT/pages/aws2-ec2-component.adoc @@ -188,7 +188,7 @@ In AWS EC2 there are multiple operations you can submit, as an example for Creat ------------------------------------------------------------------------------------------------------ from("direct:start") .setBody(RunInstancesRequest.builder().imageId("test-1").instanceType(InstanceType.T2_MICRO).build()) - .to("aws2-ec2://TestDomain?accessKey=xxxx&secretKey=xxxx&operation=createAndRunInstances"); + .to("aws2-ec2://TestDomain?accessKey=xxxx&secretKey=xxxx&operation=createAndRunInstances&pojoRequest=true"); ------------------------------------------------------------------------------------------------------ In this way you'll pass the request directly without the need of passing headers and options specifically related to this operation. diff --git a/docs/components/modules/ROOT/pages/aws2-ecs-component.adoc b/docs/components/modules/ROOT/pages/aws2-ecs-component.adoc index 22ab940..4082edc 100644 --- a/docs/components/modules/ROOT/pages/aws2-ecs-component.adoc +++ b/docs/components/modules/ROOT/pages/aws2-ecs-component.adoc @@ -165,7 +165,7 @@ In AWS ECS there are multiple operations you can submit, as an example for List ------------------------------------------------------------------------------------------------------ from("direct:start") .setBody(ListClustersRequest.builder().maxResults(10).build()) - .to("aws2-ecs://test?ecsClient=#amazonEcsClient&operation=listClusters") + .to("aws2-ecs://test?ecsClient=#amazonEcsClient&operation=listClusters&pojoRequest=true") ------------------------------------------------------------------------------------------------------ In this way you'll pass the request directly without the need of passing headers and options specifically related to this operation. diff --git a/docs/components/modules/ROOT/pages/aws2-eks-component.adoc b/docs/components/modules/ROOT/pages/aws2-eks-component.adoc index c7725fe..fc0c1a6 100644 --- a/docs/components/modules/ROOT/pages/aws2-eks-component.adoc +++ b/docs/components/modules/ROOT/pages/aws2-eks-component.adoc @@ -173,7 +173,7 @@ In AWS EKS there are multiple operations you can submit, as an example for List ------------------------------------------------------------------------------------------------------ from("direct:start") .setBody(ListClustersRequest.builder().maxResults(12).build()) - .to("aws2-eks://test?eksClient=#amazonEksClient&operation=listClusters") + .to("aws2-eks://test?eksClient=#amazonEksClient&operation=listClusters&pojoRequest=true") ------------------------------------------------------------------------------------------------------ In this way you'll pass the request directly without the need of passing headers and options specifically related to this operation. diff --git a/docs/components/modules/ROOT/pages/aws2-iam-component.adoc b/docs/components/modules/ROOT/pages/aws2-iam-component.adoc index 4df6d67..cc5ee4b 100644 --- a/docs/components/modules/ROOT/pages/aws2-iam-component.adoc +++ b/docs/components/modules/ROOT/pages/aws2-iam-component.adoc @@ -182,7 +182,7 @@ In AWS IAM there are multiple operations you can submit, as an example for Creat ------------------------------------------------------------------------------------------------------ from("direct:createUser") .setBody(CreateUserRequest.builder().userName("camel").build()) - .to("aws-iam://test?iamClient=#amazonIAMClient&operation=createUser") + .to("aws-iam://test?iamClient=#amazonIAMClient&operation=createUser&pojoRequest=true") ------------------------------------------------------------------------------------------------------ In this way you'll pass the request directly without the need of passing headers and options specifically related to this operation.