This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch fhir-source in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 3f450a9f3c54a48e7905b1528b7cbf816135e046 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu Mar 25 13:44:35 2021 +0100 Added Fhir Source Kamelet --- .../ROOT/assets/images/kamelets/fhir-source.svg | 1 + docs/modules/ROOT/pages/fhir-source.adoc | 68 ++++++++++++++++++++++ 2 files changed, 69 insertions(+) diff --git a/docs/modules/ROOT/assets/images/kamelets/fhir-source.svg b/docs/modules/ROOT/assets/images/kamelets/fhir-source.svg new file mode 100644 index 0000000..1d0f76b --- /dev/null +++ b/docs/modules/ROOT/assets/images/kamelets/fhir-source.svg @@ -0,0 +1 @@ +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 248.2 300" xml:space="preserve"><style>.st28{fill:#8c3123}.st29{fill:#e05243}</style><path class="st28" d="M20 52.1L0 62v175.5l20 9.9.1-.1V52.2l-.1-.1"/><path class="st29" d="M127 222L20 247.5V52.1L127 77v145"/><path class="st28" d="M78.7 182.1l45.4 5.8.3-.7.3-74.4-.5-.6-45.4 5.7-.1 64.2"/><path class="st28" d="M124.1 222.3l104.1 25.2.2-.3V52.1l-.2-.2-104.1 25.4v145"/><path class="st29" d="M169.5 [...] \ No newline at end of file diff --git a/docs/modules/ROOT/pages/fhir-source.adoc b/docs/modules/ROOT/pages/fhir-source.adoc new file mode 100644 index 0000000..dee17a4 --- /dev/null +++ b/docs/modules/ROOT/pages/fhir-source.adoc @@ -0,0 +1,68 @@ +// THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT += image:kamelets/fhir-source.svg[] Fhir Source + +*Provided by: "Apache Software Foundation"* + +Receive data from Fhir server. + +== Configuration Options + +The following table summarizes the configuration options available for the `fhir-source` Kamelet: +[width="100%",cols="2,^2,3,^2,^2,^3",options="header"] +|=== +| Property| Name| Description| Type| Default| Example +| *password {empty}* *| Password| The password to access the Fhir server| string| | +| *serverUrl {empty}* *| Server URL| The Fhir server url| string| | +| *username {empty}* *| Username| The username to access the Fhir server| string| | +| encoding| encoding| Encoding to use for all request. Possible values are JSON and XML| string| `"JSON"`| +| fhirVersion| Fhir version| The FHIR Version to use. There are 6 enums and the value can be one of DSTU2, DSTU2_HL7ORG, DSTU2_1, DSTU3, R4, R5| string| `"R4"`| +| prettyPrint| Json Pretty Print| Define if the Json must be pretty print or not| boolean| `true`| +| url| URL| The Fhir resource type url| string| `"/Patient"`| +|=== + +NOTE: Fields marked with ({empty}*) are mandatory. + +== Usage + +This section summarizes how the `fhir-source` can be used in various contexts. + +=== Knative Source + +The `fhir-source` Kamelet can be used as Knative source by binding it to a Knative object. + +.fhir-source-binding.yaml +[source,yaml] +---- +apiVersion: camel.apache.org/v1alpha1 +kind: KameletBinding +metadata: + name: fhir-source-binding +spec: + source: + ref: + kind: Kamelet + apiVersion: camel.apache.org/v1alpha1 + name: fhir-source + properties: + password: "The Password" + serverUrl: "The Server URL" + username: "The Username" + sink: + ref: + kind: InMemoryChannel + apiVersion: messaging.knative.dev/v1 + name: mychannel + +---- + +Make sure you have xref:latest@camel-k::installation/installation.adoc[Camel K installed] into the Kubernetes cluster you're connected to. + +Save the `fhir-source-binding.yaml` file into your hard drive, then configure it according to your needs. + +You can run the source using the following command: + +[source,shell] +---- +kubectl apply -f fhir-source-binding.yaml +---- +// THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT