@kaoto/camel-catalog 0.7.0 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. package/dist/camel-catalog/citrus/{4.10.0 → 4.10.3}/citrus-agent-configuration.json +4 -4
  2. package/dist/camel-catalog/citrus/{4.10.0 → 4.10.3}/citrus-catalog-aggregate-endpoints.json +174 -174
  3. package/dist/camel-catalog/citrus/{4.10.1 → 4.10.3}/citrus-catalog-aggregate-functions.json +43 -43
  4. package/dist/camel-catalog/citrus/4.10.3/citrus-catalog-aggregate-infra-services.json +623 -0
  5. package/dist/camel-catalog/citrus/{4.10.1 → 4.10.3}/citrus-catalog-aggregate-test-actions.json +1686 -1044
  6. package/dist/camel-catalog/citrus/{4.10.0 → 4.10.3}/citrus-catalog-aggregate-test-containers.json +19 -19
  7. package/dist/camel-catalog/citrus/{4.10.0 → 4.10.3}/citrus-catalog-aggregate-validation-matcher.json +25 -25
  8. package/dist/camel-catalog/citrus/{4.10.1 → 4.10.3}/citrus-testcase.json +538 -174
  9. package/dist/camel-catalog/citrus/{4.10.0 → 4.10.3}/citrus-testcase.xsd +97 -3
  10. package/dist/camel-catalog/citrus/{4.10.1 → 4.10.3}/index.json +15 -9
  11. package/dist/camel-catalog/citrus/{4.10.1 → 5.0.0}/citrus-agent-configuration.json +5 -5
  12. package/dist/camel-catalog/citrus/{4.10.1 → 5.0.0}/citrus-catalog-aggregate-endpoints.json +815 -354
  13. package/dist/camel-catalog/citrus/{4.10.0 → 5.0.0}/citrus-catalog-aggregate-functions.json +46 -46
  14. package/dist/camel-catalog/citrus/5.0.0/citrus-catalog-aggregate-infra-services.json +641 -0
  15. package/dist/camel-catalog/citrus/{4.10.0 → 5.0.0}/citrus-catalog-aggregate-test-actions.json +3187 -1495
  16. package/dist/camel-catalog/citrus/{4.10.1 → 5.0.0}/citrus-catalog-aggregate-test-containers.json +19 -19
  17. package/dist/camel-catalog/citrus/{4.10.1 → 5.0.0}/citrus-catalog-aggregate-validation-matcher.json +25 -25
  18. package/dist/camel-catalog/citrus/{4.10.0 → 5.0.0}/citrus-testcase.json +2376 -1495
  19. package/dist/camel-catalog/citrus/{4.10.1 → 5.0.0}/citrus-testcase.xsd +1880 -53
  20. package/dist/camel-catalog/citrus/{4.10.0 → 5.0.0}/index.json +15 -9
  21. package/dist/camel-catalog/index.json +8 -8
  22. package/dist/index.js +1 -1
  23. package/dist/types/catalog-index.d.ts +1 -1
  24. package/package.json +2 -2
@@ -87,7 +87,7 @@
87
87
  </xs:complexType>
88
88
  </xs:element>
89
89
  </xs:sequence>
90
- <xs:attribute name="ignore-case" type="xs:string"/>
90
+ <xs:attribute name="ignore-case" type="xs:boolean"/>
91
91
  </xs:complexType>
92
92
  </xs:element>
93
93
  <xs:element name="body" minOccurs="0">
@@ -153,6 +153,8 @@
153
153
  </xs:sequence>
154
154
  </xs:complexType>
155
155
  </xs:element>
156
+ <xs:element name="endpoints" type="tns:TestEndpoints" minOccurs="0"/>
157
+ <xs:element name="configuration" type="tns:TestConfiguration" minOccurs="0"/>
156
158
  <xs:element name="actions" type="tns:TestActions" minOccurs="0"/>
157
159
  <xs:element name="finally" type="tns:TestActions" minOccurs="0"/>
158
160
  </xs:sequence>
@@ -161,6 +163,1272 @@
161
163
  <xs:attribute name="status" type="tns:StatusType"/>
162
164
  </xs:complexType>
163
165
 
