cleaning up whitelist properties files
This commit is contained in:
@@ -1 +1,2 @@
|
||||
configuration-properties.classes=org.springframework.cloud.fn.spel.SpelFunctionProperties
|
||||
|
||||
|
||||
@@ -10,6 +10,14 @@ The **$$rabbit$$** $$sink$$ has the following options:
|
||||
(See the Spring Boot documentation for RabbitMQ connection properties)
|
||||
|
||||
//tag::configuration-properties[]
|
||||
$$rabbit.converter-bean-name$$:: $$The bean name for a custom message converter; if omitted, a SimpleMessageConverter is used. If 'jsonConverter', a Jackson2JsonMessageConverter bean will be created for you.$$ *($$String$$, default: `$$<none>$$`)*
|
||||
$$rabbit.exchange$$:: $$Exchange name - overridden by exchangeNameExpression, if supplied.$$ *($$String$$, default: `$$<empty string>$$`)*
|
||||
$$rabbit.exchange-expression$$:: $$A SpEL expression that evaluates to an exchange name.$$ *($$Expression$$, default: `$$<none>$$`)*
|
||||
$$rabbit.mapped-request-headers$$:: $$Headers that will be mapped.$$ *($$String[]$$, default: `$$[*]$$`)*
|
||||
$$rabbit.own-connection$$:: $$When true, use a separate connection based on the boot properties.$$ *($$Boolean$$, default: `$$false$$`)*
|
||||
$$rabbit.persistent-delivery-mode$$:: $$Default delivery mode when 'amqp_deliveryMode' header is not present, true for PERSISTENT.$$ *($$Boolean$$, default: `$$false$$`)*
|
||||
$$rabbit.routing-key$$:: $$Routing key - overridden by routingKeyExpression, if supplied.$$ *($$String$$, default: `$$<none>$$`)*
|
||||
$$rabbit.routing-key-expression$$:: $$A SpEL expression that evaluates to a routing key.$$ *($$Expression$$, default: `$$<none>$$`)*
|
||||
$$spring.rabbitmq.addresses$$:: $$Comma-separated list of addresses to which the client should connect. When set, the host and port are ignored.$$ *($$String$$, default: `$$<none>$$`)*
|
||||
$$spring.rabbitmq.connection-timeout$$:: $$Connection timeout. Set it to zero to wait forever.$$ *($$Duration$$, default: `$$<none>$$`)*
|
||||
$$spring.rabbitmq.host$$:: $$RabbitMQ host. Ignored if an address is set.$$ *($$String$$, default: `$$localhost$$`)*
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
configuration-properties.classes=RabbitConsumerProperties, \
|
||||
configuration-properties.classes=org.springframework.cloud.fn.consumer.rabbit.RabbitConsumerProperties, \
|
||||
org.springframework.boot.autoconfigure.amqp.RabbitProperties
|
||||
|
||||
@@ -20,6 +20,14 @@ The payload of these 2 additional marker messages is of type `FileSplitter.FileM
|
||||
The **$$file$$** $$source$$ has the following options:
|
||||
|
||||
//tag::configuration-properties[]
|
||||
$$file.consumer.markers-json$$:: $$When 'fileMarkers == true', specify if they should be produced as FileSplitter.FileMarker objects or JSON.$$ *($$Boolean$$, default: `$$true$$`)*
|
||||
$$file.consumer.mode$$:: $$The FileReadingMode to use for file reading sources. Values are 'ref' - The File object, 'lines' - a message per line, or 'contents' - the contents as bytes.$$ *($$FileReadingMode$$, default: `$$<none>$$`, possible values: `ref`,`lines`,`contents`)*
|
||||
$$file.consumer.with-markers$$:: $$Set to true to emit start of file/end of file marker messages before/after the data. Only valid with FileReadingMode 'lines'.$$ *($$Boolean$$, default: `$$<none>$$`)*
|
||||
$$file.supplier.delay-when-empty$$:: $$Duration of delay when no new files are detected.$$ *($$Duration$$, default: `$$1s$$`)*
|
||||
$$file.supplier.directory$$:: $$The directory to poll for new files.$$ *($$File$$, default: `$$<none>$$`)*
|
||||
$$file.supplier.filename-pattern$$:: $$A simple ant pattern to match files.$$ *($$String$$, default: `$$<none>$$`)*
|
||||
$$file.supplier.filename-regex$$:: $$A regex pattern to match files.$$ *($$Pattern$$, default: `$$<none>$$`)*
|
||||
$$file.supplier.prevent-duplicates$$:: $$Set to true to include an AcceptOnceFileListFilter which prevents duplicates.$$ *($$Boolean$$, default: `$$true$$`)*
|
||||
//end::configuration-properties[]
|
||||
|
||||
//end::ref-doc[]
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
configuration-properties.classes=FileSupplierProperties,\
|
||||
FileConsumerProperties
|
||||
configuration-properties.classes=org.springframework.cloud.fn.supplier.file.FileSupplierProperties,\
|
||||
org.springframework.cloud.fn.supplier.file.FileConsumerProperties
|
||||
|
||||
@@ -20,6 +20,11 @@ If content type does not match `text/*` or `application/json`
|
||||
The **$$http$$** $$source$$ supports the following configuration properties:
|
||||
|
||||
//tag::configuration-properties[]
|
||||
$$http.cors.allow-credentials$$:: $$Whether the browser should include any cookies associated with the domain of the request being annotated.$$ *($$Boolean$$, default: `$$<none>$$`)*
|
||||
$$http.cors.allowed-headers$$:: $$List of request headers that can be used during the actual request.$$ *($$String[]$$, default: `$$<none>$$`)*
|
||||
$$http.cors.allowed-origins$$:: $$List of allowed origins, e.g. "https://domain1.com".$$ *($$String[]$$, default: `$$<none>$$`)*
|
||||
$$http.mapped-request-headers$$:: $$Headers that will be mapped.$$ *($$String[]$$, default: `$$<none>$$`)*
|
||||
$$http.path-pattern$$:: $$HTTP endpoint path mapping.$$ *($$String$$, default: `$$/$$`)*
|
||||
$$server.port$$:: $$Server HTTP port.$$ *($$Integer$$, default: `$$8080$$`)*
|
||||
//end::configuration-properties[]
|
||||
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
configuration-properties.classes=HttpSourceProperties,\
|
||||
HttpSourceProperties$Cors
|
||||
configuration-properties.classes=org.springframework.cloud.fn.supplier.http.HttpSourceProperties,\
|
||||
org.springframework.cloud.fn.supplier.http.HttpSourceProperties$Cors
|
||||
configuration-properties.names=server.port
|
||||
|
||||
@@ -13,6 +13,10 @@ This source is fully based on the `DataSourceAutoConfiguration`, so refer to the
|
||||
The **$$jdbc$$** $$source$$ has the following options:
|
||||
|
||||
//tag::configuration-properties[]
|
||||
$$jdbc.supplier.max-rows$$:: $$Max numbers of rows to process for query.$$ *($$Integer$$, default: `$$0$$`)*
|
||||
$$jdbc.supplier.query$$:: $$The query to use to select data.$$ *($$String$$, default: `$$<none>$$`)*
|
||||
$$jdbc.supplier.split$$:: $$Whether to split the SQL result as individual messages.$$ *($$Boolean$$, default: `$$true$$`)*
|
||||
$$jdbc.supplier.update$$:: $$An SQL update statement to execute for marking polled messages as 'seen'.$$ *($$String$$, default: `$$<none>$$`)*
|
||||
$$spring.cloud.stream.poller.cron$$:: $$Cron expression value for the Cron Trigger.$$ *($$String$$, default: `$$<none>$$`)*
|
||||
$$spring.cloud.stream.poller.fixed-delay$$:: $$Fixed delay for default poller.$$ *($$Long$$, default: `$$1000$$`)*
|
||||
$$spring.cloud.stream.poller.initial-delay$$:: $$Initial delay for periodic triggers.$$ *($$Integer$$, default: `$$0$$`)*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
configuration-properties.classes=JdbcSupplierProperties,\
|
||||
configuration-properties.classes=org.springframework.cloud.fn.supplier.jdbc.JdbcSupplierProperties,\
|
||||
org.springframework.cloud.stream.config.DefaultPollerProperties
|
||||
configuration-properties.names=\
|
||||
spring.datasource.url,\
|
||||
|
||||
@@ -12,6 +12,7 @@ $$spring.cloud.stream.poller.cron$$:: $$Cron expression value for the Cron Trigg
|
||||
$$spring.cloud.stream.poller.fixed-delay$$:: $$Fixed delay for default poller.$$ *($$Long$$, default: `$$1000$$`)*
|
||||
$$spring.cloud.stream.poller.initial-delay$$:: $$Initial delay for periodic triggers.$$ *($$Integer$$, default: `$$0$$`)*
|
||||
$$spring.cloud.stream.poller.max-messages-per-poll$$:: $$Maximum messages per poll for the default poller.$$ *($$Long$$, default: `$$1$$`)*
|
||||
$$time.date-format$$:: $$Format for the date value.$$ *($$String$$, default: `$$MM/dd/yy HH:mm:ss$$`)*
|
||||
//end::configuration-properties[]
|
||||
|
||||
//end::ref-doc[]
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
configuration-properties.classes=TimeProperties,\
|
||||
configuration-properties.classes=org.springframework.cloud.fn.supplier.time.TimeProperties,\
|
||||
org.springframework.cloud.stream.config.DefaultPollerProperties
|
||||
|
||||
Reference in New Issue
Block a user