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
The following commit(s) were added to refs/heads/master by this push: new fb9fb18 CAMEL-13453 - Regen fb9fb18 is described below commit fb9fb184eb7a502e76852b7e7cb5b590f59e081a Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu May 2 14:06:43 2019 +0200 CAMEL-13453 - Regen --- .../src/main/docs/azure-blob-component.adoc | 20 +++++++++++++- .../src/main/docs/azure-queue-component.adoc | 10 ++++++- .../modules/ROOT/pages/azure-blob-component.adoc | 31 ++++++++++++++++++++-- .../modules/ROOT/pages/azure-queue-component.adoc | 21 +++++++++++++-- 4 files changed, 76 insertions(+), 6 deletions(-) diff --git a/components/camel-azure/src/main/docs/azure-blob-component.adoc b/components/camel-azure/src/main/docs/azure-blob-component.adoc index f904267..c1aad7e 100644 --- a/components/camel-azure/src/main/docs/azure-blob-component.adoc +++ b/components/camel-azure/src/main/docs/azure-blob-component.adoc @@ -119,13 +119,31 @@ When using Spring Boot make sure to use the following Maven dependency to have s ---- -The component supports 2 options, which are listed below. +The component supports 20 options, which are listed below. [width="100%",cols="2,5,^1,2",options="header"] |=== | Name | Description | Default | Type +| *camel.component.azure-blob.configuration.account-name* | Set the Azure account name | | String +| *camel.component.azure-blob.configuration.azure-blob-client* | The blob service client | | CloudBlob +| *camel.component.azure-blob.configuration.blob-metadata* | Set the blob meta-data | | Map +| *camel.component.azure-blob.configuration.blob-name* | Blob name, required for most operations | | String +| *camel.component.azure-blob.configuration.blob-offset* | Set the blob offset for the upload or download operations, default is 0 | 0 | Long +| *camel.component.azure-blob.configuration.blob-prefix* | Set a prefix which can be used for listing the blobs | | String +| *camel.component.azure-blob.configuration.blob-type* | Set a blob type, 'blockblob' is default | | BlobType +| *camel.component.azure-blob.configuration.close-stream-after-read* | Close the stream after read or keep it open, default is true | true | Boolean +| *camel.component.azure-blob.configuration.close-stream-after-write* | Close the stream after write or keep it open, default is true | true | Boolean +| *camel.component.azure-blob.configuration.container-name* | Set the blob service container name | | String +| *camel.component.azure-blob.configuration.credentials* | Set the storage credentials, required in most cases | | StorageCredentials +| *camel.component.azure-blob.configuration.data-length* | Set the data length for the download or page blob upload operations | | Long +| *camel.component.azure-blob.configuration.file-dir* | Set the file directory where the downloaded blobs will be saved to | | String +| *camel.component.azure-blob.configuration.operation* | Blob service operation hint to the producer | | BlobServiceOperations +| *camel.component.azure-blob.configuration.public-for-read* | Storage resources can be public for reading their content, if this property is enabled then the credentials do not have to be set | false | Boolean +| *camel.component.azure-blob.configuration.stream-read-size* | Set the minimum read size in bytes when reading the blob content | | Integer +| *camel.component.azure-blob.configuration.stream-write-size* | Set the size of the buffer for writing block and page blocks | | Integer +| *camel.component.azure-blob.configuration.use-flat-listing* | Specify if the flat or hierarchical blob listing should be used | true | Boolean | *camel.component.azure-blob.enabled* | Enable azure-blob component | true | Boolean | *camel.component.azure-blob.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 |=== diff --git a/components/camel-azure/src/main/docs/azure-queue-component.adoc b/components/camel-azure/src/main/docs/azure-queue-component.adoc index ac2df86..a622c0f 100644 --- a/components/camel-azure/src/main/docs/azure-queue-component.adoc +++ b/components/camel-azure/src/main/docs/azure-queue-component.adoc @@ -110,13 +110,21 @@ When using Spring Boot make sure to use the following Maven dependency to have s ---- -The component supports 2 options, which are listed below. +The component supports 10 options, which are listed below. [width="100%",cols="2,5,^1,2",options="header"] |=== | Name | Description | Default | Type +| *camel.component.azure-queue.configuration.account-name* | Set the Azure account name | | String +| *camel.component.azure-queue.configuration.azure-queue-client* | The queue service client | | CloudQueue +| *camel.component.azure-queue.configuration.credentials* | Set the storage credentials, required in most cases | | StorageCredentials +| *camel.component.azure-queue.configuration.message-time-to-live* | Message Time To Live in seconds | | Integer +| *camel.component.azure-queue.configuration.message-visibility-delay* | Message Visibility Delay in seconds | | Integer +| *camel.component.azure-queue.configuration.operation* | Queue service operation hint to the producer | | QueueServiceOperations +| *camel.component.azure-queue.configuration.queue-name* | The queue resource name | | String +| *camel.component.azure-queue.configuration.queue-prefix* | Set a prefix which can be used for listing the queues | | String | *camel.component.azure-queue.enabled* | Enable azure-queue component | true | Boolean | *camel.component.azure-queue.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 |=== diff --git a/docs/components/modules/ROOT/pages/azure-blob-component.adoc b/docs/components/modules/ROOT/pages/azure-blob-component.adoc index 19e828d..c1aad7e 100644 --- a/docs/components/modules/ROOT/pages/azure-blob-component.adoc +++ b/docs/components/modules/ROOT/pages/azure-blob-component.adoc @@ -35,7 +35,16 @@ to("file://blobdirectory"); // component options: START -The Azure Storage Blob Service component has no options. +The Azure Storage Blob Service component supports 2 options, which are listed below. + + + +[width="100%",cols="2,5,^1,2",options="header"] +|=== +| Name | Description | Default | Type +| *configuration* (advanced) | The Blob Service configuration | | BlobService Configuration +| *resolveProperty Placeholders* (advanced) | Whether the component should resolve property placeholders on itself when starting. Only properties which are of String type can use property placeholders. | true | boolean +|=== // component options: END @@ -110,13 +119,31 @@ When using Spring Boot make sure to use the following Maven dependency to have s ---- -The component supports 2 options, which are listed below. +The component supports 20 options, which are listed below. [width="100%",cols="2,5,^1,2",options="header"] |=== | Name | Description | Default | Type +| *camel.component.azure-blob.configuration.account-name* | Set the Azure account name | | String +| *camel.component.azure-blob.configuration.azure-blob-client* | The blob service client | | CloudBlob +| *camel.component.azure-blob.configuration.blob-metadata* | Set the blob meta-data | | Map +| *camel.component.azure-blob.configuration.blob-name* | Blob name, required for most operations | | String +| *camel.component.azure-blob.configuration.blob-offset* | Set the blob offset for the upload or download operations, default is 0 | 0 | Long +| *camel.component.azure-blob.configuration.blob-prefix* | Set a prefix which can be used for listing the blobs | | String +| *camel.component.azure-blob.configuration.blob-type* | Set a blob type, 'blockblob' is default | | BlobType +| *camel.component.azure-blob.configuration.close-stream-after-read* | Close the stream after read or keep it open, default is true | true | Boolean +| *camel.component.azure-blob.configuration.close-stream-after-write* | Close the stream after write or keep it open, default is true | true | Boolean +| *camel.component.azure-blob.configuration.container-name* | Set the blob service container name | | String +| *camel.component.azure-blob.configuration.credentials* | Set the storage credentials, required in most cases | | StorageCredentials +| *camel.component.azure-blob.configuration.data-length* | Set the data length for the download or page blob upload operations | | Long +| *camel.component.azure-blob.configuration.file-dir* | Set the file directory where the downloaded blobs will be saved to | | String +| *camel.component.azure-blob.configuration.operation* | Blob service operation hint to the producer | | BlobServiceOperations +| *camel.component.azure-blob.configuration.public-for-read* | Storage resources can be public for reading their content, if this property is enabled then the credentials do not have to be set | false | Boolean +| *camel.component.azure-blob.configuration.stream-read-size* | Set the minimum read size in bytes when reading the blob content | | Integer +| *camel.component.azure-blob.configuration.stream-write-size* | Set the size of the buffer for writing block and page blocks | | Integer +| *camel.component.azure-blob.configuration.use-flat-listing* | Specify if the flat or hierarchical blob listing should be used | true | Boolean | *camel.component.azure-blob.enabled* | Enable azure-blob component | true | Boolean | *camel.component.azure-blob.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 |=== diff --git a/docs/components/modules/ROOT/pages/azure-queue-component.adoc b/docs/components/modules/ROOT/pages/azure-queue-component.adoc index b0a5850..a622c0f 100644 --- a/docs/components/modules/ROOT/pages/azure-queue-component.adoc +++ b/docs/components/modules/ROOT/pages/azure-queue-component.adoc @@ -35,7 +35,16 @@ to("file://queuedirectory"); // component options: START -The Azure Storage Queue Service component has no options. +The Azure Storage Queue Service component supports 2 options, which are listed below. + + + +[width="100%",cols="2,5,^1,2",options="header"] +|=== +| Name | Description | Default | Type +| *configuration* (advanced) | The Queue Service configuration | | QueueService Configuration +| *resolveProperty Placeholders* (advanced) | Whether the component should resolve property placeholders on itself when starting. Only properties which are of String type can use property placeholders. | true | boolean +|=== // component options: END @@ -101,13 +110,21 @@ When using Spring Boot make sure to use the following Maven dependency to have s ---- -The component supports 2 options, which are listed below. +The component supports 10 options, which are listed below. [width="100%",cols="2,5,^1,2",options="header"] |=== | Name | Description | Default | Type +| *camel.component.azure-queue.configuration.account-name* | Set the Azure account name | | String +| *camel.component.azure-queue.configuration.azure-queue-client* | The queue service client | | CloudQueue +| *camel.component.azure-queue.configuration.credentials* | Set the storage credentials, required in most cases | | StorageCredentials +| *camel.component.azure-queue.configuration.message-time-to-live* | Message Time To Live in seconds | | Integer +| *camel.component.azure-queue.configuration.message-visibility-delay* | Message Visibility Delay in seconds | | Integer +| *camel.component.azure-queue.configuration.operation* | Queue service operation hint to the producer | | QueueServiceOperations +| *camel.component.azure-queue.configuration.queue-name* | The queue resource name | | String +| *camel.component.azure-queue.configuration.queue-prefix* | Set a prefix which can be used for listing the queues | | String | *camel.component.azure-queue.enabled* | Enable azure-queue component | true | Boolean | *camel.component.azure-queue.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 |===