You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2018/09/06 13:10:35 UTC

[camel] 04/05: CAMEL-12784 - Create a Camel-google-calendar-stream component

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 5cfd504fc0f3778e8f6482f59bda869515cb26b1
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Sep 6 14:31:30 2018 +0200

    CAMEL-12784 - Create a Camel-google-calendar-stream component
---
 .../docs/google-calendar-stream-component.adoc     | 28 ++++++++++------------
 1 file changed, 13 insertions(+), 15 deletions(-)

diff --git a/components/camel-google-calendar/src/main/docs/google-calendar-stream-component.adoc b/components/camel-google-calendar/src/main/docs/google-calendar-stream-component.adoc
index 15ed8b9..4530424 100644
--- a/components/camel-google-calendar/src/main/docs/google-calendar-stream-component.adoc
+++ b/components/camel-google-calendar/src/main/docs/google-calendar-stream-component.adoc
@@ -117,27 +117,25 @@ with the following path and query parameters:
 === Spring Boot Auto-Configuration
 
 
-The component supports 14 options, which are listed below.
+The component supports 12 options, which are listed below.
 
 
 
 [width="100%",cols="2,5,^1,2",options="header"]
 |===
 | Name | Description | Default | Type
-| *camel.component.google-mail-stream.client-factory* | The client Factory. The option is a org.apache.camel.component.google.mail.GoogleMailClientFactory type. |  | String
-| *camel.component.google-mail-stream.configuration.access-token* | OAuth 2 access token. This typically expires after an hour so refreshToken is recommended for long term usage. |  | String
-| *camel.component.google-mail-stream.configuration.application-name* | Google mail application name. Example would be camel-google-mail/1.0 |  | String
-| *camel.component.google-mail-stream.configuration.client-id* | Client ID of the mail application |  | String
-| *camel.component.google-mail-stream.configuration.client-secret* | Client secret of the mail application |  | String
-| *camel.component.google-mail-stream.configuration.index* | Specifies an index for the endpoint |  | String
-| *camel.component.google-mail-stream.configuration.labels* | Comma separated list of labels to take into account |  | String
-| *camel.component.google-mail-stream.configuration.mark-as-read* | Mark the message as read once it has been consumed | false | Boolean
-| *camel.component.google-mail-stream.configuration.max-results* | Max results to be returned | 10 | Long
-| *camel.component.google-mail-stream.configuration.query* | The query to execute on gmail box | is:unread | String
-| *camel.component.google-mail-stream.configuration.refresh-token* | OAuth 2 refresh token. Using this, the Google Calendar component can obtain a new accessToken whenever the current one expires - a necessity if the application is long-lived. |  | String
-| *camel.component.google-mail-stream.configuration.scopes* | Specifies the level of permissions you want a mail application to have to a user account. See https://developers.google.com/gmail/api/auth/scopes for more info. |  | List
-| *camel.component.google-mail-stream.enabled* | Whether to enable auto configuration of the google-mail-stream component. This is enabled by default. |  | Boolean
-| *camel.component.google-mail-stream.resolve-property-placeholders* | Whether the component should resolve property placeholders on itself when starting. Only properties which are of String type can use property placeholders. | true | Boolean
+| *camel.component.google-calendar-stream.client-factory* | The client Factory. The option is a org.apache.camel.component.google.calendar.GoogleCalendarClientFactory type. |  | String
+| *camel.component.google-calendar-stream.configuration.access-token* | OAuth 2 access token. This typically expires after an hour so refreshToken is recommended for long term usage. |  | String
+| *camel.component.google-calendar-stream.configuration.application-name* | Google Calendar application name. Example would be camel-google-calendar/1.0 |  | String
+| *camel.component.google-calendar-stream.configuration.client-id* | Client ID of the mail application |  | String
+| *camel.component.google-calendar-stream.configuration.client-secret* | Client secret of the mail application |  | String
+| *camel.component.google-calendar-stream.configuration.index* | Specifies an index for the endpoint |  | String
+| *camel.component.google-calendar-stream.configuration.max-results* | Max results to be returned | 10 | Integer
+| *camel.component.google-calendar-stream.configuration.query* | The query to execute on calendar |  | String
+| *camel.component.google-calendar-stream.configuration.refresh-token* | OAuth 2 refresh token. Using this, the Google Calendar component can obtain a new accessToken whenever the current one expires - a necessity if the application is long-lived. |  | String
+| *camel.component.google-calendar-stream.configuration.scopes* | Specifies the level of permissions you want a mail application to have to a user account. See https://developers.google.com/calendar/api/auth/scopes for more info. |  | List
+| *camel.component.google-calendar-stream.enabled* | Whether to enable auto configuration of the google-calendar-stream component. This is enabled by default. |  | Boolean
+| *camel.component.google-calendar-stream.resolve-property-placeholders* | Whether the component should resolve property placeholders on itself when starting. Only properties which are of String type can use property placeholders. | true | Boolean
 |===
 // spring-boot-auto-configure options: END