166
+ <xs:complexType name="TestConfiguration">
167
+ <xs:sequence>
168
+ <xs:element name="beans" minOccurs="0">
169
+ <xs:complexType>
170
+ <xs:sequence>
171
+ <xs:element name="bean" maxOccurs="unbounded">
172
+ <xs:complexType>
173
+ <xs:sequence>
174
+ <xs:element name="property" type="tns:PropertyType" minOccurs="0" maxOccurs="unbounded"/>
175
+ </xs:sequence>
176
+ <xs:attribute name="name" type="xs:string" use="required"/>
177
+ <xs:attribute name="type" type="xs:string" use="required"/>
178
+ </xs:complexType>
179
+ </xs:element>
180
+ </xs:sequence>
181
+ </xs:complexType>
182
+ </xs:element>
183
+ </xs:sequence>
184
+ </xs:complexType>
185
+
186
+ <xs:complexType name="TestEndpoints">
187
+ <xs:sequence>
188
+ <xs:choice minOccurs="0" maxOccurs="unbounded">
189
+ <xs:element name="endpoint" type="tns:TestEndpoint"/>
190
+ <xs:element name="camel" type="tns:CamelEndpoints"/>
191
+ <xs:element name="channel" type="tns:SpringMessageChannelEndpoints"/>
192
+ <xs:element name="context" type="tns:ContextEndpoints"/>
193
+ <xs:element name="direct" type="tns:DirectEndpoints"/>
194
+ <xs:element name="docker" type="tns:DockerEndpoints"/>
195
+ <xs:element name="ftp" type="tns:FtpEndpoints"/>
196
+ <xs:element name="scp" type="tns:ScpEndpoints"/>
197
+ <xs:element name="sftp" type="tns:SftpEndpoints"/>
198
+ <xs:element name="http" type="tns:HttpEndpoints"/>
199
+ <xs:element name="jms" type="tns:JmsEndpoints"/>
200
+ <xs:element name="jmx" type="tns:JmxEndpoints"/>
201
+ <xs:element name="kafka" type="tns:KafkaEndpoints"/>
202
+ <xs:element name="kubernetes" type="tns:KubernetesEndpoints"/>
203
+ <xs:element name="mail" type="tns:MailEndpoints"/>
204
+ <xs:element name="rmi" type="tns:RmiEndpoints"/>
205
+ <xs:element name="selenium" type="tns:SeleniumEndpoints"/>
206
+ <xs:element name="ssh" type="tns:SshEndpoints"/>
207
+ <xs:element name="soap" type="tns:SoapWebServiceEndpoints"/>
208
+ <xs:element name="websocket" type="tns:WebsocketEndpoints"/>
209
+ <xs:element name="vertx" type="tns:VertxEndpoints"/>
210
+ </xs:choice>
211
+ <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
212
+ </xs:sequence>
213
+ </xs:complexType>
214
+
215
+ <xs:complexType name="CamelEndpoints">
216
+ <xs:choice>
217
+ <xs:element name="asynchronous">
218
+ <xs:annotation>
219
+ <xs:documentation>Camel endpoint for asynchronous communication</xs:documentation>
220
+ </xs:annotation>
221
+ <xs:complexType>
222
+ <xs:attribute name="name" type="xs:ID" use="required"/>
223
+ <xs:attribute name="camel-context" type="xs:string"/>
224
+ <xs:attribute name="endpoint-uri" type="xs:string" use="required"/>
225
+ <xs:attribute name="message-converter" type="xs:string"/>
226
+ <xs:attribute name="actor" type="xs:string"/>
227
+ <xs:attribute name="timeout" type="xs:string"/>
228
+ </xs:complexType>
229
+ </xs:element>
230
+ <xs:element name="synchronous">
231
+ <xs:annotation>
232
+ <xs:documentation>Camel endpoint for synchronous communication</xs:documentation>
233
+ </xs:annotation>
234
+ <xs:complexType>
235
+ <xs:attribute name="name" type="xs:ID" use="required"/>
236
+ <xs:attribute name="camel-context" type="xs:string"/>
237
+ <xs:attribute name="endpoint-uri" type="xs:string" use="required"/>
238
+ <xs:attribute name="message-converter" type="xs:string"/>
239
+ <xs:attribute name="message-correlator" type="xs:string"/>
240
+ <xs:attribute name="polling-interval" type="xs:string"/>
241
+ <xs:attribute name="actor" type="xs:string"/>
242
+ <xs:attribute name="timeout" type="xs:string"/>
243
+ </xs:complexType>
244
+ </xs:element>
245
+ </xs:choice>
246
+ </xs:complexType>
247
+
248
+ <xs:complexType name="ContextEndpoints">
249
+ <xs:sequence>
250
+ <xs:element name="message-store">
251
+ <xs:annotation>
252
+ <xs:documentation>Endpoint connects to the Citrus context message store.</xs:documentation>
253
+ </xs:annotation>
254
+ <xs:complexType>
255
+ <xs:attribute name="name" type="xs:ID" use="required"/>
256
+ <xs:attribute name="message-name" type="xs:string"/>
257
+ <xs:attribute name="actor" type="xs:string"/>
258
+ <xs:attribute name="timeout" type="xs:string"/>
259
+ </xs:complexType>
260
+ </xs:element>
261
+ </xs:sequence>
262
+ </xs:complexType>
263
+
264
+ <xs:complexType name="SpringMessageChannelEndpoints">
265
+ <xs:choice>
266
+ <xs:element name="asynchronous">
267
+ <xs:annotation>
268
+ <xs:documentation>Message channel endpoint able to produce and consume messages on a channel destination.</xs:documentation>
269
+ </xs:annotation>
270
+ <xs:complexType>
271
+ <xs:complexContent>
272
+ <xs:restriction base="SpringMessageChannelEndpointType"/>
273
+ </xs:complexContent>
274
+ </xs:complexType>
275
+ </xs:element>
276
+ <xs:element name="synchronous">
277
+ <xs:annotation>
278
+ <xs:documentation>Message channel endpoint able to produce and consume messages on a channel destination.</xs:documentation>
279
+ </xs:annotation>
280
+ <xs:complexType>
281
+ <xs:complexContent>
282
+ <xs:extension base="SpringMessageChannelEndpointType">
283
+ <xs:attribute name="polling-interval" type="xs:string"/>
284
+ <xs:attribute name="message-correlator" type="xs:string"/>
285
+ </xs:extension>
286
+ </xs:complexContent>
287
+ </xs:complexType>
288
+ </xs:element>
289
+ </xs:choice>
290
+ </xs:complexType>
291
+
292
+ <xs:complexType name="SpringMessageChannelEndpointType">
293
+ <xs:annotation>
294
+ <xs:documentation>Basic channel endpoint properties.</xs:documentation>
295
+ </xs:annotation>
296
+ <xs:attribute name="name" type="xs:ID"/>
297
+ <xs:attribute name="messaging-template" type="xs:string"/>
298
+ <xs:attribute name="channel" type="xs:string"/>
299
+ <xs:attribute name="channel-name" type="xs:string"/>
300
+ <xs:attribute name="channel-resolver" type="xs:string"/>
301
+ <xs:attribute name="use-object-messages" type="xs:boolean"/>
302
+ <xs:attribute name="filter-internal-headers" type="xs:boolean" default="true"/>
303
+ <xs:attribute name="actor" type="xs:string"/>
304
+ <xs:attribute name="timeout" type="xs:string"/>
305
+ </xs:complexType>
306
+
307
+ <xs:complexType name="DirectEndpoints">
308
+ <xs:choice>
309
+ <xs:element name="asynchronous">
310
+ <xs:annotation>
311
+ <xs:documentation>Direct message queue endpoint able to produce and consume messages on a in memory destination.</xs:documentation>
312
+ </xs:annotation>
313
+ <xs:complexType>
314
+ <xs:complexContent>
315
+ <xs:restriction base="DirectEndpointType"/>
316
+ </xs:complexContent>
317
+ </xs:complexType>
318
+ </xs:element>
319
+ <xs:element name="synchronous">
320
+ <xs:annotation>
321
+ <xs:documentation>Direct message queue endpoint able to produce and consume messages on a in memory destination.</xs:documentation>
322
+ </xs:annotation>
323
+ <xs:complexType>
324
+ <xs:complexContent>
325
+ <xs:extension base="DirectEndpointType">
326
+ <xs:attribute name="polling-interval" type="xs:string"/>
327
+ <xs:attribute name="message-correlator" type="xs:string"/>
328
+ </xs:extension>
329
+ </xs:complexContent>
330
+ </xs:complexType>
331
+ </xs:element>
332
+ </xs:choice>
333
+ </xs:complexType>
334
+
335
+ <xs:complexType name="DirectEndpointType">
336
+ <xs:annotation>
337
+ <xs:documentation>Basic direct endpoint properties.</xs:documentation>
338
+ </xs:annotation>
339
+ <xs:attribute name="name" type="xs:ID"/>
340
+ <xs:attribute name="queue" type="xs:string"/>
341
+ <xs:attribute name="queue-name" type="xs:string"/>
342
+ <xs:attribute name="actor" type="xs:string"/>
343
+ <xs:attribute name="timeout" type="xs:string"/>
344
+ </xs:complexType>
345
+
346
+ <xs:complexType name="DockerEndpoints">
347
+ <xs:sequence>
348
+ <xs:element name="client">
349
+ <xs:annotation>
350
+ <xs:documentation>Docker Http client component able to execute docker commands such as inspect, start, stop.</xs:documentation>
351
+ </xs:annotation>
352
+ <xs:complexType>
353
+ <xs:attribute name="name" type="xs:ID" use="required"/>
354
+ <xs:attribute name="url" type="xs:string"/>
355
+ <xs:attribute name="version" type="xs:string"/>
356
+ <xs:attribute name="username" type="xs:string"/>
357
+ <xs:attribute name="password" type="xs:string"/>
358
+ <xs:attribute name="email" type="xs:string"/>
359
+ <xs:attribute name="registry" type="xs:string"/>
360
+ <xs:attribute name="verify-tls" type="xs:boolean"/>
361
+ <xs:attribute name="cert-path" type="xs:string"/>
362
+ <xs:attribute name="config-path" type="xs:string"/>
363
+ </xs:complexType>
364
+ </xs:element>
365
+ </xs:sequence>
366
+ </xs:complexType>
367
+ <xs:complexType name="FtpEndpoints">
368
+ <xs:choice>
369
+ <xs:element name="client">
370
+ <xs:annotation>
371
+ <xs:documentation>Ftp client component sends commands to server instance and receives reply messages.</xs:documentation>
372
+ </xs:annotation>
373
+ <xs:complexType>
374
+ <xs:attribute name="name" type="xs:ID" use="required"/>
375
+ <xs:attribute name="host" type="xs:string"/>
376
+ <xs:attribute name="port" type="xs:string"/>
377
+ <xs:attribute name="username" type="xs:string"/>
378
+ <xs:attribute name="password" type="xs:string"/>
379
+ <xs:attribute name="message-correlator" type="xs:string"/>
380
+ <xs:attribute name="actor" type="xs:string"/>
381
+ <xs:attribute name="timeout" type="xs:string"/>
382
+ <xs:attribute name="auto-read-files" type="xs:boolean"/>
383
+ <xs:attribute name="local-passive-mode" type="xs:boolean"/>
384
+ <xs:attribute name="polling-interval" type="xs:string"/>
385
+ <xs:attribute name="error-strategy">
386
+ <xs:simpleType>
387
+ <xs:restriction base="xs:string">
388
+ <xs:enumeration value="throwsException"/>
389
+ <xs:enumeration value="propagateError"/>
390
+ </xs:restriction>
391
+ </xs:simpleType>
392
+ </xs:attribute>
393
+ </xs:complexType>
394
+ </xs:element>
395
+ <xs:element name="server">
396
+ <xs:annotation>
397
+ <xs:documentation>Ftp server implementation accepts client connections and receives messages via Ftp transport protocol.</xs:documentation>
398
+ </xs:annotation>
399
+ <xs:complexType>
400
+ <xs:attribute name="name" type="xs:ID" use="required"/>
401
+ <xs:attribute name="server" type="xs:string"/>
402
+ <xs:attribute name="port" type="xs:string"/>
403
+ <xs:attribute name="auto-start" type="xs:boolean"/>
404
+ <xs:attribute name="auto-connect" type="xs:boolean"/>
405
+ <xs:attribute name="auto-login" type="xs:boolean"/>
406
+ <xs:attribute name="auto-handle-commands" type="xs:string" default="PORT,TYPE"/>
407
+ <xs:attribute name="timeout" type="xs:string"/>
408
+ <xs:attribute name="user-manager" type="xs:string"/>
409
+ <xs:attribute name="user-manager-properties" type="xs:string"/>
410
+ <xs:attribute name="endpoint-adapter" type="xs:string"/>
411
+ <xs:attribute name="debug-logging" type="xs:boolean"/>
412
+ </xs:complexType>
413
+ </xs:element>
414
+ </xs:choice>
415
+ </xs:complexType>
416
+
417
+ <xs:complexType name="ScpEndpoints">
418
+ <xs:choice>
419
+ <xs:element name="client">
420
+ <xs:annotation>
421
+ <xs:documentation>Sftp client component sends commands to server instance and receives reply messages.</xs:documentation>
422
+ </xs:annotation>
423
+ <xs:complexType>
424
+ <xs:attribute name="name" type="xs:ID" use="required"/>
425
+ <xs:attribute name="host" type="xs:string"/>
426
+ <xs:attribute name="port" type="xs:string"/>
427
+ <xs:attribute name="port-option" type="xs:string"/>
428
+ <xs:attribute name="username" type="xs:string"/>
429
+ <xs:attribute name="password" type="xs:string"/>
430
+ <xs:attribute name="private-key-path" type="xs:string">
431
+ <xs:annotation>
432
+ <xs:documentation>
433
+ Path to a private key, which can be either a plain file path or an class resource if prefixed with 'classpath:'
434
+ </xs:documentation>
435
+ </xs:annotation>
436
+ </xs:attribute>
437
+ <xs:attribute name="private-key-password" type="xs:string">
438
+ <xs:annotation>
439
+ <xs:documentation>
440
+ Optional password for the private key
441
+ </xs:documentation>
442
+ </xs:annotation>
443
+ </xs:attribute>
444
+ <xs:attribute name="message-correlator" type="xs:string"/>
445
+ <xs:attribute name="actor" type="xs:string"/>
446
+ <xs:attribute name="timeout" type="xs:string"/>
447
+ <xs:attribute name="polling-interval" type="xs:string"/>
448
+ <xs:attribute name="error-strategy">
449
+ <xs:simpleType>
450
+ <xs:restriction base="xs:string">
451
+ <xs:enumeration value="throwsException"/>
452
+ <xs:enumeration value="propagateError"/>
453
+ </xs:restriction>
454
+ </xs:simpleType>
455
+ </xs:attribute>
456
+ </xs:complexType>
457
+ </xs:element>
458
+ <xs:element name="server">
459
+ <xs:annotation>
460
+ <xs:documentation>SSH server component</xs:documentation>
461
+ </xs:annotation>
462
+ <xs:complexType>
463
+ <xs:attribute name="name" type="xs:ID" use="required"/>
464
+ <xs:attribute name="port" type="xs:string">
465
+ <xs:annotation>
466
+ <xs:documentation>
467
+ Port to listen to. Default is 22
468
+ </xs:documentation>
469
+ </xs:annotation>
470
+ </xs:attribute>
471
+ <xs:attribute name="auto-start" type="xs:boolean">
472
+ <xs:annotation>
473
+ <xs:documentation>
474
+ Whether to start this SSH server automatically. Default is true. If set to false,
475
+ a test action is responsible for starting/stopping the server
476
+ </xs:documentation>
477
+ </xs:annotation>
478
+ </xs:attribute>
479
+ <xs:attribute name="auto-connect" type="xs:boolean"/>
480
+ <xs:attribute name="auto-login" type="xs:boolean"/>
481
+ <xs:attribute name="host-key-path" type="xs:string">
482
+ <xs:annotation>
483
+ <xs:documentation>
484
+ Path to PEM encoded key pair (public and private key) which is used as host key.
485
+ By default, a standard, fixed keypair is used.
486
+ </xs:documentation>
487
+ </xs:annotation>
488
+ </xs:attribute>
489
+ <xs:attribute name="user-home-path" type="xs:string">
490
+ <xs:annotation>
491
+ <xs:documentation>
492
+ Path to user home directory. If not set ${user.dir}/target/{serverName}/home/{user} is used by default.
493
+ </xs:documentation>
494
+ </xs:annotation>
495
+ </xs:attribute>
496
+ <xs:attribute name="user" type="xs:string">
497
+ <xs:annotation>
498
+ <xs:documentation>
499
+ User which is allowed to connect.
500
+ </xs:documentation>
501
+ </xs:annotation>
502
+ </xs:attribute>
503
+ <xs:attribute name="password" type="xs:string">
504
+ <xs:annotation>
505
+ <xs:documentation>
506
+ Password for authenticating the user.
507
+ </xs:documentation>
508
+ </xs:annotation>
509
+ </xs:attribute>
510
+ <xs:attribute name="allowed-key-path" type="xs:string">
511
+ <xs:annotation>
512
+ <xs:documentation>
513
+ Path to a public key in PEM format. If prefixed with 'classpath:' it is read
514
+ as a resource.
515
+ </xs:documentation>
516
+ </xs:annotation>
517
+ </xs:attribute>
518
+ <xs:attribute name="endpoint-adapter" type="xs:string"/>
519
+ <xs:attribute name="interceptors" type="xs:string"/>
520
+ <xs:attribute name="debug-logging" type="xs:boolean"/>
521
+ </xs:complexType>
522
+ </xs:element>
523
+ </xs:choice>
524
+ </xs:complexType>
525
+
526
+ <xs:complexType name="SftpEndpoints">
527
+ <xs:choice>
528
+ <xs:element name="client">
529
+ <xs:annotation>
530
+ <xs:documentation>Sftp client component sends commands to server instance and receives reply messages.</xs:documentation>
531
+ </xs:annotation>
532
+ <xs:complexType>
533
+ <xs:attribute name="name" type="xs:ID" use="required"/>
534
+ <xs:attribute name="host" type="xs:string"/>
535
+ <xs:attribute name="port" type="xs:string"/>
536
+ <xs:attribute name="username" type="xs:string"/>
537
+ <xs:attribute name="password" type="xs:string"/>
538
+ <xs:attribute name="private-key-path" type="xs:string">
539
+ <xs:annotation>
540
+ <xs:documentation>
541
+ Path to a private key, which can be either a plain file path or an class resource if prefixed with 'classpath:'
542
+ </xs:documentation>
543
+ </xs:annotation>
544
+ </xs:attribute>
545
+ <xs:attribute name="private-key-password" type="xs:string">
546
+ <xs:annotation>
547
+ <xs:documentation>
548
+ Optional password for the private key
549
+ </xs:documentation>
550
+ </xs:annotation>
551
+ </xs:attribute>
552
+ <xs:attribute name="strict-host-checking" type="xs:boolean"/>
553
+ <xs:attribute name="known-hosts-path" type="xs:string">
554
+ <xs:annotation>
555
+ <xs:documentation>
556
+ Path to a known hosts file. If prefixed with 'classpath:' this file is looked up as a resource in the classpath.
557
+ </xs:documentation>
558
+ </xs:annotation>
559
+ </xs:attribute>
560
+ <xs:attribute name="preferred-authentications" type="xs:string">
561
+ <xs:annotation>
562
+ <xs:documentation>
563
+ Ordered list of preferred authentications. Client will try to authentication with these methods first.
564
+ </xs:documentation>
565
+ </xs:annotation>
566
+ </xs:attribute>
567
+ <xs:attribute name="session-configs" type="xs:string">
568
+ <xs:annotation>
569
+ <xs:documentation>
570
+ Reference to a map of session properties as key-value pairs. Applied on Jsch session on client.
571
+ </xs:documentation>
572
+ </xs:annotation>
573
+ </xs:attribute>
574
+ <xs:attribute name="message-correlator" type="xs:string"/>
575
+ <xs:attribute name="actor" type="xs:string"/>
576
+ <xs:attribute name="timeout" type="xs:string"/>
577
+ <xs:attribute name="auto-read-files" type="xs:boolean"/>
578
+ <xs:attribute name="local-passive-mode" type="xs:boolean"/>
579
+ <xs:attribute name="polling-interval" type="xs:string"/>
580
+ <xs:attribute name="error-strategy">
581
+ <xs:simpleType>
582
+ <xs:restriction base="xs:string">
583
+ <xs:enumeration value="throwsException"/>
584
+ <xs:enumeration value="propagateError"/>
585
+ </xs:restriction>
586
+ </xs:simpleType>
587
+ </xs:attribute>
588
+ </xs:complexType>
589
+ </xs:element>
590
+ <xs:element name="server">
591
+ <xs:annotation>
592
+ <xs:documentation>SSH server component</xs:documentation>
593
+ </xs:annotation>
594
+ <xs:complexType>
595
+ <xs:attribute name="name" type="xs:ID" use="required"/>
596
+ <xs:attribute name="port" type="xs:string">
597
+ <xs:annotation>
598
+ <xs:documentation>
599
+ Port to listen to. Default is 22
600
+ </xs:documentation>
601
+ </xs:annotation>
602
+ </xs:attribute>
603
+ <xs:attribute name="auto-start" type="xs:boolean">
604
+ <xs:annotation>
605
+ <xs:documentation>
606
+ Whether to start this SSH server automatically. Default is true. If set to false,
607
+ a test action is responsible for starting/stopping the server
608
+ </xs:documentation>
609
+ </xs:annotation>
610
+ </xs:attribute>
611
+ <xs:attribute name="auto-connect" type="xs:boolean"/>
612
+ <xs:attribute name="auto-login" type="xs:boolean"/>
613
+ <xs:attribute name="host-key-path" type="xs:string">
614
+ <xs:annotation>
615
+ <xs:documentation>
616
+ Path to PEM encoded key pair (public and private key) which is used as host key.
617
+ By default, a standard, fixed keypair is used.
618
+ </xs:documentation>
619
+ </xs:annotation>
620
+ </xs:attribute>
621
+ <xs:attribute name="user-home-path" type="xs:string">
622
+ <xs:annotation>
623
+ <xs:documentation>
624
+ Path to user home directory. If not set ${user.dir}/target/{serverName}/home/{user} is used by default.
625
+ </xs:documentation>
626
+ </xs:annotation>
627
+ </xs:attribute>
628
+ <xs:attribute name="user" type="xs:string">
629
+ <xs:annotation>
630
+ <xs:documentation>
631
+ User which is allowed to connect.
632
+ </xs:documentation>
633
+ </xs:annotation>
634
+ </xs:attribute>
635
+ <xs:attribute name="password" type="xs:string">
636
+ <xs:annotation>
637
+ <xs:documentation>
638
+ Password for authenticating the user.
639
+ </xs:documentation>
640
+ </xs:annotation>
641
+ </xs:attribute>
642
+ <xs:attribute name="allowed-key-path" type="xs:string">
643
+ <xs:annotation>
644
+ <xs:documentation>
645
+ Path to a public key in PEM format. If prefixed with 'classpath:' it is read
646
+ as a resource.
647
+ </xs:documentation>
648
+ </xs:annotation>
649
+ </xs:attribute>
650
+ <xs:attribute name="endpoint-adapter" type="xs:string"/>
651
+ <xs:attribute name="interceptors" type="xs:string"/>
652
+ <xs:attribute name="debug-logging" type="xs:boolean"/>
653
+ </xs:complexType>
654
+ </xs:element>
655
+ </xs:choice>
656
+ </xs:complexType>
657
+
658
+ <xs:complexType name="HttpEndpoints">
659
+ <xs:choice>
660
+ <xs:element name="client">
661
+ <xs:annotation>
662
+ <xs:documentation>Http client component sends messages to some Http server instance and receives synchronous response message.</xs:documentation>
663
+ </xs:annotation>
664
+ <xs:complexType>
665
+ <xs:attribute name="name" type="xs:ID" use="required"/>
666
+ <xs:attribute name="request-url" type="xs:string"/>
667
+ <xs:attribute name="request-method" type="xs:string"/>
668
+ <xs:attribute name="message-converter" type="xs:string"/>
669
+ <xs:attribute name="message-correlator" type="xs:string"/>
670
+ <xs:attribute name="endpoint-resolver" type="xs:string"/>
671
+ <xs:attribute name="request-factory" type="xs:string"/>
672
+ <xs:attribute name="rest-template" type="xs:string"/>
673
+ <xs:attribute name="charset" type="xs:string"/>
674
+ <xs:attribute name="content-type" type="xs:string"/>
675
+ <xs:attribute name="default-accept-header" type="xs:boolean"/>
676
+ <xs:attribute name="handle-cookies" type="xs:boolean"/>
677
+ <xs:attribute name="disable-redirect-handling" type="xs:boolean"/>
678
+ <xs:attribute name="interceptors" type="xs:string"/>
679
+ <xs:attribute name="binary-media-types" type="xs:string"/>
680
+ <xs:attribute name="error-handler" type="xs:string"/>
681
+ <xs:attribute name="error-handling-strategy">
682
+ <xs:simpleType>
683
+ <xs:restriction base="xs:string">
684
+ <xs:enumeration value="throwsException"/>
685
+ <xs:enumeration value="propagateError"/>
686
+ </xs:restriction>
687
+ </xs:simpleType>
688
+ </xs:attribute>
689
+ <xs:attribute name="actor" type="xs:string"/>
690
+ <xs:attribute name="timeout" type="xs:string"/>
691
+ <xs:attribute name="polling-interval" type="xs:string"/>
692
+ </xs:complexType>
693
+ </xs:element>
694
+ <xs:element name="server">
695
+ <xs:annotation>
696
+ <xs:documentation>Http server implementation accepts client connections and receives messages via Http transport protocol.</xs:documentation>
697
+ </xs:annotation>
698
+ <xs:complexType>
699
+ <xs:attribute name="name" type="xs:ID" use="required"/>
700
+ <xs:attribute name="port" type="xs:string"/>
701
+ <xs:attribute name="auto-start" type="xs:boolean"/>
702
+ <xs:attribute name="timeout" type="xs:string"/>
703
+ <xs:attribute name="context-config-location" type="xs:string"/>
704
+ <xs:attribute name="resource-base" type="xs:string"/>
705
+ <xs:attribute name="root-parent-context" type="xs:boolean"/>
706
+ <xs:attribute name="connector" type="xs:string"/>
707
+ <xs:attribute name="connectors" type="xs:string"/>
708
+ <xs:attribute name="filters" type="xs:string"/>
709
+ <xs:attribute name="filter-mappings" type="xs:string"/>
710
+ <xs:attribute name="binary-media-types" type="xs:string"/>
711
+ <xs:attribute name="servlet-name" type="xs:string"/>
712
+ <xs:attribute name="servlet-mapping-path" type="xs:string"/>
713
+ <xs:attribute name="context-path" type="xs:string"/>
714
+ <xs:attribute name="message-converter" type="xs:string"/>
715
+ <xs:attribute name="servlet-handler" type="xs:string"/>
716
+ <xs:attribute name="security-handler" type="xs:string"/>
717
+ <xs:attribute name="endpoint-adapter" type="xs:string"/>
718
+ <xs:attribute name="handle-header-attributes" type="xs:boolean"/>
719
+ <xs:attribute name="handle-cookies" type="xs:boolean"/>
720
+ <xs:attribute name="default-status-code" type="xs:string"/>
721
+ <xs:attribute name="response-cache-size" type="xs:integer"/>
722
+ <xs:attribute name="interceptors" type="xs:string"/>
723
+ <xs:attribute name="debug-logging" type="xs:boolean"/>
724
+ <xs:attribute name="actor" type="xs:string"/>
725
+ </xs:complexType>
726
+ </xs:element>
727
+ </xs:choice>
728
+ </xs:complexType>
729
+
730
+ <xs:complexType name="JmsEndpoints">
731
+ <xs:choice>
732
+ <xs:element name="asynchronous">
733
+ <xs:annotation>
734
+ <xs:documentation>JMS endpoint able to produce and consume messages on a JMS destination (queue or topic).</xs:documentation>
735
+ </xs:annotation>
736
+ <xs:complexType>
737
+ <xs:complexContent>
738
+ <xs:extension base="tns:JmsEndpointType">
739
+ <xs:attribute name="auto-start" type="xs:boolean"/>
740
+ <xs:attribute name="durable-subscription" type="xs:boolean"/>
741
+ <xs:attribute name="durable-subscriber-name" type="xs:string"/>
742
+ </xs:extension>
743
+ </xs:complexContent>
744
+ </xs:complexType>
745
+ </xs:element>
746
+ <xs:element name="synchronous">
747
+ <xs:annotation>
748
+ <xs:documentation>JMS synchronous endpoint able to produce and consume messages on a synchronous JMS
749
+ destination with reply message handling.</xs:documentation>
750
+ </xs:annotation>
751
+ <xs:complexType>
752
+ <xs:complexContent>
753
+ <xs:extension base="tns:JmsEndpointType">
754
+ <xs:attribute name="reply-destination" type="xs:string"/>
755
+ <xs:attribute name="reply-destination-name" type="xs:string"/>
756
+ <xs:attribute name="message-correlator" type="xs:string"/>
757
+ </xs:extension>
758
+ </xs:complexContent>
759
+ </xs:complexType>
760
+ </xs:element>
761
+ </xs:choice>
762
+ </xs:complexType>
763
+
764
+ <xs:complexType name="JmsEndpointType">
765
+ <xs:annotation>
766
+ <xs:documentation>Basic JMS endpoint properties.</xs:documentation>
767
+ </xs:annotation>
768
+ <xs:attribute name="name" type="xs:ID"/>
769
+ <xs:attribute name="destination" type="xs:string"/>
770
+ <xs:attribute name="destination-name" type="xs:string"/>
771
+ <xs:attribute name="connection-factory" type="xs:string"/>
772
+ <xs:attribute name="jms-template" type="xs:string"/>
773
+ <xs:attribute name="message-converter" type="xs:string"/>
774
+ <xs:attribute name="destination-resolver" type="xs:string"/>
775
+ <xs:attribute name="destination-name-resolver" type="xs:string"/>
776
+ <xs:attribute name="pub-sub-domain" type="xs:boolean"/>
777
+ <xs:attribute name="filter-internal-headers" type="xs:boolean" default="true"/>
778
+ <xs:attribute name="use-object-messages" type="xs:boolean"/>
779
+ <xs:attribute name="actor" type="xs:string"/>
780
+ <xs:attribute name="timeout" type="xs:string"/>
781
+ <xs:attribute name="polling-interval" type="xs:string"/>
782
+ </xs:complexType>
783
+
784
+ <xs:complexType name="JmxEndpoints">
785
+ <xs:choice>
786
+ <xs:element name="client">
787
+ <xs:annotation>
788
+ <xs:documentation>Jmx Http client component able to execute jmx commands such as exec.</xs:documentation>
789
+ </xs:annotation>
790
+ <xs:complexType>
791
+ <xs:attribute name="name" type="xs:ID" use="required"/>
792
+ <xs:attribute name="server-url" type="xs:string" default="platform"/>
793
+ <xs:attribute name="username" type="xs:string"/>
794
+ <xs:attribute name="password" type="xs:string"/>
795
+ <xs:attribute name="auto-reconnect" type="xs:string"/>
796
+ <xs:attribute name="delay-on-reconnect" type="xs:string"/>
797
+ <xs:attribute name="notification-filter" type="xs:string"/>
798
+ <xs:attribute name="message-converter" type="xs:string"/>
799
+ <xs:attribute name="message-correlator" type="xs:string"/>
800
+ <xs:attribute name="timeout" type="xs:string"/>
801
+ <xs:attribute name="polling-interval" type="xs:string"/>
802
+ <xs:attribute name="actor" type="xs:string"/>
803
+ </xs:complexType>
804
+ </xs:element>
805
+ <xs:element name="server">
806
+ <xs:annotation>
807
+ <xs:documentation>RMI server implementation registers one service in RMI registry and receives messages via RMI invocation.</xs:documentation>
808
+ </xs:annotation>
809
+ <xs:complexType>
810
+ <xs:sequence>
811
+ <xs:element name="mbeans">
812
+ <xs:complexType>
813
+ <xs:sequence>
814
+ <xs:element name="mbean" minOccurs="1" maxOccurs="unbounded">
815
+ <xs:complexType>
816
+ <xs:sequence>
817
+ <xs:element name="operations" minOccurs="0">
818
+ <xs:complexType>
819
+ <xs:sequence>
820
+ <xs:element name="operation" minOccurs="1" maxOccurs="unbounded">
821
+ <xs:complexType>
822
+ <xs:sequence>
823
+ <xs:element name="parameter" minOccurs="0">
824
+ <xs:complexType>
825
+ <xs:sequence>
826
+ <xs:element name ="param" minOccurs="1" maxOccurs="unbounded">
827
+ <xs:complexType>
828
+ <xs:attribute name="type" type="xs:string"/>
829
+ </xs:complexType>
830
+ </xs:element>
831
+ </xs:sequence>
832
+ </xs:complexType>
833
+ </xs:element>
834
+ </xs:sequence>
835
+ <xs:attribute name="name" type="xs:string" use="required"/>
836
+ <xs:attribute name="return-type" type="xs:string"/>
837
+ </xs:complexType>
838
+ </xs:element>
839
+ </xs:sequence>
840
+ </xs:complexType>
841
+ </xs:element>
842
+ <xs:element name="attributes" minOccurs="0">
843
+ <xs:complexType>
844
+ <xs:sequence>
845
+ <xs:element name="attribute" minOccurs="1" maxOccurs="unbounded">
846
+ <xs:complexType>
847
+ <xs:attribute name="name" type="xs:string" use="required"/>
848
+ <xs:attribute name="type" type="xs:string" use="required"/>
849
+ </xs:complexType>
850
+ </xs:element>
851
+ </xs:sequence>
852
+ </xs:complexType>
853
+ </xs:element>
854
+ </xs:sequence>
855
+ <xs:attribute name="type" type="xs:string"/>
856
+ <xs:attribute name="name" type="xs:string"/>
857
+ <xs:attribute name="objectDomain" type="xs:string"/>
858
+ <xs:attribute name="objectName" type="xs:string"/>
859
+ </xs:complexType>
860
+ </xs:element>
861
+ </xs:sequence>
862
+ </xs:complexType>
863
+ </xs:element>
864
+ </xs:sequence>
865
+ <xs:attribute name="name" type="xs:ID" use="required"/>
866
+ <xs:attribute name="server-url" type="xs:string"/>
867
+ <xs:attribute name="host" type="xs:string" default="localhost"/>
868
+ <xs:attribute name="port" type="xs:string"/>
869
+ <xs:attribute name="protocol" type="xs:string" default="rmi"/>
870
+ <xs:attribute name="mbeans" type="xs:string"/>
871
+ <xs:attribute name="binding" type="xs:string"/>
872
+ <xs:attribute name="create-registry" type="xs:boolean"/>
873
+ <xs:attribute name="auto-start" type="xs:boolean"/>
874
+ <xs:attribute name="timeout" type="xs:string"/>
875
+ <xs:attribute name="message-converter" type="xs:string"/>
876
+ <xs:attribute name="environment-properties" type="xs:string"/>
877
+ <xs:attribute name="debug-logging" type="xs:boolean"/>
878
+ <xs:attribute name="actor" type="xs:string"/>
879
+ </xs:complexType>
880
+ </xs:element>
881
+ </xs:choice>
882
+ </xs:complexType>
883
+
884
+ <xs:complexType name="KafkaEndpoints">
885
+ <xs:choice>
886
+ <xs:element name="asynchronous">
887
+ <xs:annotation>
888
+ <xs:documentation>Kafka endpoint able to produce and consume messages to and from topics on a Kafka message broker.</xs:documentation>
889
+ </xs:annotation>
890
+ <xs:complexType>
891
+ <xs:attribute name="name" type="xs:ID"/>
892
+ <xs:attribute name="client-id" type="xs:string"/>
893
+ <xs:attribute name="consumer-group" type="xs:string"/>
894
+ <xs:attribute name="random-consumer-group" type="xs:boolean" default="false"/>
895
+ <xs:attribute name="auto-commit" type="xs:string"/>
896
+ <xs:attribute name="auto-commit-interval" type="xs:int"/>
897
+ <xs:attribute name="server" type="xs:string"/>
898
+ <xs:attribute name="offset-reset" type="xs:string"/>
899
+ <xs:attribute name="topic" type="xs:string"/>
900
+ <xs:attribute name="partition" type="xs:int"/>
901
+ <xs:attribute name="message-converter" type="xs:string"/>
902
+ <xs:attribute name="header-mapper" type="xs:string"/>
903
+ <xs:attribute name="actor" type="xs:string"/>
904
+ <xs:attribute name="timeout" type="xs:string"/>
905
+ <xs:attribute name="key-serializer" type="xs:string"/>
906
+ <xs:attribute name="key-deserializer" type="xs:string"/>
907
+ <xs:attribute name="value-serializer" type="xs:string"/>
908
+ <xs:attribute name="value-deserializer" type="xs:string"/>
909
+ <xs:attribute name="producer-properties" type="xs:string"/>
910
+ <xs:attribute name="consumer-properties" type="xs:string"/>
911
+ <xs:attribute name="use-thread-safe-consumer" type="xs:boolean" default="false"/>
912
+ </xs:complexType>
913
+ </xs:element>
914
+ <xs:element name="synchronous">
915
+ <xs:annotation>
916
+ <xs:documentation>Kafka endpoint able to produce and consume messages to and from topics on a Kafka message broker.</xs:documentation>
917
+ </xs:annotation>
918
+ <xs:complexType>
919
+ <xs:attribute name="name" type="xs:ID"/>
920
+ <xs:attribute name="client-id" type="xs:string"/>
921
+ <xs:attribute name="consumer-group" type="xs:string"/>
922
+ <xs:attribute name="random-consumer-group" type="xs:boolean" default="false"/>
923
+ <xs:attribute name="auto-commit" type="xs:string"/>
924
+ <xs:attribute name="auto-commit-interval" type="xs:int"/>
925
+ <xs:attribute name="server" type="xs:string"/>
926
+ <xs:attribute name="offset-reset" type="xs:string"/>
927
+ <xs:attribute name="topic" type="xs:string"/>
928
+ <xs:attribute name="partition" type="xs:int"/>
929
+ <xs:attribute name="message-converter" type="xs:string"/>
930
+ <xs:attribute name="header-mapper" type="xs:string"/>
931
+ <xs:attribute name="actor" type="xs:string"/>
932
+ <xs:attribute name="timeout" type="xs:string"/>
933
+ <xs:attribute name="key-serializer" type="xs:string"/>
934
+ <xs:attribute name="key-deserializer" type="xs:string"/>
935
+ <xs:attribute name="value-serializer" type="xs:string"/>
936
+ <xs:attribute name="value-deserializer" type="xs:string"/>
937
+ <xs:attribute name="producer-properties" type="xs:string"/>
938
+ <xs:attribute name="consumer-properties" type="xs:string"/>
939
+ <xs:attribute name="thread-safe-consumer" type="xs:boolean" default="false"/>
940
+ </xs:complexType>
941
+ </xs:element>
942
+ </xs:choice>
943
+ </xs:complexType>
944
+
945
+ <xs:complexType name="KubernetesEndpoints">
946
+ <xs:sequence>
947
+ <xs:element name="client">
948
+ <xs:annotation>
949
+ <xs:documentation>Kubernetes Http client component able to execute kubernetes commands such as inspect, start, stop.</xs:documentation>
950
+ </xs:annotation>
951
+ <xs:complexType>
952
+ <xs:attribute name="name" type="xs:ID" use="required"/>
953
+ <xs:attribute name="url" type="xs:string"/>
954
+ <xs:attribute name="version" type="xs:string"/>
955
+ <xs:attribute name="username" type="xs:string"/>
956
+ <xs:attribute name="password" type="xs:string"/>
957
+ <xs:attribute name="oauth-token" type="xs:string"/>
958
+ <xs:attribute name="namespace" type="xs:string"/>
959
+ <xs:attribute name="message-converter" type="xs:string"/>
960
+ <xs:attribute name="json-mapper" type="xs:string"/>
961
+ <xs:attribute name="cert-file" type="xs:string"/>
962
+ </xs:complexType>
963
+ </xs:element>
964
+ </xs:sequence>
965
+ </xs:complexType>
966
+
967
+ <xs:complexType name="MailEndpoints">
968
+ <xs:choice>
969
+ <xs:element name="client">
970
+ <xs:annotation>
971
+ <xs:documentation>Mail client connects to SMTP server for publishing mail messages to recipients.</xs:documentation>
972
+ </xs:annotation>
973
+ <xs:complexType>
974
+ <xs:attribute name="name" type="xs:ID" use="required"/>
975
+ <xs:attribute name="host" type="xs:string" use="required"/>
976
+ <xs:attribute name="port" type="xs:string" use="required"/>
977
+ <xs:attribute name="protocol" type="xs:string"/>
978
+ <xs:attribute name="username" type="xs:string"/>
979
+ <xs:attribute name="password" type="xs:string"/>
980
+ <xs:attribute name="mail-properties" type="xs:string"/>
981
+ <xs:attribute name="actor" type="xs:string"/>
982
+ <xs:attribute name="message-converter" type="xs:string"/>
983
+ <xs:attribute name="marshaller" type="xs:string"/>
984
+ </xs:complexType>
985
+ </xs:element>
986
+ <xs:element name="server">
987
+ <xs:annotation>
988
+ <xs:documentation>Mail SMTP server component - accepts mail requests and validates mail content</xs:documentation>
989
+ </xs:annotation>
990
+ <xs:complexType>
991
+ <xs:attribute name="name" type="xs:ID" use="required"/>
992
+ <xs:attribute name="port" type="xs:string"/>
993
+ <xs:attribute name="timeout" type="xs:string"/>
994
+ <xs:attribute name="endpoint-adapter" type="xs:string"/>
995
+ <xs:attribute name="auth-required" type="xs:boolean"/>
996
+ <xs:attribute name="auto-start" type="xs:boolean"/>
997
+ <xs:attribute name="auto-accept" type="xs:boolean"/>
998
+ <xs:attribute name="split-multipart" type="xs:boolean"/>
999
+ <xs:attribute name="mail-properties" type="xs:string"/>
1000
+ <xs:attribute name="message-converter" type="xs:string"/>
1001
+ <xs:attribute name="known-users" type="xs:string"/>
1002
+ <xs:attribute name="marshaller" type="xs:string"/>
1003
+ <xs:attribute name="debug-logging" type="xs:boolean"/>
1004
+ </xs:complexType>
1005
+ </xs:element>
1006
+ </xs:choice>
1007
+ </xs:complexType>
1008
+
1009
+ <xs:complexType name="SshEndpoints">
1010
+ <xs:choice>
1011
+ <xs:element name="client">
1012
+ <xs:annotation>
1013
+ <xs:documentation>Executes an SSH client request to a given server</xs:documentation>
1014
+ </xs:annotation>
1015
+ <xs:complexType>
1016
+ <xs:attribute name="name" type="xs:ID" use="required"/>
1017
+ <xs:attribute name="host" type="xs:string">
1018
+ <xs:annotation>
1019
+ <xs:documentation>
1020
+ Host to connect to for sending an SSH Exec request. Default is 'localhost'
1021
+ </xs:documentation>
1022
+ </xs:annotation>
1023
+ </xs:attribute>
1024
+ <xs:attribute name="port" type="xs:string">
1025
+ <xs:annotation>
1026
+ <xs:documentation>
1027
+ Port to use. Default is 2222
1028
+ </xs:documentation>
1029
+ </xs:annotation>
1030
+ </xs:attribute>
1031
+ <xs:attribute name="private-key-path" type="xs:string">
1032
+ <xs:annotation>
1033
+ <xs:documentation>
1034
+ Path to a private key, which can be either a plain file path or an class resource
1035
+ if prefixed with 'classpath:'
1036
+ </xs:documentation>
1037
+ </xs:annotation>
1038
+ </xs:attribute>
1039
+ <xs:attribute name="private-key-password" type="xs:string">
1040
+ <xs:annotation>
1041
+ <xs:documentation>
1042
+ Optional password for the private key
1043
+ </xs:documentation>
1044
+ </xs:annotation>
1045
+ </xs:attribute>
1046
+ <xs:attribute name="user" type="xs:string" use="required">
1047
+ <xs:annotation>
1048
+ <xs:documentation>
1049
+ User used for connecting to the SSH server.
1050
+ </xs:documentation>
1051
+ </xs:annotation>
1052
+ </xs:attribute>
1053
+ <xs:attribute name="password" type="xs:string">
1054
+ <xs:annotation>
1055
+ <xs:documentation>
1056
+ Password used for password based authentication. Might be combined
1057
+ with "private-key-path" in which case both authentication mechanism are tried.
1058
+ </xs:documentation>
1059
+ </xs:annotation>
1060
+ </xs:attribute>
1061
+ <xs:attribute name="strict-host-checking" type="xs:boolean">
1062
+ <xs:annotation>
1063
+ <xs:documentation>
1064
+ Whether the host key should be verified by looking it up in a 'known_hosts' file.
1065
+ Default is false.
1066
+ </xs:documentation>
1067
+ </xs:annotation>
1068
+ </xs:attribute>
1069
+ <xs:attribute name="known-hosts-path" type="xs:string">
1070
+ <xs:annotation>
1071
+ <xs:documentation>
1072
+ Path to a known hosts file. If prefixed with 'classpath:' this file is looked up as
1073
+ a resource in the classpath.
1074
+ </xs:documentation>
1075
+ </xs:annotation>
1076
+ </xs:attribute>
1077
+ <xs:attribute name="command-timeout" type="xs:int">
1078
+ <xs:annotation>
1079
+ <xs:documentation>
1080
+ Timeout in milliseconds for how long to wait for the SSH command to complete.
1081
+ Default is 5 minutes.
1082
+ </xs:documentation>
1083
+ </xs:annotation>
1084
+ </xs:attribute>
1085
+ <xs:attribute name="connection-timeout" type="xs:int">
1086
+ <xs:annotation>
1087
+ <xs:documentation>
1088
+ Timeout in milliseconds for how long to for a connectiuon to connect.
1089
+ Default is 1 minute.
1090
+ </xs:documentation>
1091
+ </xs:annotation>
1092
+ </xs:attribute>
1093
+ <xs:attribute name="actor" type="xs:string">
1094
+ <xs:annotation>
1095
+ <xs:documentation>
1096
+ Actor used for switching groups of actions. See the reference documentation
1097
+ for details.
1098
+ </xs:documentation>
1099
+ </xs:annotation>
1100
+ </xs:attribute>
1101
+ <xs:attribute name="message-correlator" type="xs:string"/>
1102
+ <xs:attribute name="message-converter" type="xs:string"/>
1103
+ <xs:attribute name="timeout" type="xs:string"/>
1104
+ <xs:attribute name="polling-interval" type="xs:string"/>
1105
+ </xs:complexType>
1106
+ </xs:element>
1107
+ <xs:element name="server">
1108
+ <xs:annotation>
1109
+ <xs:documentation>SSH server component</xs:documentation>
1110
+ </xs:annotation>
1111
+ <xs:complexType>
1112
+ <xs:attribute name="name" type="xs:ID" use="required"/>
1113
+ <xs:attribute name="port" type="xs:string">
1114
+ <xs:annotation>
1115
+ <xs:documentation>
1116
+ Port to listen to. Default is 22
1117
+ </xs:documentation>
1118
+ </xs:annotation>
1119
+ </xs:attribute>
1120
+ <xs:attribute name="auto-start" type="xs:boolean">
1121
+ <xs:annotation>
1122
+ <xs:documentation>
1123
+ Whether to start this SSH server automatically. Default is true. If set to false,
1124
+ a test action is responsible for starting/stopping the server
1125
+ </xs:documentation>
1126
+ </xs:annotation>
1127
+ </xs:attribute>
1128
+ <xs:attribute name="host-key-path" type="xs:string">
1129
+ <xs:annotation>
1130
+ <xs:documentation>
1131
+ Path to PEM encoded key pair (public and private key) which is used as host key.
1132
+ By default, a standard, fixed keypair is used.
1133
+ </xs:documentation>
1134
+ </xs:annotation>
1135
+ </xs:attribute>
1136
+ <xs:attribute name="user-home-path" type="xs:string">
1137
+ <xs:annotation>
1138
+ <xs:documentation>
1139
+ Path to user home directory. If not set ${user.dir}/target/{serverName}/home/{user} is used by default.
1140
+ </xs:documentation>
1141
+ </xs:annotation>
1142
+ </xs:attribute>
1143
+ <xs:attribute name="user" type="xs:string">
1144
+ <xs:annotation>
1145
+ <xs:documentation>
1146
+ User which is allowed to connect.
1147
+ </xs:documentation>
1148
+ </xs:annotation>
1149
+ </xs:attribute>
1150
+ <xs:attribute name="password" type="xs:string">
1151
+ <xs:annotation>
1152
+ <xs:documentation>
1153
+ Password for authenticating the user.
1154
+ </xs:documentation>
1155
+ </xs:annotation>
1156
+ </xs:attribute>
1157
+ <xs:attribute name="allowed-key-path" type="xs:string">
1158
+ <xs:annotation>
1159
+ <xs:documentation>
1160
+ Path to a public key in PEM format. If prefixed with 'classpath:' it is read
1161
+ as a resource.
1162
+ </xs:documentation>
1163
+ </xs:annotation>
1164
+ </xs:attribute>
1165
+ <xs:attribute name="endpoint-adapter" type="xs:string"/>
1166
+ <xs:attribute name="interceptors" type="xs:string"/>
1167
+ <xs:attribute name="message-converter" type="xs:string"/>
1168
+ <xs:attribute name="debug-logging" type="xs:boolean"/>
1169
+ </xs:complexType>
1170
+ </xs:element>
1171
+ </xs:choice>
1172
+ </xs:complexType>
1173
+
1174
+ <xs:complexType name="RmiEndpoints">
1175
+ <xs:choice>
1176
+ <xs:element name="client">
1177
+ <xs:annotation>
1178
+ <xs:documentation>RMI client component sends messages to some RMI server instance and receives synchronous response message.</xs:documentation>
1179
+ </xs:annotation>
1180
+ <xs:complexType>
1181
+ <xs:attribute name="name" type="xs:ID" use="required"/>
1182
+ <xs:attribute name="server-url" type="xs:string"/>
1183
+ <xs:attribute name="host" type="xs:string"/>
1184
+ <xs:attribute name="port" type="xs:string"/>
1185
+ <xs:attribute name="binding" type="xs:string"/>
1186
+ <xs:attribute name="method" type="xs:string"/>
1187
+ <xs:attribute name="message-converter" type="xs:string"/>
1188
+ <xs:attribute name="message-correlator" type="xs:string"/>
1189
+ <xs:attribute name="actor" type="xs:string"/>
1190
+ <xs:attribute name="timeout" type="xs:string"/>
1191
+ <xs:attribute name="polling-interval" type="xs:string"/>
1192
+ </xs:complexType>
1193
+ </xs:element>
1194
+ <xs:element name="server">
1195
+ <xs:annotation>
1196
+ <xs:documentation>RMI server implementation registers one service in RMI registry and receives messages via RMI invocation.</xs:documentation>
1197
+ </xs:annotation>
1198
+ <xs:complexType>
1199
+ <xs:attribute name="name" type="xs:ID" use="required"/>
1200
+ <xs:attribute name="host" type="xs:string"/>
1201
+ <xs:attribute name="port" type="xs:string"/>
1202
+ <xs:attribute name="binding" type="xs:string" use="required"/>
1203
+ <xs:attribute name="interface" type="xs:string" use="required"/>
1204
+ <xs:attribute name="create-registry" type="xs:boolean"/>
1205
+ <xs:attribute name="auto-start" type="xs:boolean"/>
1206
+ <xs:attribute name="timeout" type="xs:string"/>
1207
+ <xs:attribute name="message-converter" type="xs:string"/>
1208
+ <xs:attribute name="debug-logging" type="xs:boolean"/>
1209
+ <xs:attribute name="actor" type="xs:string"/>
1210
+ </xs:complexType>
1211
+ </xs:element>
1212
+ </xs:choice>
1213
+ </xs:complexType>
1214
+
1215
+ <xs:complexType name="SeleniumEndpoints">
1216
+ <xs:sequence>
1217
+ <xs:element name="browser">
1218
+ <xs:annotation>
1219
+ <xs:documentation>Selenium browser configuration.</xs:documentation>
1220
+ </xs:annotation>
1221
+ <xs:complexType>
1222
+ <xs:attribute name="name" type="xs:ID" use="required"/>
1223
+ <xs:attribute name="type">
1224
+ <xs:simpleType>
1225
+ <xs:restriction base="xs:string">
1226
+ <xs:enumeration value="custom"/>
1227
+ <xs:enumeration value="htmlunit"/>
1228
+ <xs:enumeration value="firefox"/>
1229
+ <xs:enumeration value="safari"/>
1230
+ <xs:enumeration value="chrome"/>
1231
+ <xs:enumeration value="googlechrome"/>
1232
+ <xs:enumeration value="internet explorer"/>
1233
+ <xs:enumeration value="edge"/>
1234
+ </xs:restriction>
1235
+ </xs:simpleType>
1236
+ </xs:attribute>
1237
+ <xs:attribute name="start-page" type="xs:string"/>
1238
+ <xs:attribute name="event-listeners" type="xs:string"/>
1239
+ <xs:attribute name="remote-server" type="xs:string"/>
1240
+ <xs:attribute name="javascript" type="xs:boolean"/>
1241
+ <xs:attribute name="version" type="xs:string"/>
1242
+ <xs:attribute name="web-driver" type="xs:string"/>
1243
+ <xs:attribute name="firefox-profile" type="xs:string"/>
1244
+ <xs:attribute name="timeout" type="xs:string"/>
1245
+ </xs:complexType>
1246
+ </xs:element>
1247
+ </xs:sequence>
1248
+ </xs:complexType>
1249
+
1250
+ <xs:complexType name="SoapWebServiceEndpoints">
1251
+ <xs:choice>
1252
+ <xs:element name="client">
1253
+ <xs:annotation>
1254
+ <xs:documentation>SOAP client component sends SOAP messages to some Http web server instance and receives synchronous SOAP response message.</xs:documentation>
1255
+ </xs:annotation>
1256
+ <xs:complexType>
1257
+ <xs:attribute name="name" type="xs:ID" use="required"/>
1258
+ <xs:attribute name="request-url" type="xs:string" use="required"/>
1259
+ <xs:attribute name="web-service-template" type="xs:string"/>
1260
+ <xs:attribute name="message-factory" type="xs:string"/>
1261
+ <xs:attribute name="message-converter" type="xs:string"/>
1262
+ <xs:attribute name="message-sender" type="xs:string"/>
1263
+ <xs:attribute name="message-correlator" type="xs:string"/>
1264
+ <xs:attribute name="interceptor" type="xs:string"/>
1265
+ <xs:attribute name="interceptors" type="xs:string"/>
1266
+ <xs:attribute name="endpoint-resolver" type="xs:string"/>
1267
+ <xs:attribute name="fault-strategy">
1268
+ <xs:simpleType>
1269
+ <xs:restriction base="xs:string">
1270
+ <xs:enumeration value="throwsException"/>
1271
+ <xs:enumeration value="propagateError"/>
1272
+ </xs:restriction>
1273
+ </xs:simpleType>
1274
+ </xs:attribute>
1275
+ <xs:attribute name="actor" type="xs:string"/>
1276
+ <xs:attribute name="timeout" type="xs:string"/>
1277
+ <xs:attribute name="polling-interval" type="xs:string"/>
1278
+ </xs:complexType>
1279
+ </xs:element>
1280
+ <xs:element name="server">
1281
+ <xs:annotation>
1282
+ <xs:documentation>Http web server implementation accepts client connections and receives WebService messages via SOAP message protocol.</xs:documentation>
1283
+ </xs:annotation>
1284
+ <xs:complexType>
1285
+ <xs:attribute name="name" type="xs:ID" use="required"/>
1286
+ <xs:attribute name="port" type="xs:string"/>
1287
+ <xs:attribute name="auto-start" type="xs:boolean"/>
1288
+ <xs:attribute name="timeout" type="xs:string"/>
1289
+ <xs:attribute name="context-config-location" type="xs:string"/>
1290
+ <xs:attribute name="resource-base" type="xs:string"/>
1291
+ <xs:attribute name="root-parent-context" type="xs:boolean"/>
1292
+ <xs:attribute name="connector" type="xs:string"/>
1293
+ <xs:attribute name="connectors" type="xs:string"/>
1294
+ <xs:attribute name="servlet-name" type="xs:string"/>
1295
+ <xs:attribute name="servlet-mapping-path" type="xs:string"/>
1296
+ <xs:attribute name="context-path" type="xs:string"/>
1297
+ <xs:attribute name="servlet-handler" type="xs:string"/>
1298
+ <xs:attribute name="security-handler" type="xs:string"/>
1299
+ <xs:attribute name="endpoint-adapter" type="xs:string"/>
1300
+ <xs:attribute name="interceptors" type="xs:string"/>
1301
+ <xs:attribute name="message-converter" type="xs:string"/>
1302
+ <xs:attribute name="message-factory" type="xs:string"/>
1303
+ <xs:attribute name="handle-mime-headers" type="xs:boolean"/>
1304
+ <xs:attribute name="handle-header-attributes" type="xs:boolean"/>
1305
+ <xs:attribute name="keep-soap-envelope" type="xs:boolean"/>
1306
+ <xs:attribute name="soap-header-namespace" type="xs:string"/>
1307
+ <xs:attribute name="soap-header-prefix" type="xs:string"/>
1308
+ <xs:attribute name="debug-logging" type="xs:boolean"/>
1309
+ </xs:complexType>
1310
+ </xs:element>
1311
+ </xs:choice>
1312
+ </xs:complexType>
1313
+
1314
+ <xs:complexType name="WebsocketEndpoints">
1315
+ <xs:choice>
1316
+ <xs:element name="client">
1317
+ <xs:annotation>
1318
+ <xs:documentation>WebSocket client component for sending and receiving asynchronous requests to and from WebSocket server</xs:documentation>
1319
+ </xs:annotation>
1320
+ <xs:complexType>
1321
+ <xs:attribute name="name" type="xs:ID" use="required"/>
1322
+ <xs:attribute name="url" type="xs:string"/>
1323
+ <xs:attribute name="http-headers" type="xs:string"/>
1324
+ <xs:attribute name="message-converter" type="xs:string"/>
1325
+ <xs:attribute name="endpoint-resolver" type="xs:string"/>
1326
+ <xs:attribute name="actor" type="xs:string"/>
1327
+ <xs:attribute name="timeout" type="xs:string"/>
1328
+ <xs:attribute name="polling-interval" type="xs:string"/>
1329
+ </xs:complexType>
1330
+ </xs:element>
1331
+ <xs:element name="server">
1332
+ <xs:annotation>
1333
+ <xs:documentation>Http websocket server implementation accepts client connections and receives messages via Http WebSocket transport protocol.</xs:documentation>
1334
+ </xs:annotation>
1335
+ <xs:complexType>
1336
+ <xs:sequence>
1337
+ <xs:element name="endpoints" minOccurs="0">
1338
+ <xs:complexType>
1339
+ <xs:sequence>
1340
+ <xs:element name="endpoint" maxOccurs="unbounded">
1341
+ <xs:complexType>
1342
+ <xs:attribute name="ref" type="xs:string" use="required" />
1343
+ </xs:complexType>
1344
+ </xs:element>
1345
+ </xs:sequence>
1346
+ </xs:complexType>
1347
+ </xs:element>
1348
+ </xs:sequence>
1349
+ <xs:attribute name="name" type="xs:ID" use="required"/>
1350
+ <xs:attribute name="port" type="xs:string"/>
1351
+ <xs:attribute name="auto-start" type="xs:boolean"/>
1352
+ <xs:attribute name="timeout" type="xs:string"/>
1353
+ <xs:attribute name="context-config-location" type="xs:string"/>
1354
+ <xs:attribute name="resource-base" type="xs:string"/>
1355
+ <xs:attribute name="root-parent-context" type="xs:boolean"/>
1356
+ <xs:attribute name="connector" type="xs:string"/>
1357
+ <xs:attribute name="connectors" type="xs:string"/>
1358
+ <xs:attribute name="servlet-name" type="xs:string"/>
1359
+ <xs:attribute name="servlet-mapping-path" type="xs:string"/>
1360
+ <xs:attribute name="context-path" type="xs:string"/>
1361
+ <xs:attribute name="message-converter" type="xs:string"/>
1362
+ <xs:attribute name="servlet-handler" type="xs:string"/>
1363
+ <xs:attribute name="security-handler" type="xs:string"/>
1364
+ <xs:attribute name="endpoints" type="xs:string"/>
1365
+ <xs:attribute name="endpoint-adapter" type="xs:string"/>
1366
+ <xs:attribute name="interceptors" type="xs:string"/>
1367
+ <xs:attribute name="debug-logging" type="xs:boolean"/>
1368
+ <xs:attribute name="actor" type="xs:string"/>
1369
+ </xs:complexType>
1370
+ </xs:element>
1371
+ </xs:choice>
1372
+ </xs:complexType>
1373
+
1374
+ <xs:complexType name="VertxEndpoints">
1375
+ <xs:choice>
1376
+ <xs:element name="asynchronous">
1377
+ <xs:annotation>
1378
+ <xs:documentation>Vert.x endpoint for asynchronous communication</xs:documentation>
1379
+ </xs:annotation>
1380
+ <xs:complexType>
1381
+ <xs:attribute name="name" type="xs:ID" use="required"/>
1382
+ <xs:attribute name="host" type="xs:string"/>
1383
+ <xs:attribute name="port" type="xs:string"/>
1384
+ <xs:attribute name="address" type="xs:string" use="required"/>
1385
+ <xs:attribute name="vertx-factory" type="xs:string"/>
1386
+ <xs:attribute name="pub-sub-domain" type="xs:boolean"/>
1387
+ <xs:attribute name="message-converter" type="xs:string"/>
1388
+ <xs:attribute name="polling-interval" type="xs:string"/>
1389
+ <xs:attribute name="actor" type="xs:string"/>
1390
+ <xs:attribute name="timeout" type="xs:string"/>
1391
+ </xs:complexType>
1392
+ </xs:element>
1393
+ <xs:element name="synchronous">
1394
+ <xs:annotation>
1395
+ <xs:documentation>Vert.x endpoint for synchronous communication</xs:documentation>
1396
+ </xs:annotation>
1397
+ <xs:complexType>
1398
+ <xs:attribute name="name" type="xs:ID" use="required"/>
1399
+ <xs:attribute name="host" type="xs:string"/>
1400
+ <xs:attribute name="port" type="xs:string"/>
1401
+ <xs:attribute name="address" type="xs:string" use="required"/>
1402
+ <xs:attribute name="message-correlator" type="xs:string"/>
1403
+ <xs:attribute name="vertx-factory" type="xs:string"/>
1404
+ <xs:attribute name="pub-sub-domain" type="xs:boolean"/>
1405
+ <xs:attribute name="message-converter" type="xs:string"/>
1406
+ <xs:attribute name="polling-interval" type="xs:string"/>
1407
+ <xs:attribute name="actor" type="xs:string"/>
1408
+ <xs:attribute name="timeout" type="xs:string"/>
1409
+ </xs:complexType>
1410
+ </xs:element>
1411
+ </xs:choice>
1412
+ </xs:complexType>
1413
+
1414
+ <xs:complexType name="TestEndpoint">
1415
+ <xs:sequence>
1416
+ <xs:element name="description" type="xs:string" minOccurs="0"/>
1417
+ <xs:element name="properties" minOccurs="0">
1418
+ <xs:complexType>
1419
+ <xs:sequence>
1420
+ <xs:element name="property" type="tns:PropertyType" maxOccurs="unbounded"/>
1421
+ </xs:sequence>
1422
+ </xs:complexType>
1423
+ </xs:element>
1424
+ </xs:sequence>
1425
+ <xs:attribute name="name" type="xs:string"/>
1426
+ <xs:attribute name="uri" type="xs:string"/>
1427
+ <xs:attribute name="type" type="xs:string"/>
1428
+ <xs:attribute name="auto-close" type="xs:boolean"/>
1429
+ <xs:attribute name="auto-remove" type="xs:boolean"/>
1430
+ </xs:complexType>
1431
+
164
1432
  <xs:complexType name="TestActions">
