All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.kamelet-action.yaml.tmpl Maven / Gradle / Ivy

There is a newer version: 4.8.1
Show newest version
apiVersion: camel.apache.org/v1
kind: Kamelet
metadata:
  name: {{ .Name }}
  labels:
    camel.apache.org/kamelet.type: "action"
spec:
  definition:
    title: "Delay Action"
    description: Delay the processing using a specific amount of time
    required:
      - milliseconds
    properties:
      milliseconds:
        title: Milliseconds
        description: The number of milliseconds of delay
        type: integer
        example: 1000
  dependencies:
  - "camel:core"
  - "camel:kamelet"
  template:
    from:
      uri: "kamelet:source"
      steps:
      - delay:
          constant: "{{milliseconds}}"




© 2015 - 2024 Weber Informatics LLC | Privacy Policy