165
1433
  <xs:sequence>
166
1434
  <xs:choice minOccurs="0" maxOccurs="unbounded">
@@ -379,20 +1647,37 @@
379
1647
  </xs:sequence>
380
1648
  </xs:complexType>
381
1649
 
382
- <xs:complexType name="CreateEndpoint">
383
- <xs:sequence>
384
- <xs:element name="description" type="xs:string" minOccurs="0"/>
385
- <xs:element name="properties" minOccurs="0">
386
- <xs:complexType>
387
- <xs:sequence>
388
- <xs:element name="property" type="tns:PropertyType" maxOccurs="unbounded"/>
389
- </xs:sequence>
390
- </xs:complexType>
391
- </xs:element>
392
- </xs:sequence>
393
- <xs:attribute name="name" type="xs:string"/>
394
- <xs:attribute name="uri" type="xs:string"/>
395
- <xs:attribute name="type" type="xs:string"/>
1650
+ <xs:complexType name="CreateEndpoint">
1651
+ <xs:complexContent>
1652
+ <xs:extension base="tns:TestEndpoint">
1653
+ <xs:sequence>
1654
+ <xs:element name="description" type="xs:string" minOccurs="0"/>
1655
+ <xs:choice minOccurs="0">
1656
+ <xs:element name="camel" type="tns:CamelEndpoints"/>
1657
+ <xs:element name="channel" type="tns:SpringMessageChannelEndpoints"/>
1658
+ <xs:element name="context" type="tns:ContextEndpoints"/>
1659
+ <xs:element name="direct" type="tns:DirectEndpoints"/>
1660
+ <xs:element name="docker" type="tns:DockerEndpoints"/>
1661
+ <xs:element name="ftp" type="tns:FtpEndpoints"/>
1662
+ <xs:element name="scp" type="tns:ScpEndpoints"/>
1663
+ <xs:element name="sftp" type="tns:SftpEndpoints"/>
1664
+ <xs:element name="http" type="tns:HttpEndpoints"/>
1665
+ <xs:element name="jms" type="tns:JmsEndpoints"/>
1666
+ <xs:element name="jmx" type="tns:JmxEndpoints"/>
1667
+ <xs:element name="kafka" type="tns:KafkaEndpoints"/>
1668
+ <xs:element name="kubernetes" type="tns:KubernetesEndpoints"/>
1669
+ <xs:element name="mail" type="tns:MailEndpoints"/>
1670
+ <xs:element name="rmi" type="tns:RmiEndpoints"/>
1671
+ <xs:element name="selenium" type="tns:SeleniumEndpoints"/>
1672
+ <xs:element name="ssh" type="tns:SshEndpoints"/>
1673
+ <xs:element name="soap" type="tns:SoapWebServiceEndpoints"/>
1674
+ <xs:element name="websocket" type="tns:WebsocketEndpoints"/>
1675
+ <xs:element name="vertx" type="tns:VertxEndpoints"/>
1676
+ </xs:choice>
1677
+ <xs:any processContents="lax" minOccurs="0"/>
1678
+ </xs:sequence>
1679
+ </xs:extension>
1680
+ </xs:complexContent>
396
1681
  </xs:complexType>
397
1682
 
398
1683
  <xs:complexType name="StopTimer">
@@ -933,6 +2218,81 @@
933
2218
  <xs:attribute name="actor" type="xs:string"/>
934
2219
  </xs:complexType>
935
2220
 
2221
+ <xs:simpleType name="CamelInfraServiceType">
2222
+ <xs:restriction base="xs:string">
2223
+ <xs:enumeration value="arangodb"/>
2224
+ <xs:enumeration value="artemis"/>
2225
+ <xs:enumeration value="artemis.amqp"/>
2226
+ <xs:enumeration value="aws.cloud-watch"/>
2227
+ <xs:enumeration value="aws.config"/>
2228
+ <xs:enumeration value="aws.dynamo-db"/>
2229
+ <xs:enumeration value="aws.dynamodb"/>
2230
+ <xs:enumeration value="aws.ec2"/>
2231
+ <xs:enumeration value="aws.event-bridge"/>
2232
+ <xs:enumeration value="aws.iam"/>
2233
+ <xs:enumeration value="aws.kinesis"/>
2234
+ <xs:enumeration value="aws.kms"/>
2235
+ <xs:enumeration value="aws.lambda"/>
2236
+ <xs:enumeration value="aws.s3"/>
2237
+ <xs:enumeration value="aws.secrets-manager"/>
2238
+ <xs:enumeration value="aws.sns"/>
2239
+ <xs:enumeration value="aws.sqs"/>
2240
+ <xs:enumeration value="aws.ssm"/>
2241
+ <xs:enumeration value="aws.sts"/>
2242
+ <xs:enumeration value="aws.transcribe"/>
2243
+ <xs:enumeration value="azure.storage-blob"/>
2244
+ <xs:enumeration value="azure.storage-queue"/>
2245
+ <xs:enumeration value="cassandra"/>
2246
+ <xs:enumeration value="chat-script"/>
2247
+ <xs:enumeration value="consul"/>
2248
+ <xs:enumeration value="couchbase"/>
2249
+ <xs:enumeration value="couchdb"/>
2250
+ <xs:enumeration value="docling"/>
2251
+ <xs:enumeration value="elasticsearch"/>
2252
+ <xs:enumeration value="fhir"/>
2253
+ <xs:enumeration value="ftp"/>
2254
+ <xs:enumeration value="ftps"/>
2255
+ <xs:enumeration value="google.pub-sub"/>
2256
+ <xs:enumeration value="hashicorp.vault"/>
2257
+ <xs:enumeration value="hazelcast"/>
2258
+ <xs:enumeration value="hive-mq"/>
2259
+ <xs:enumeration value="hive-mq.sparkplug"/>
2260
+ <xs:enumeration value="ibmmq"/>
2261
+ <xs:enumeration value="iggy"/>
2262
+ <xs:enumeration value="ignite"/>
2263
+ <xs:enumeration value="infinispan"/>
2264
+ <xs:enumeration value="kafka"/>
2265
+ <xs:enumeration value="kafka.confluent"/>
2266
+ <xs:enumeration value="kafka.redpanda"/>
2267
+ <xs:enumeration value="kafka.strimzi"/>
2268
+ <xs:enumeration value="keycloak"/>
2269
+ <xs:enumeration value="microprofile.lra"/>
2270
+ <xs:enumeration value="milvus"/>
2271
+ <xs:enumeration value="minio"/>
2272
+ <xs:enumeration value="mongodb"/>
2273
+ <xs:enumeration value="mosquitto"/>
2274
+ <xs:enumeration value="nats"/>
2275
+ <xs:enumeration value="neo4j"/>
2276
+ <xs:enumeration value="ollama"/>
2277
+ <xs:enumeration value="openldap"/>
2278
+ <xs:enumeration value="pgvector"/>
2279
+ <xs:enumeration value="pinecone"/>
2280
+ <xs:enumeration value="postgres"/>
2281
+ <xs:enumeration value="postgres-vector"/>
2282
+ <xs:enumeration value="pulsar"/>
2283
+ <xs:enumeration value="qdrant"/>
2284
+ <xs:enumeration value="rabbitmq"/>
2285
+ <xs:enumeration value="redis"/>
2286
+ <xs:enumeration value="rocketmq"/>
2287
+ <xs:enumeration value="sftp"/>
2288
+ <xs:enumeration value="smb"/>
2289
+ <xs:enumeration value="solr"/>
2290
+ <xs:enumeration value="weaviate"/>
2291
+ <xs:enumeration value="xmpp"/>
2292
+ <xs:enumeration value="zookeeper"/>
2293
+ </xs:restriction>
2294
+ </xs:simpleType>
2295
+
936
2296
  <xs:complexType name="Camel">
937
2297
  <xs:sequence>
938
2298
  <xs:element name="description" type="xs:string" minOccurs="0"/>
@@ -994,49 +2354,424 @@
994
2354
  </xs:complexContent>
995
2355
  </xs:complexType>
996
2356
  </xs:element>
997
- </xs:choice>
998
- </xs:complexType>
999
- </xs:element>
1000
- <xs:element name="start-routes">
1001
- <xs:annotation>
1002
- <xs:documentation>Start Camel routes on context</xs:documentation>
1003
- </xs:annotation>
1004
- <xs:complexType>
1005
- <xs:sequence>
1006
- <xs:element name="route" minOccurs="1" maxOccurs="unbounded">
2357
+ </xs:choice>
2358
+ </xs:complexType>
2359
+ </xs:element>
2360
+ <xs:element name="start-routes">
2361
+ <xs:annotation>
2362
+ <xs:documentation>Start Camel routes on context</xs:documentation>
2363
+ </xs:annotation>
2364
+ <xs:complexType>
2365
+ <xs:sequence>
2366
+ <xs:element name="route" minOccurs="1" maxOccurs="unbounded">
2367
+ <xs:complexType>
2368
+ <xs:attribute name="id" use="required"/>
2369
+ </xs:complexType>
2370
+ </xs:element>
2371
+ </xs:sequence>
2372
+ </xs:complexType>
2373
+ </xs:element>
2374
+ <xs:element name="stop-routes">
2375
+ <xs:annotation>
2376
+ <xs:documentation>Start Camel routes on context</xs:documentation>
2377
+ </xs:annotation>
2378
+ <xs:complexType>
2379
+ <xs:sequence>
2380
+ <xs:element name="route" minOccurs="1" maxOccurs="unbounded">
2381
+ <xs:complexType>
2382
+ <xs:attribute name="id" use="required"/>
2383
+ </xs:complexType>
2384
+ </xs:element>
2385
+ </xs:sequence>
2386
+ </xs:complexType>
2387
+ </xs:element>
2388
+ <xs:element name="remove-routes">
2389
+ <xs:annotation>
2390
+ <xs:documentation>Start Camel routes on context</xs:documentation>
2391
+ </xs:annotation>
2392
+ <xs:complexType>
2393
+ <xs:sequence>
2394
+ <xs:element name="route" minOccurs="1" maxOccurs="unbounded">
2395
+ <xs:complexType>
2396
+ <xs:attribute name="id" use="required"/>
2397
+ </xs:complexType>
2398
+ </xs:element>
2399
+ </xs:sequence>
2400
+ </xs:complexType>
2401
+ </xs:element>
2402
+ <xs:element name="cli">
2403
+ <xs:annotation>
2404
+ <xs:documentation>Creates new Camel CLI action</xs:documentation>
2405
+ </xs:annotation>
2406
+ <xs:complexType>
2407
+ <xs:choice>
2408
+ <xs:element name="cmd">
2409
+ <xs:complexType>
2410
+ <xs:choice>
2411
+ <xs:element name="send">
2412
+ <xs:complexType>
2413
+ <xs:annotation>
2414
+ <xs:documentation>Sends a message via Camel CLI.</xs:documentation>
2415
+ </xs:annotation>
2416
+ <xs:sequence>
2417
+ <xs:element name="headers" minOccurs="0">
2418
+ <xs:complexType>
2419
+ <xs:sequence>
2420
+ <xs:element name="header" maxOccurs="unbounded">
2421
+ <xs:complexType>
2422
+ <xs:attribute name="name" type="xs:string" use="required"/>
2423
+ <xs:attribute name="value" type="xs:string" use="required"/>
2424
+ </xs:complexType>
2425
+ </xs:element>
2426
+ </xs:sequence>
2427
+ </xs:complexType>
2428
+ </xs:element>
2429
+ <xs:element name="body">
2430
+ <xs:complexType>
2431
+ <xs:sequence>
2432
+ <xs:element name="data" type="xs:string" minOccurs="0"/>
2433
+ </xs:sequence>
2434
+ <xs:attribute name="file" type="xs:string"/>
2435
+ </xs:complexType>
2436
+ </xs:element>
2437
+ </xs:sequence>
2438
+ <xs:attribute name="integration" type="xs:string"/>
2439
+ <xs:attribute name="endpoint" type="xs:string"/>
2440
+ <xs:attribute name="timeout" type="xs:string" default="20000"/>
2441
+ <xs:attribute name="uri" type="xs:string"/>
2442
+ <xs:attribute name="reply" type="xs:boolean"/>
2443
+ <xs:attribute name="args" type="xs:string"/>
2444
+ </xs:complexType>
2445
+ </xs:element>
2446
+ <xs:element name="receive">
2447
+ <xs:complexType>
2448
+ <xs:annotation>
2449
+ <xs:documentation>Receive a message via Camel CLI.</xs:documentation>
2450
+ </xs:annotation>
2451
+ <xs:attribute name="integration" type="xs:string"/>
2452
+ <xs:attribute name="endpoint" type="xs:string"/>
2453
+ <xs:attribute name="uri" type="xs:string"/>
2454
+ <xs:attribute name="logging-color" type="xs:boolean"/>
2455
+ <xs:attribute name="args" type="xs:string"/>
2456
+ <xs:attribute name="grep" type="xs:string"/>
2457
+ <xs:attribute name="since" type="xs:string"/>
2458
+ <xs:attribute name="tail" type="xs:int"/>
2459
+ <xs:attribute name="max-attempts" type="xs:int"/>
2460
+ <xs:attribute name="delay-between-attempts" type="xs:int"/>
2461
+ <xs:attribute name="print-logs" type="xs:boolean"/>
2462
+ <xs:attribute name="stop-on-error-status" type="xs:boolean"/>
2463
+ </xs:complexType>
2464
+ </xs:element>
2465
+ </xs:choice>
2466
+ </xs:complexType>
2467
+ </xs:element>
2468
+ <xs:element name="plugin">
2469
+ <xs:complexType>
2470
+ <xs:choice>
2471
+ <xs:element name="add">
2472
+ <xs:complexType>
2473
+ <xs:annotation>
2474
+ <xs:documentation>Add a Camel CLI plugin.</xs:documentation>
2475
+ </xs:annotation>
2476
+ <xs:attribute name="name" type="xs:string" use="required"/>
2477
+ <xs:attribute name="auto-remove" type="xs:boolean"/>
2478
+ <xs:attribute name="args" type="xs:string"/>
2479
+ </xs:complexType>
2480
+ </xs:element>
2481
+ <xs:element name="delete">
2482
+ <xs:complexType>
2483
+ <xs:annotation>
2484
+ <xs:documentation>Delete a Camel CLI plugin.</xs:documentation>
2485
+ </xs:annotation>
2486
+ <xs:attribute name="name" type="xs:string" use="required"/>
2487
+ </xs:complexType>
2488
+ </xs:element>
2489
+ </xs:choice>
2490
+ </xs:complexType>
2491
+ </xs:element>
2492
+ <xs:element name="kubernetes">
2493
+ <xs:complexType>
2494
+ <xs:choice>
2495
+ <xs:element name="run">
2496
+ <xs:complexType>
2497
+ <xs:annotation>
2498
+ <xs:documentation>Run a Camel integration in Kubernetes.</xs:documentation>
2499
+ </xs:annotation>
2500
+ <xs:sequence>
2501
+ <xs:element name="integration">
2502
+ <xs:complexType>
2503
+ <xs:sequence>
2504
+ <xs:element name="source" type="xs:string" minOccurs="0"/>
2505
+ </xs:sequence>
2506
+ <xs:attribute name="file" type="xs:string"/>
2507
+ </xs:complexType>
2508
+ </xs:element>
2509
+ <xs:element name="args" minOccurs="0">
2510
+ <xs:complexType>
2511
+ <xs:sequence>
2512
+ <xs:element name="argument" type="xs:string" maxOccurs="unbounded"/>
2513
+ </xs:sequence>
2514
+ </xs:complexType>
2515
+ </xs:element>
2516
+ <xs:element name="build-properties" minOccurs="0">
2517
+ <xs:complexType>
2518
+ <xs:sequence>
2519
+ <xs:element name="property" maxOccurs="unbounded">
2520
+ <xs:complexType>
2521
+ <xs:attribute name="name" use="required" type="xs:string"/>
2522
+ <xs:attribute name="value" use="required" type="xs:string"/>
2523
+ </xs:complexType>
2524
+ </xs:element>
2525
+ </xs:sequence>
2526
+ </xs:complexType>
2527
+ </xs:element>
2528
+ <xs:element name="properties" minOccurs="0">
2529
+ <xs:complexType>
2530
+ <xs:sequence>
2531
+ <xs:element name="property" maxOccurs="unbounded">
2532
+ <xs:complexType>
2533
+ <xs:attribute name="name" use="required" type="xs:string"/>
2534
+ <xs:attribute name="value" use="required" type="xs:string"/>
2535
+ </xs:complexType>
2536
+ </xs:element>
2537
+ </xs:sequence>
2538
+ </xs:complexType>
2539
+ </xs:element>
2540
+ <xs:element name="traits" minOccurs="0">
2541
+ <xs:complexType>
2542
+ <xs:sequence>
2543
+ <xs:element name="trait" maxOccurs="unbounded">
2544
+ <xs:complexType>
2545
+ <xs:attribute name="name" use="required" type="xs:string"/>
2546
+ <xs:attribute name="value" use="required" type="xs:string"/>
2547
+ </xs:complexType>
2548
+ </xs:element>
2549
+ </xs:sequence>
2550
+ </xs:complexType>
2551
+ </xs:element>
2552
+ </xs:sequence>
2553
+ <xs:attribute name="args" type="xs:string"/>
2554
+ <xs:attribute name="verbose" type="xs:boolean"/>
2555
+ <xs:attribute name="auto-remove" type="xs:boolean"/>
2556
+ <xs:attribute name="wait-for-running-state" type="xs:boolean"/>
2557
+ <xs:attribute name="runtime" type="xs:string"/>
2558
+ <xs:attribute name="image-registry" type="xs:string"/>
2559
+ <xs:attribute name="image-builder" type="xs:string"/>
2560
+ <xs:attribute name="cluster-type" type="xs:string"/>
2561
+ </xs:complexType>
2562
+ </xs:element>
2563
+ <xs:element name="verify">
2564
+ <xs:annotation>
2565
+ <xs:documentation>Verifies a Camel integration in kubernetes, for instance its status or the presence of a log message</xs:documentation>
2566
+ </xs:annotation>
2567
+ <xs:complexType>
2568
+ <xs:sequence>
2569
+ <xs:element name="args" minOccurs="0">
2570
+ <xs:complexType>
2571
+ <xs:sequence>
2572
+ <xs:element name="argument" type="xs:string" maxOccurs="unbounded"/>
2573
+ </xs:sequence>
2574
+ </xs:complexType>
2575
+ </xs:element>
2576
+ </xs:sequence>
2577
+ <xs:attribute name="integration" type="xs:string"/>
2578
+ <xs:attribute name="label" type="xs:string"/>
2579
+ <xs:attribute name="namespace" type="xs:string"/>
2580
+ <xs:attribute name="log-message" type="xs:string"/>
2581
+ <xs:attribute name="max-attempts" type="xs:int"/>
2582
+ <xs:attribute name="delay-between-attempts" type="xs:int"/>
2583
+ <xs:attribute name="print-logs" type="xs:boolean"/>
2584
+ </xs:complexType>
2585
+ </xs:element>
2586
+ <xs:element name="delete">
2587
+ <xs:complexType>
2588
+ <xs:annotation>
2589
+ <xs:documentation>Delete kubernetes resources deployed from a Camel project or Camel integration.</xs:documentation>
2590
+ </xs:annotation>
2591
+ <xs:sequence>
2592
+ <xs:element name="integration">
2593
+ <xs:complexType>
2594
+ <xs:attribute type="xs:string" name="file"/>
2595
+ <xs:attribute type="xs:string" name="name"/>
2596
+ </xs:complexType>
2597
+ </xs:element>
2598
+ </xs:sequence>
2599
+ <xs:attribute name="cluster-type" type="xs:string"/>
2600
+ <xs:attribute name="namespace" type="xs:string"/>
2601
+ <xs:attribute name="working-dir" type="xs:string"/>
2602
+ </xs:complexType>
2603
+ </xs:element>
2604
+ </xs:choice>
2605
+ </xs:complexType>
2606
+ </xs:element>
2607
+ <xs:element name="run">
2608
+ <xs:annotation>
2609
+ <xs:documentation>Runs a Camel integration via CLI</xs:documentation>
2610
+ </xs:annotation>
2611
+ <xs:complexType>
2612
+ <xs:sequence>
2613
+ <xs:element name="args" minOccurs="0">
2614
+ <xs:complexType>
2615
+ <xs:sequence>
2616
+ <xs:element name="argument" type="xs:string" maxOccurs="unbounded"/>
2617
+ </xs:sequence>
2618
+ </xs:complexType>
2619
+ </xs:element>
2620
+ <xs:element name="integration">
2621
+ <xs:complexType>
2622
+ <xs:sequence>
2623
+ <xs:element name="environment" minOccurs="0">
2624
+ <xs:complexType>
2625
+ <xs:sequence>
2626
+ <xs:element name="variable" maxOccurs="unbounded">
2627
+ <xs:complexType>
2628
+ <xs:attribute name="name" use="required" type="xs:string"/>
2629
+ <xs:attribute name="value" use="required" type="xs:string"/>
2630
+ </xs:complexType>
2631
+ </xs:element>
2632
+ </xs:sequence>
2633
+ <xs:attribute name="file" type="xs:string"/>
2634
+ </xs:complexType>
2635
+ </xs:element>
2636
+ <xs:element name="system-properties" minOccurs="0">
2637
+ <xs:complexType>
2638
+ <xs:sequence>
2639
+ <xs:element name="property" maxOccurs="unbounded">
2640
+ <xs:complexType>
2641
+ <xs:attribute name="name" use="required" type="xs:string"/>
2642
+ <xs:attribute name="value" use="required" type="xs:string"/>
2643
+ </xs:complexType>
2644
+ </xs:element>
2645
+ </xs:sequence>
2646
+ <xs:attribute name="file" type="xs:string"/>
2647
+ </xs:complexType>
2648
+ </xs:element>
2649
+ <xs:element name="source" type="xs:string" minOccurs="0"/>
2650
+ </xs:sequence>
2651
+ <xs:attribute name="name" type="xs:string"/>
2652
+ <xs:attribute name="file" type="xs:string"/>
2653
+ </xs:complexType>
2654
+ </xs:element>
2655
+ <xs:element name="resources" minOccurs="0">
2656
+ <xs:complexType>
2657
+ <xs:sequence>
2658
+ <xs:element name="resource" type="xs:string" maxOccurs="unbounded"/>
2659
+ </xs:sequence>
2660
+ </xs:complexType>
2661
+ </xs:element>
2662
+ <xs:element name="stubs" minOccurs="0">
2663
+ <xs:complexType>
2664
+ <xs:sequence>
2665
+ <xs:element name="stub" type="xs:string" maxOccurs="unbounded"/>
2666
+ </xs:sequence>
2667
+ </xs:complexType>
2668
+ </xs:element>
2669
+ </xs:sequence>
2670
+ <xs:attribute name="stub" type="xs:string"/>
2671
+ <xs:attribute name="args" type="xs:string"/>
2672
+ <xs:attribute name="auto-remove" type="xs:boolean"/>
2673
+ <xs:attribute name="wait-for-running-state" type="xs:boolean"/>
2674
+ <xs:attribute name="dump-integration-output" type="xs:boolean"/>
2675
+ </xs:complexType>
2676
+ </xs:element>
2677
+ <xs:element name="stop">
2678
+ <xs:annotation>
2679
+ <xs:documentation>Stops a Camel integration identified by its name</xs:documentation>
2680
+ </xs:annotation>
1007
2681
  <xs:complexType>
1008
- <xs:attribute name="id" use="required"/>
2682
+ <xs:sequence/>
2683
+ <xs:attribute name="integration" type="xs:string"/>
1009
2684
  </xs:complexType>
1010
2685
  </xs:element>
1011
- </xs:sequence>
1012
- </xs:complexType>
1013
- </xs:element>
1014
- <xs:element name="stop-routes">
1015
- <xs:annotation>
1016
- <xs:documentation>Start Camel routes on context</xs:documentation>
1017
- </xs:annotation>
1018
- <xs:complexType>
1019
- <xs:sequence>
1020
- <xs:element name="route" minOccurs="1" maxOccurs="unbounded">
2686
+ <xs:element name="custom">
2687
+ <xs:annotation>
2688
+ <xs:documentation>Runs a Camel (custom parameterized) integration via CLI</xs:documentation>
2689
+ </xs:annotation>
1021
2690
  <xs:complexType>
1022
- <xs:attribute name="id" use="required"/>
2691
+ <xs:sequence>
2692
+ <xs:element name="commands" minOccurs="0">
2693
+ <xs:complexType>
2694
+ <xs:sequence>
2695
+ <xs:element name="command" type="xs:string" maxOccurs="unbounded"/>
2696
+ </xs:sequence>
2697
+ </xs:complexType>
2698
+ </xs:element>
2699
+ <xs:element name="args" minOccurs="0">
2700
+ <xs:complexType>
2701
+ <xs:sequence>
2702
+ <xs:element name="argument" type="xs:string" maxOccurs="unbounded"/>
2703
+ </xs:sequence>
2704
+ </xs:complexType>
2705
+ </xs:element>
2706
+ <xs:element name="integration">
2707
+ <xs:complexType>
2708
+ <xs:sequence>
2709
+ <xs:element name="environment" minOccurs="0">
2710
+ <xs:complexType>
2711
+ <xs:sequence>
2712
+ <xs:element name="variable" maxOccurs="unbounded">
2713
+ <xs:complexType>
2714
+ <xs:attribute name="name" use="required" type="xs:string"/>
2715
+ <xs:attribute name="value" use="required" type="xs:string"/>
2716
+ </xs:complexType>
2717
+ </xs:element>
2718
+ </xs:sequence>
2719
+ <xs:attribute name="file" type="xs:string"/>
2720
+ </xs:complexType>
2721
+ </xs:element>
2722
+ <xs:element name="system-properties" minOccurs="0">
2723
+ <xs:complexType>
2724
+ <xs:sequence>
2725
+ <xs:element name="property" maxOccurs="unbounded">
2726
+ <xs:complexType>
2727
+ <xs:attribute name="name" use="required" type="xs:string"/>
2728
+ <xs:attribute name="value" use="required" type="xs:string"/>
2729
+ </xs:complexType>
2730
+ </xs:element>
2731
+ </xs:sequence>
2732
+ <xs:attribute name="file" type="xs:string"/>
2733
+ </xs:complexType>
2734
+ </xs:element>
2735
+ </xs:sequence>
2736
+ <xs:attribute name="name" type="xs:string"/>
2737
+ <xs:attribute name="file" type="xs:string"/>
2738
+ </xs:complexType>
2739
+ </xs:element>
2740
+ <xs:element name="resources" minOccurs="0">
2741
+ <xs:complexType>
2742
+ <xs:sequence>
2743
+ <xs:element name="resource" type="xs:string" maxOccurs="unbounded"/>
2744
+ </xs:sequence>
2745
+ </xs:complexType>
2746
+ </xs:element>
2747
+ </xs:sequence>
2748
+ <xs:attribute name="commands" type="xs:string"/>
2749
+ <xs:attribute name="workDir" type="xs:string"/>
2750
+ <xs:attribute name="processName" type="xs:string"/>
2751
+ <xs:attribute name="args" type="xs:string"/>
2752
+ <xs:attribute name="auto-remove" type="xs:boolean"/>
2753
+ <xs:attribute name="wait-for-running-state" type="xs:boolean"/>
2754
+ <xs:attribute name="dump-integration-output" type="xs:boolean"/>
1023
2755
  </xs:complexType>
1024
2756
  </xs:element>
1025
- </xs:sequence>
1026
- </xs:complexType>
1027
- </xs:element>
1028
- <xs:element name="remove-routes">
1029
- <xs:annotation>
1030
- <xs:documentation>Start Camel routes on context</xs:documentation>
1031
- </xs:annotation>
1032
- <xs:complexType>
1033
- <xs:sequence>
1034
- <xs:element name="route" minOccurs="1" maxOccurs="unbounded">
2757
+ <xs:element name="verify">
2758
+ <xs:annotation>
2759
+ <xs:documentation>Verifies a Camel integration, for instance its status or the presence of a log message</xs:documentation>
2760
+ </xs:annotation>
1035
2761
  <xs:complexType>
1036
- <xs:attribute name="id" use="required"/>
2762
+ <xs:sequence/>
2763
+ <xs:attribute name="integration" type="xs:string"/>
2764
+ <xs:attribute name="log-message" type="xs:string"/>
2765
+ <xs:attribute name="phase" type="xs:string"/>
2766
+ <xs:attribute name="max-attempts" type="xs:int"/>
2767
+ <xs:attribute name="delay-between-attempts" type="xs:int"/>
2768
+ <xs:attribute name="print-logs" type="xs:boolean"/>
2769
+ <xs:attribute name="stop-on-error-status" type="xs:boolean"/>
1037
2770
  </xs:complexType>
1038
2771
  </xs:element>
1039
- </xs:sequence>
2772
+ </xs:choice>
2773
+ <xs:attribute name="camel-version" type="xs:string"/>
2774
+ <xs:attribute name="kamelets-version" type="xs:string"/>
1040
2775
  </xs:complexType>
1041
2776
  </xs:element>
1042
2777
  <xs:element name="control-bus">
@@ -1085,15 +2820,25 @@
1085
2820
  <xs:choice>
1086
2821
  <xs:element name="run">
1087
2822
  <xs:complexType>
1088
- <xs:attribute name="service" use="required" type="xs:string"/>
2823
+ <xs:attribute name="service" use="required">
2824
+ <xs:simpleType>
2825
+ <xs:union memberTypes="xs:string tns:CamelInfraServiceType"/>
2826
+ </xs:simpleType>
2827
+ </xs:attribute>
1089
2828
  <xs:attribute name="implementation" type="xs:string"/>
1090
2829
  <xs:attribute name="catalog" type="xs:string"/>
2830
+ <xs:attribute name="port" type="xs:int"/>
2831
+ <xs:attribute name="fixed-port" type="xs:boolean"/>
1091
2832
  <xs:attribute name="auto-remove" type="xs:boolean"/>
1092
2833
  </xs:complexType>
1093
2834
  </xs:element>
1094
2835
  <xs:element name="stop">
1095
2836
  <xs:complexType>
1096
- <xs:attribute name="service" use="required" type="xs:string"/>
2837
+ <xs:attribute name="service" use="required">
2838
+ <xs:simpleType>
2839
+ <xs:union memberTypes="xs:string tns:CamelInfraServiceType"/>
2840
+ </xs:simpleType>
2841
+ </xs:attribute>
1097
2842
  <xs:attribute name="implementation" type="xs:string"/>
1098
2843
  </xs:complexType>
1099
2844
  </xs:element>
@@ -1102,7 +2847,7 @@
1102
2847
  </xs:element>
1103
2848
  <xs:element name="jbang">
1104
2849
  <xs:annotation>
1105
- <xs:documentation>Creates new Camel JBang action</xs:documentation>
2850
+ <xs:documentation>Creates new Camel JBang action. Deprecated, please use Camel CLI instead.</xs:documentation>
1106
2851
  </xs:annotation>
1107
2852
  <xs:complexType>
1108
2853
  <xs:choice>
@@ -1156,7 +2901,7 @@
1156
2901
  <xs:attribute name="args" type="xs:string"/>
1157
2902
  <xs:attribute name="grep" type="xs:string"/>
1158
2903
  <xs:attribute name="since" type="xs:string"/>
1159
- <xs:attribute name="tail" type="xs:string"/>
2904
+ <xs:attribute name="tail" type="xs:int"/>
1160
2905
  <xs:attribute name="max-attempts" type="xs:int"/>
1161
2906
  <xs:attribute name="delay-between-attempts" type="xs:int"/>
1162
2907
  <xs:attribute name="print-logs" type="xs:boolean"/>
@@ -1175,9 +2920,18 @@
1175
2920
  <xs:documentation>Add a Camel JBang plugin.</xs:documentation>
1176
2921
  </xs:annotation>
1177
2922
  <xs:attribute name="name" type="xs:string" use="required"/>
2923
+ <xs:attribute name="auto-remove" type="xs:boolean"/>
1178
2924
  <xs:attribute name="args" type="xs:string"/>
1179
2925
  </xs:complexType>
1180
2926
  </xs:element>
2927
+ <xs:element name="delete">
2928
+ <xs:complexType>
2929
+ <xs:annotation>
2930
+ <xs:documentation>Delete a Camel JBang plugin.</xs:documentation>
2931
+ </xs:annotation>
2932
+ <xs:attribute name="name" type="xs:string" use="required"/>
2933
+ </xs:complexType>
2934
+ </xs:element>
1181
2935
  </xs:choice>
1182
2936
  </xs:complexType>
1183
2937
  </xs:element>
@@ -2236,6 +3990,8 @@
2236
3990
  <xs:element name="verify-broker">
2237
3991
  <xs:complexType>
2238
3992
  <xs:attribute name="name" use="required" type="xs:string"/>
3993
+ <xs:attribute name="condition" type="xs:string"/>
3994
+ <xs:attribute name="status" type="xs:string"/>
2239
3995
  </xs:complexType>
2240
3996
  </xs:element>
2241
3997
  <xs:element name="create-trigger">
@@ -2525,6 +4281,71 @@
2525
4281
  <xs:attribute name="name" type="xs:string"/>
2526
4282
  <xs:attribute name="service-name" type="xs:string"/>
2527
4283
  <xs:attribute name="version" type="xs:string"/>
4284
+ <xs:attribute name="auth-token" type="xs:string"/>
4285
+ <xs:attribute name="secret-key" type="xs:string"/>
4286
+ <xs:attribute name="access-key" type="xs:string"/>
4287
+ <xs:attribute name="region" type="xs:string"/>
4288
+ <xs:attribute name="auto-remove" type="xs:boolean"/>
4289
+ <xs:attribute name="auto-create-clients" type="xs:boolean"/>
4290
+ <xs:attribute name="services" type="xs:string"/>
4291
+ <xs:attribute name="image" type="xs:string"/>
4292
+ <xs:attribute name="command" type="xs:string"/>
4293
+ <xs:attribute name="startup-timeout" type="xs:int"/>
4294
+ </xs:complexType>
4295
+ </xs:element>
4296
+ <xs:element name="floci">
4297
+ <xs:complexType>
4298
+ <xs:sequence>
4299
+ <xs:element name="labels" minOccurs="0">
4300
+ <xs:complexType>
4301
+ <xs:sequence>
4302
+ <xs:element name="label" maxOccurs="unbounded">
4303
+ <xs:complexType>
4304
+ <xs:attribute name="name" use="required" type="xs:string"/>
4305
+ <xs:attribute name="value" use="required" type="xs:string"/>
4306
+ </xs:complexType>
4307
+ </xs:element>
4308
+ </xs:sequence>
4309
+ </xs:complexType>
4310
+ </xs:element>
4311
+ <xs:element name="env" minOccurs="0">
4312
+ <xs:complexType>
4313
+ <xs:sequence>
4314
+ <xs:element name="variable" maxOccurs="unbounded">
4315
+ <xs:complexType>
4316
+ <xs:attribute name="name" use="required" type="xs:string"/>
4317
+ <xs:attribute name="value" use="required" type="xs:string"/>
4318
+ </xs:complexType>
4319
+ </xs:element>
4320
+ </xs:sequence>
4321
+ </xs:complexType>
4322
+ </xs:element>
4323
+ <xs:element name="services" minOccurs="0">
4324
+ <xs:complexType>
4325
+ <xs:sequence>
4326
+ <xs:element name="service" maxOccurs="unbounded" type="xs:string"/>
4327
+ </xs:sequence>
4328
+ </xs:complexType>
4329
+ </xs:element>
4330
+ <xs:element name="options" minOccurs="0">
4331
+ <xs:complexType>
4332
+ <xs:sequence>
4333
+ <xs:element name="option" maxOccurs="unbounded">
4334
+ <xs:complexType>
4335
+ <xs:attribute name="name" use="required" type="xs:string"/>
4336
+ <xs:attribute name="value" use="required" type="xs:string"/>
4337
+ </xs:complexType>
4338
+ </xs:element>
4339
+ </xs:sequence>
4340
+ </xs:complexType>
4341
+ </xs:element>
4342
+ </xs:sequence>
4343
+ <xs:attribute name="name" type="xs:string"/>
4344
+ <xs:attribute name="service-name" type="xs:string"/>
4345
+ <xs:attribute name="version" type="xs:string"/>
4346
+ <xs:attribute name="account-id" type="xs:string"/>
4347
+ <xs:attribute name="availability-zone" type="xs:string"/>
4348
+ <xs:attribute name="region" type="xs:string"/>
2528
4349
  <xs:attribute name="auto-remove" type="xs:boolean"/>
2529
4350
  <xs:attribute name="auto-create-clients" type="xs:boolean"/>
2530
4351
  <xs:attribute name="services" type="xs:string"/>
@@ -2599,6 +4420,8 @@
2599
4420
  </xs:element>
2600
4421
  </xs:sequence>
2601
4422
  <xs:attribute name="name" type="xs:string"/>
4423
+ <xs:attribute name="implementation" type="xs:string" default="CONFLUENT"/>
4424
+ <xs:attribute name="port" type="xs:int"/>
2602
4425
  <xs:attribute name="service-name" type="xs:string"/>
2603
4426
  <xs:attribute name="version" type="xs:string"/>
2604
4427
  <xs:attribute name="auto-remove" type="xs:boolean"/>
@@ -2642,6 +4465,10 @@
2642
4465
  <xs:attribute name="image" type="xs:string"/>
2643
4466
  <xs:attribute name="command" type="xs:string"/>
2644
4467
  <xs:attribute name="startup-timeout" type="xs:int"/>
4468
+ <xs:attribute name="enable-sasl" type="xs:boolean"/>
4469
+ <xs:attribute name="enable-authorization" type="xs:boolean"/>
4470
+ <xs:attribute name="secured-schema-registry" type="xs:boolean"/>
4471
+ <xs:attribute name="superuser" type="xs:string"/>
2645
4472
  </xs:complexType>
2646
4473
  </xs:element>
2647
4474
  <xs:element name="postgresql">