kcr_camel_apache_org 3.20260616.194955

Kubernetes Custom Resource Bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
// WARNING: generated by kopium - manual changes will be overwritten
// kopium command: kopium --docs --derive=Default --derive=PartialEq --smart-derive-elision --filename crd-catalog/apache/camel-k/camel.apache.org/v1/builds.yaml
// kopium version: 0.23.0

#[allow(unused_imports)]
mod prelude {
    pub use kube::CustomResource;
    pub use serde::{Serialize, Deserialize};
    pub use std::collections::BTreeMap;
    pub use k8s_openapi::apimachinery::pkg::apis::meta::v1::Condition;
}

use self::prelude::*;

/// BuildSpec defines the list of tasks to be execute for a Build. From Camel K version 2, it would be more appropriate
/// to think it as pipeline.
#[derive(CustomResource, Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
#[kube(group = "camel.apache.org", version = "v1", kind = "Build", plural = "builds")]
#[kube(namespaced)]
#[kube(status = "BuildStatus")]
#[kube(schema = "disabled")]
#[kube(derive="Default")]
#[kube(derive="PartialEq")]
pub struct BuildSpec {
    /// The configuration that should be used to perform the Build.
    /// 
    /// Deprecated: no longer in use in Camel K 2 - maintained for backward compatibility
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub configuration: Option<BuildConfiguration>,
    /// the maximum amount of parallel running builds started by this operator instance.
    /// 
    /// Deprecated: no longer in use in Camel K 2 - maintained for backward compatibility
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "maxRunningBuilds")]
    pub max_running_builds: Option<i32>,
    /// The namespace where to run the builder Pod (must be the same of the operator in charge of this Build reconciliation).
    /// 
    /// Deprecated: no longer in use in Camel K 2 - maintained for backward compatibility
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "operatorNamespace")]
    pub operator_namespace: Option<String>,
    /// The sequence of tasks (pipeline) to be performed.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub tasks: Option<Vec<BuildTasks>>,
    /// Timeout defines the Build maximum execution duration.
    /// The Build deadline is set to the Build start time plus the Timeout duration.
    /// If the Build deadline is exceeded, the Build context is canceled,
    /// and its phase set to BuildPhaseFailed.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub timeout: Option<String>,
    /// The container image to be used to run the build.
    /// 
    /// Deprecated: no longer in use in Camel K 2 - maintained for backward compatibility
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "toolImage")]
    pub tool_image: Option<String>,
}

/// The configuration that should be used to perform the Build.
/// 
/// Deprecated: no longer in use in Camel K 2 - maintained for backward compatibility
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildConfiguration {
    /// Annotation to use for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub annotations: Option<BTreeMap<String, String>>,
    /// The maximum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitCPU")]
    pub limit_cpu: Option<String>,
    /// The maximum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitMemory")]
    pub limit_memory: Option<String>,
    /// The node selector for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "nodeSelector")]
    pub node_selector: Option<BTreeMap<String, String>>,
    /// The namespace where to run the builder Pod (must be the same of the operator in charge of this Build reconciliation).
    /// 
    /// Deprecated: no longer in use.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "operatorNamespace")]
    pub operator_namespace: Option<String>,
    /// the build order strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "orderStrategy")]
    pub order_strategy: Option<BuildConfigurationOrderStrategy>,
    /// The list of platforms used in order to build a container image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub platforms: Option<Vec<String>>,
    /// The minimum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestCPU")]
    pub request_cpu: Option<String>,
    /// The minimum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestMemory")]
    pub request_memory: Option<String>,
    /// the strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub strategy: Option<BuildConfigurationStrategy>,
    /// The container image to be used to run the build.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "toolImage")]
    pub tool_image: Option<String>,
}

/// The configuration that should be used to perform the Build.
/// 
/// Deprecated: no longer in use in Camel K 2 - maintained for backward compatibility
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildConfigurationOrderStrategy {
    #[serde(rename = "dependencies")]
    Dependencies,
    #[serde(rename = "fifo")]
    Fifo,
    #[serde(rename = "sequential")]
    Sequential,
}

/// The configuration that should be used to perform the Build.
/// 
/// Deprecated: no longer in use in Camel K 2 - maintained for backward compatibility
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildConfigurationStrategy {
    #[serde(rename = "routine")]
    Routine,
    #[serde(rename = "pod")]
    Pod,
}

/// Task represents the abstract task. Only one of the task should be configured to represent the specific task chosen.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasks {
    /// a BuildahTask, for Buildah strategy.
    /// 
    /// Deprecated: use jib or a custom publishing strategy instead
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub buildah: Option<BuildTasksBuildah>,
    /// a BuilderTask, used to generate and build the project
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub builder: Option<BuildTasksBuilder>,
    /// User customizable task execution. These are executed after the build and before the package task.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub custom: Option<BuildTasksCustom>,
    /// a JibTask, for Jib strategy
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub jib: Option<BuildTasksJib>,
    /// a KanikoTask, for Kaniko strategy.
    /// 
    /// Deprecated: use jib or a custom publishing strategy instead
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub kaniko: Option<BuildTasksKaniko>,
    /// Application pre publishing
    /// a PackageTask, used to package the project
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub package: Option<BuildTasksPackage>,
    /// a S2iTask, for S2I strategy.
    /// 
    /// Deprecated: use jib or a custom publishing strategy instead
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub s2i: Option<BuildTasksS2i>,
    /// a SpectrumTask, for Spectrum strategy.
    /// 
    /// Deprecated: use jib or a custom publishing strategy instead
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub spectrum: Option<BuildTasksSpectrum>,
}

/// a BuildahTask, for Buildah strategy.
/// 
/// Deprecated: use jib or a custom publishing strategy instead
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuildah {
    /// base image layer
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "baseImage")]
    pub base_image: Option<String>,
    /// The configuration that should be used to perform the Build.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub configuration: Option<BuildTasksBuildahConfiguration>,
    /// can be useful to share info with other tasks
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "contextDir")]
    pub context_dir: Option<String>,
    /// docker image to use
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "executorImage")]
    pub executor_image: Option<String>,
    /// final image name
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub image: Option<String>,
    /// name of the task
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// The platform of build image
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub platform: Option<String>,
    /// where to publish the final image
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub registry: Option<BuildTasksBuildahRegistry>,
    /// log more information
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub verbose: Option<bool>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuildahConfiguration {
    /// Annotation to use for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub annotations: Option<BTreeMap<String, String>>,
    /// The maximum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitCPU")]
    pub limit_cpu: Option<String>,
    /// The maximum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitMemory")]
    pub limit_memory: Option<String>,
    /// The node selector for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "nodeSelector")]
    pub node_selector: Option<BTreeMap<String, String>>,
    /// The namespace where to run the builder Pod (must be the same of the operator in charge of this Build reconciliation).
    /// 
    /// Deprecated: no longer in use.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "operatorNamespace")]
    pub operator_namespace: Option<String>,
    /// the build order strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "orderStrategy")]
    pub order_strategy: Option<BuildTasksBuildahConfigurationOrderStrategy>,
    /// The list of platforms used in order to build a container image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub platforms: Option<Vec<String>>,
    /// The minimum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestCPU")]
    pub request_cpu: Option<String>,
    /// The minimum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestMemory")]
    pub request_memory: Option<String>,
    /// the strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub strategy: Option<BuildTasksBuildahConfigurationStrategy>,
    /// The container image to be used to run the build.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "toolImage")]
    pub tool_image: Option<String>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksBuildahConfigurationOrderStrategy {
    #[serde(rename = "dependencies")]
    Dependencies,
    #[serde(rename = "fifo")]
    Fifo,
    #[serde(rename = "sequential")]
    Sequential,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksBuildahConfigurationStrategy {
    #[serde(rename = "routine")]
    Routine,
    #[serde(rename = "pod")]
    Pod,
}

/// where to publish the final image
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuildahRegistry {
    /// the URI to access
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub address: Option<String>,
    /// the configmap which stores the Certificate Authority
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub ca: Option<String>,
    /// if the container registry is insecure (ie, http only)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub insecure: Option<bool>,
    /// the registry organization
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub organization: Option<String>,
    /// the secret where credentials are stored
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub secret: Option<String>,
}

/// a BuilderTask, used to generate and build the project
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilder {
    /// the base image layer
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "baseImage")]
    pub base_image: Option<String>,
    /// workspace directory to use
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "buildDir")]
    pub build_dir: Option<String>,
    /// The configuration that should be used to perform the Build.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub configuration: Option<BuildTasksBuilderConfiguration>,
    /// the list of dependencies to use for this build
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub dependencies: Option<Vec<String>>,
    /// the configuration of the project to build on Git
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub git: Option<BuildTasksBuilderGit>,
    /// the configuration required by Maven for the application build phase
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub maven: Option<BuildTasksBuilderMaven>,
    /// name of the task
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// the configuration required for the runtime application
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub runtime: Option<BuildTasksBuilderRuntime>,
    /// the sources to add at build time
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub sources: Option<Vec<BuildTasksBuilderSources>>,
    /// the list of steps to execute (see pkg/builder/)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub steps: Option<Vec<String>>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderConfiguration {
    /// Annotation to use for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub annotations: Option<BTreeMap<String, String>>,
    /// The maximum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitCPU")]
    pub limit_cpu: Option<String>,
    /// The maximum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitMemory")]
    pub limit_memory: Option<String>,
    /// The node selector for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "nodeSelector")]
    pub node_selector: Option<BTreeMap<String, String>>,
    /// The namespace where to run the builder Pod (must be the same of the operator in charge of this Build reconciliation).
    /// 
    /// Deprecated: no longer in use.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "operatorNamespace")]
    pub operator_namespace: Option<String>,
    /// the build order strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "orderStrategy")]
    pub order_strategy: Option<BuildTasksBuilderConfigurationOrderStrategy>,
    /// The list of platforms used in order to build a container image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub platforms: Option<Vec<String>>,
    /// The minimum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestCPU")]
    pub request_cpu: Option<String>,
    /// The minimum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestMemory")]
    pub request_memory: Option<String>,
    /// the strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub strategy: Option<BuildTasksBuilderConfigurationStrategy>,
    /// The container image to be used to run the build.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "toolImage")]
    pub tool_image: Option<String>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksBuilderConfigurationOrderStrategy {
    #[serde(rename = "dependencies")]
    Dependencies,
    #[serde(rename = "fifo")]
    Fifo,
    #[serde(rename = "sequential")]
    Sequential,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksBuilderConfigurationStrategy {
    #[serde(rename = "routine")]
    Routine,
    #[serde(rename = "pod")]
    Pod,
}

/// the configuration of the project to build on Git
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderGit {
    /// the git branch to check out
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub branch: Option<String>,
    /// the git commit (full SHA) to check out
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub commit: Option<String>,
    /// the path you want to use for your project. If provided, it must be an existing directory on the Git repository.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub path: Option<String>,
    /// the Kubernetes secret where token is stored
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub secret: Option<String>,
    /// the git tag to check out
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub tag: Option<String>,
    /// the URL of the project
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub url: Option<String>,
}

/// the configuration required by Maven for the application build phase
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMaven {
    /// The Secrets name and key, containing the CA certificate(s) used to connect
    /// to remote Maven repositories.
    /// It can contain X.509 certificates, and PKCS#7 formatted certificate chains.
    /// A JKS formatted keystore is automatically created to store the CA certificate(s),
    /// and configured to be used as a trusted certificate(s) by the Maven commands.
    /// Note that the root CA certificates are also imported into the created keystore.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "caSecrets")]
    pub ca_secrets: Option<Vec<BuildTasksBuilderMavenCaSecrets>>,
    /// The CLI options that are appended to the list of arguments for Maven commands,
    /// e.g., `-V,--no-transfer-progress,-Dstyle.color=never`.
    /// See <https://maven.apache.org/ref/3.9.14/maven-embedder/cli.html.>
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "cliOptions")]
    pub cli_options: Option<Vec<String>>,
    /// Deprecated: no longer in use.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub extension: Option<Vec<BuildTasksBuilderMavenExtension>>,
    /// The path of the local Maven repository.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "localRepository")]
    pub local_repository: Option<String>,
    /// A reference to the ConfigMap or Secret key that contains
    /// the Maven profile.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub profiles: Option<Vec<BuildTasksBuilderMavenProfiles>>,
    /// The Maven properties.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub properties: Option<BTreeMap<String, String>>,
    /// additional repositories
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub repositories: Option<Vec<BuildTasksBuilderMavenRepositories>>,
    /// Servers (auth)
    /// 
    /// Deprecated: no longer in use.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub servers: Option<Vec<BuildTasksBuilderMavenServers>>,
    /// A reference to the ConfigMap or Secret key that contains
    /// the Maven settings.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub settings: Option<BuildTasksBuilderMavenSettings>,
    /// A reference to the ConfigMap or Secret key that contains
    /// the security of the Maven settings.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "settingsSecurity")]
    pub settings_security: Option<BuildTasksBuilderMavenSettingsSecurity>,
}

/// SecretKeySelector selects a key of a Secret.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMavenCaSecrets {
    /// The key of the secret to select from.  Must be a valid secret key.
    pub key: String,
    /// Name of the referent.
    /// This field is effectively required, but due to backwards compatibility is
    /// allowed to be empty. Instances of this type with an empty value here are
    /// almost certainly wrong.
    /// More info: <https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names>
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Specify whether the Secret or its key must be defined
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub optional: Option<bool>,
}

/// MavenArtifact defines a GAV (Group:Artifact:Type:Version:Classifier) Maven artifact.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMavenExtension {
    /// Maven Artifact
    #[serde(rename = "artifactId")]
    pub artifact_id: String,
    /// Maven Classifier
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub classifier: Option<String>,
    /// Maven Group
    #[serde(rename = "groupId")]
    pub group_id: String,
    /// Maven Type
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "type")]
    pub r#type: Option<String>,
    /// Maven Version
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub version: Option<String>,
}

/// ValueSource --.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMavenProfiles {
    /// Selects a key of a ConfigMap.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "configMapKeyRef")]
    pub config_map_key_ref: Option<BuildTasksBuilderMavenProfilesConfigMapKeyRef>,
    /// Selects a key of a secret.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "secretKeyRef")]
    pub secret_key_ref: Option<BuildTasksBuilderMavenProfilesSecretKeyRef>,
}

/// Selects a key of a ConfigMap.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMavenProfilesConfigMapKeyRef {
    /// The key to select.
    pub key: String,
    /// Name of the referent.
    /// This field is effectively required, but due to backwards compatibility is
    /// allowed to be empty. Instances of this type with an empty value here are
    /// almost certainly wrong.
    /// More info: <https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names>
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Specify whether the ConfigMap or its key must be defined
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub optional: Option<bool>,
}

/// Selects a key of a secret.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMavenProfilesSecretKeyRef {
    /// The key of the secret to select from.  Must be a valid secret key.
    pub key: String,
    /// Name of the referent.
    /// This field is effectively required, but due to backwards compatibility is
    /// allowed to be empty. Instances of this type with an empty value here are
    /// almost certainly wrong.
    /// More info: <https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names>
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Specify whether the Secret or its key must be defined
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub optional: Option<bool>,
}

/// Repository defines a Maven repository.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMavenRepositories {
    /// identifies the repository
    pub id: String,
    /// name of the repository
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// can use stable releases
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub releases: Option<BuildTasksBuilderMavenRepositoriesReleases>,
    /// can use snapshot
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub snapshots: Option<BuildTasksBuilderMavenRepositoriesSnapshots>,
    /// location of the repository
    pub url: String,
}

/// can use stable releases
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMavenRepositoriesReleases {
    /// When Maven deploys files to the repository, it also deploys corresponding checksum files.
    /// Your options are to `ignore`, `fail`, or `warn` on missing or incorrect checksums.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "checksumPolicy")]
    pub checksum_policy: Option<String>,
    /// is the policy activated or not
    pub enabled: bool,
    /// This element specifies how often updates should attempt to occur.
    /// Maven will compare the local POM's timestamp (stored in a repository's maven-metadata file) to the remote.
    /// The choices are: `always`, `daily` (default), `interval:X` (where X is an integer in minutes) or `never`
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "updatePolicy")]
    pub update_policy: Option<String>,
}

/// can use snapshot
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMavenRepositoriesSnapshots {
    /// When Maven deploys files to the repository, it also deploys corresponding checksum files.
    /// Your options are to `ignore`, `fail`, or `warn` on missing or incorrect checksums.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "checksumPolicy")]
    pub checksum_policy: Option<String>,
    /// is the policy activated or not
    pub enabled: bool,
    /// This element specifies how often updates should attempt to occur.
    /// Maven will compare the local POM's timestamp (stored in a repository's maven-metadata file) to the remote.
    /// The choices are: `always`, `daily` (default), `interval:X` (where X is an integer in minutes) or `never`
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "updatePolicy")]
    pub update_policy: Option<String>,
}

/// Server see link:<https://maven.apache.org/settings.html[Maven> settings].
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMavenServers {
    /// Properties -- .
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub configuration: Option<BTreeMap<String, String>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub password: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub username: Option<String>,
}

/// A reference to the ConfigMap or Secret key that contains
/// the Maven settings.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMavenSettings {
    /// Selects a key of a ConfigMap.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "configMapKeyRef")]
    pub config_map_key_ref: Option<BuildTasksBuilderMavenSettingsConfigMapKeyRef>,
    /// Selects a key of a secret.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "secretKeyRef")]
    pub secret_key_ref: Option<BuildTasksBuilderMavenSettingsSecretKeyRef>,
}

/// Selects a key of a ConfigMap.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMavenSettingsConfigMapKeyRef {
    /// The key to select.
    pub key: String,
    /// Name of the referent.
    /// This field is effectively required, but due to backwards compatibility is
    /// allowed to be empty. Instances of this type with an empty value here are
    /// almost certainly wrong.
    /// More info: <https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names>
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Specify whether the ConfigMap or its key must be defined
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub optional: Option<bool>,
}

/// Selects a key of a secret.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMavenSettingsSecretKeyRef {
    /// The key of the secret to select from.  Must be a valid secret key.
    pub key: String,
    /// Name of the referent.
    /// This field is effectively required, but due to backwards compatibility is
    /// allowed to be empty. Instances of this type with an empty value here are
    /// almost certainly wrong.
    /// More info: <https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names>
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Specify whether the Secret or its key must be defined
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub optional: Option<bool>,
}

/// A reference to the ConfigMap or Secret key that contains
/// the security of the Maven settings.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMavenSettingsSecurity {
    /// Selects a key of a ConfigMap.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "configMapKeyRef")]
    pub config_map_key_ref: Option<BuildTasksBuilderMavenSettingsSecurityConfigMapKeyRef>,
    /// Selects a key of a secret.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "secretKeyRef")]
    pub secret_key_ref: Option<BuildTasksBuilderMavenSettingsSecuritySecretKeyRef>,
}

/// Selects a key of a ConfigMap.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMavenSettingsSecurityConfigMapKeyRef {
    /// The key to select.
    pub key: String,
    /// Name of the referent.
    /// This field is effectively required, but due to backwards compatibility is
    /// allowed to be empty. Instances of this type with an empty value here are
    /// almost certainly wrong.
    /// More info: <https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names>
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Specify whether the ConfigMap or its key must be defined
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub optional: Option<bool>,
}

/// Selects a key of a secret.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderMavenSettingsSecuritySecretKeyRef {
    /// The key of the secret to select from.  Must be a valid secret key.
    pub key: String,
    /// Name of the referent.
    /// This field is effectively required, but due to backwards compatibility is
    /// allowed to be empty. Instances of this type with an empty value here are
    /// almost certainly wrong.
    /// More info: <https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names>
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Specify whether the Secret or its key must be defined
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub optional: Option<bool>,
}

/// the configuration required for the runtime application
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderRuntime {
    /// application entry point (main) to be executed
    #[serde(rename = "applicationClass")]
    pub application_class: String,
    /// features offered by this runtime
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub capabilities: Option<BTreeMap<String, BuildTasksBuilderRuntimeCapabilities>>,
    /// list of dependencies needed to run the application
    pub dependencies: Vec<BuildTasksBuilderRuntimeDependencies>,
    /// set of metadata
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub metadata: Option<BTreeMap<String, String>>,
    /// Camel main application provider, ie, Camel Quarkus
    pub provider: String,
    /// Camel K Runtime version
    pub version: String,
}

/// features offered by this runtime
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderRuntimeCapabilities {
    /// Set of required Camel build time properties
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "buildTimeProperties")]
    pub build_time_properties: Option<Vec<BuildTasksBuilderRuntimeCapabilitiesBuildTimeProperties>>,
    /// List of required Maven dependencies
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub dependencies: Option<Vec<BuildTasksBuilderRuntimeCapabilitiesDependencies>>,
    /// Set of generic metadata
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub metadata: Option<BTreeMap<String, String>>,
    /// Set of required Camel runtime properties
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "runtimeProperties")]
    pub runtime_properties: Option<Vec<BuildTasksBuilderRuntimeCapabilitiesRuntimeProperties>>,
}

/// CamelProperty represents a Camel property that may end up in an application.properties file.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderRuntimeCapabilitiesBuildTimeProperties {
    pub key: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub value: Option<String>,
}

/// MavenArtifact defines a GAV (Group:Artifact:Type:Version:Classifier) Maven artifact.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderRuntimeCapabilitiesDependencies {
    /// Maven Artifact
    #[serde(rename = "artifactId")]
    pub artifact_id: String,
    /// Maven Classifier
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub classifier: Option<String>,
    /// Maven Group
    #[serde(rename = "groupId")]
    pub group_id: String,
    /// Maven Type
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "type")]
    pub r#type: Option<String>,
    /// Maven Version
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub version: Option<String>,
}

/// CamelProperty represents a Camel property that may end up in an application.properties file.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderRuntimeCapabilitiesRuntimeProperties {
    pub key: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub value: Option<String>,
}

/// MavenArtifact defines a GAV (Group:Artifact:Type:Version:Classifier) Maven artifact.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderRuntimeDependencies {
    /// Maven Artifact
    #[serde(rename = "artifactId")]
    pub artifact_id: String,
    /// Maven Classifier
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub classifier: Option<String>,
    /// Maven Group
    #[serde(rename = "groupId")]
    pub group_id: String,
    /// Maven Type
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "type")]
    pub r#type: Option<String>,
    /// Maven Version
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub version: Option<String>,
}

/// SourceSpec defines the configuration for one or more routes to be executed in a certain Camel DSL language.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksBuilderSources {
    /// if the content is compressed (base64 encrypted)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub compression: Option<bool>,
    /// the source code (plain text)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub content: Option<String>,
    /// the confimap key holding the source content
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "contentKey")]
    pub content_key: Option<String>,
    /// the confimap reference holding the source content
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "contentRef")]
    pub content_ref: Option<String>,
    /// the content type (tipically text or binary)
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "contentType")]
    pub content_type: Option<String>,
    /// True if the spec is generated from a Kamelet
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "from-kamelet")]
    pub from_kamelet: Option<bool>,
    /// Interceptors are optional identifiers the org.apache.camel.k.RoutesLoader
    /// uses to pre/post process sources.
    /// 
    /// Deprecated: no longer in use.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub interceptors: Option<Vec<String>>,
    /// specify which is the language (Camel DSL) used to interpret this source code
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub language: Option<String>,
    /// Loader is an optional id of the org.apache.camel.k.RoutesLoader that will
    /// interpret this source at runtime
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub loader: Option<String>,
    /// the name of the specification
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// the path where the file is stored
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub path: Option<String>,
    /// List of property names defined in the source (e.g. if type is "template")
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "property-names")]
    pub property_names: Option<Vec<String>>,
    /// the source code (binary)
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "rawContent")]
    pub raw_content: Option<String>,
    /// Type defines the kind of source described by this object
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "type")]
    pub r#type: Option<String>,
}

/// User customizable task execution. These are executed after the build and before the package task.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksCustom {
    /// the command to execute.
    /// 
    /// Deprecated: use ContainerCommands
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub command: Option<String>,
    /// the command to execute
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub commands: Option<Vec<String>>,
    /// The configuration that should be used to perform the Build.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub configuration: Option<BuildTasksCustomConfiguration>,
    /// the container image to use
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub image: Option<String>,
    /// name of the task
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// the desired image build name
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "publishingImage")]
    pub publishing_image: Option<String>,
    /// the user id used to run the container
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "userId")]
    pub user_id: Option<i64>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksCustomConfiguration {
    /// Annotation to use for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub annotations: Option<BTreeMap<String, String>>,
    /// The maximum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitCPU")]
    pub limit_cpu: Option<String>,
    /// The maximum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitMemory")]
    pub limit_memory: Option<String>,
    /// The node selector for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "nodeSelector")]
    pub node_selector: Option<BTreeMap<String, String>>,
    /// The namespace where to run the builder Pod (must be the same of the operator in charge of this Build reconciliation).
    /// 
    /// Deprecated: no longer in use.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "operatorNamespace")]
    pub operator_namespace: Option<String>,
    /// the build order strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "orderStrategy")]
    pub order_strategy: Option<BuildTasksCustomConfigurationOrderStrategy>,
    /// The list of platforms used in order to build a container image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub platforms: Option<Vec<String>>,
    /// The minimum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestCPU")]
    pub request_cpu: Option<String>,
    /// The minimum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestMemory")]
    pub request_memory: Option<String>,
    /// the strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub strategy: Option<BuildTasksCustomConfigurationStrategy>,
    /// The container image to be used to run the build.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "toolImage")]
    pub tool_image: Option<String>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksCustomConfigurationOrderStrategy {
    #[serde(rename = "dependencies")]
    Dependencies,
    #[serde(rename = "fifo")]
    Fifo,
    #[serde(rename = "sequential")]
    Sequential,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksCustomConfigurationStrategy {
    #[serde(rename = "routine")]
    Routine,
    #[serde(rename = "pod")]
    Pod,
}

/// a JibTask, for Jib strategy
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksJib {
    /// base image layer
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "baseImage")]
    pub base_image: Option<String>,
    /// The configuration that should be used to perform the Build.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub configuration: Option<BuildTasksJibConfiguration>,
    /// can be useful to share info with other tasks
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "contextDir")]
    pub context_dir: Option<String>,
    /// final image name
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub image: Option<String>,
    /// name of the task
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// where to publish the final image
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub registry: Option<BuildTasksJibRegistry>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksJibConfiguration {
    /// Annotation to use for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub annotations: Option<BTreeMap<String, String>>,
    /// The maximum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitCPU")]
    pub limit_cpu: Option<String>,
    /// The maximum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitMemory")]
    pub limit_memory: Option<String>,
    /// The node selector for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "nodeSelector")]
    pub node_selector: Option<BTreeMap<String, String>>,
    /// The namespace where to run the builder Pod (must be the same of the operator in charge of this Build reconciliation).
    /// 
    /// Deprecated: no longer in use.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "operatorNamespace")]
    pub operator_namespace: Option<String>,
    /// the build order strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "orderStrategy")]
    pub order_strategy: Option<BuildTasksJibConfigurationOrderStrategy>,
    /// The list of platforms used in order to build a container image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub platforms: Option<Vec<String>>,
    /// The minimum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestCPU")]
    pub request_cpu: Option<String>,
    /// The minimum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestMemory")]
    pub request_memory: Option<String>,
    /// the strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub strategy: Option<BuildTasksJibConfigurationStrategy>,
    /// The container image to be used to run the build.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "toolImage")]
    pub tool_image: Option<String>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksJibConfigurationOrderStrategy {
    #[serde(rename = "dependencies")]
    Dependencies,
    #[serde(rename = "fifo")]
    Fifo,
    #[serde(rename = "sequential")]
    Sequential,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksJibConfigurationStrategy {
    #[serde(rename = "routine")]
    Routine,
    #[serde(rename = "pod")]
    Pod,
}

/// where to publish the final image
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksJibRegistry {
    /// the URI to access
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub address: Option<String>,
    /// the configmap which stores the Certificate Authority
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub ca: Option<String>,
    /// if the container registry is insecure (ie, http only)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub insecure: Option<bool>,
    /// the registry organization
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub organization: Option<String>,
    /// the secret where credentials are stored
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub secret: Option<String>,
}

/// a KanikoTask, for Kaniko strategy.
/// 
/// Deprecated: use jib or a custom publishing strategy instead
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksKaniko {
    /// base image layer
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "baseImage")]
    pub base_image: Option<String>,
    /// use a cache
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub cache: Option<BuildTasksKanikoCache>,
    /// The configuration that should be used to perform the Build.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub configuration: Option<BuildTasksKanikoConfiguration>,
    /// can be useful to share info with other tasks
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "contextDir")]
    pub context_dir: Option<String>,
    /// docker image to use
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "executorImage")]
    pub executor_image: Option<String>,
    /// final image name
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub image: Option<String>,
    /// name of the task
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// where to publish the final image
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub registry: Option<BuildTasksKanikoRegistry>,
    /// log more information
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub verbose: Option<bool>,
}

/// use a cache
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksKanikoCache {
    /// true if a cache is enabled
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub enabled: Option<bool>,
    /// the PVC used to store the cache
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "persistentVolumeClaim")]
    pub persistent_volume_claim: Option<String>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksKanikoConfiguration {
    /// Annotation to use for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub annotations: Option<BTreeMap<String, String>>,
    /// The maximum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitCPU")]
    pub limit_cpu: Option<String>,
    /// The maximum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitMemory")]
    pub limit_memory: Option<String>,
    /// The node selector for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "nodeSelector")]
    pub node_selector: Option<BTreeMap<String, String>>,
    /// The namespace where to run the builder Pod (must be the same of the operator in charge of this Build reconciliation).
    /// 
    /// Deprecated: no longer in use.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "operatorNamespace")]
    pub operator_namespace: Option<String>,
    /// the build order strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "orderStrategy")]
    pub order_strategy: Option<BuildTasksKanikoConfigurationOrderStrategy>,
    /// The list of platforms used in order to build a container image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub platforms: Option<Vec<String>>,
    /// The minimum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestCPU")]
    pub request_cpu: Option<String>,
    /// The minimum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestMemory")]
    pub request_memory: Option<String>,
    /// the strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub strategy: Option<BuildTasksKanikoConfigurationStrategy>,
    /// The container image to be used to run the build.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "toolImage")]
    pub tool_image: Option<String>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksKanikoConfigurationOrderStrategy {
    #[serde(rename = "dependencies")]
    Dependencies,
    #[serde(rename = "fifo")]
    Fifo,
    #[serde(rename = "sequential")]
    Sequential,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksKanikoConfigurationStrategy {
    #[serde(rename = "routine")]
    Routine,
    #[serde(rename = "pod")]
    Pod,
}

/// where to publish the final image
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksKanikoRegistry {
    /// the URI to access
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub address: Option<String>,
    /// the configmap which stores the Certificate Authority
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub ca: Option<String>,
    /// if the container registry is insecure (ie, http only)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub insecure: Option<bool>,
    /// the registry organization
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub organization: Option<String>,
    /// the secret where credentials are stored
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub secret: Option<String>,
}

/// Application pre publishing
/// a PackageTask, used to package the project
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackage {
    /// the base image layer
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "baseImage")]
    pub base_image: Option<String>,
    /// workspace directory to use
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "buildDir")]
    pub build_dir: Option<String>,
    /// The configuration that should be used to perform the Build.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub configuration: Option<BuildTasksPackageConfiguration>,
    /// the list of dependencies to use for this build
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub dependencies: Option<Vec<String>>,
    /// the configuration of the project to build on Git
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub git: Option<BuildTasksPackageGit>,
    /// the configuration required by Maven for the application build phase
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub maven: Option<BuildTasksPackageMaven>,
    /// name of the task
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// the configuration required for the runtime application
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub runtime: Option<BuildTasksPackageRuntime>,
    /// the sources to add at build time
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub sources: Option<Vec<BuildTasksPackageSources>>,
    /// the list of steps to execute (see pkg/builder/)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub steps: Option<Vec<String>>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageConfiguration {
    /// Annotation to use for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub annotations: Option<BTreeMap<String, String>>,
    /// The maximum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitCPU")]
    pub limit_cpu: Option<String>,
    /// The maximum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitMemory")]
    pub limit_memory: Option<String>,
    /// The node selector for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "nodeSelector")]
    pub node_selector: Option<BTreeMap<String, String>>,
    /// The namespace where to run the builder Pod (must be the same of the operator in charge of this Build reconciliation).
    /// 
    /// Deprecated: no longer in use.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "operatorNamespace")]
    pub operator_namespace: Option<String>,
    /// the build order strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "orderStrategy")]
    pub order_strategy: Option<BuildTasksPackageConfigurationOrderStrategy>,
    /// The list of platforms used in order to build a container image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub platforms: Option<Vec<String>>,
    /// The minimum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestCPU")]
    pub request_cpu: Option<String>,
    /// The minimum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestMemory")]
    pub request_memory: Option<String>,
    /// the strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub strategy: Option<BuildTasksPackageConfigurationStrategy>,
    /// The container image to be used to run the build.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "toolImage")]
    pub tool_image: Option<String>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksPackageConfigurationOrderStrategy {
    #[serde(rename = "dependencies")]
    Dependencies,
    #[serde(rename = "fifo")]
    Fifo,
    #[serde(rename = "sequential")]
    Sequential,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksPackageConfigurationStrategy {
    #[serde(rename = "routine")]
    Routine,
    #[serde(rename = "pod")]
    Pod,
}

/// the configuration of the project to build on Git
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageGit {
    /// the git branch to check out
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub branch: Option<String>,
    /// the git commit (full SHA) to check out
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub commit: Option<String>,
    /// the path you want to use for your project. If provided, it must be an existing directory on the Git repository.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub path: Option<String>,
    /// the Kubernetes secret where token is stored
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub secret: Option<String>,
    /// the git tag to check out
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub tag: Option<String>,
    /// the URL of the project
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub url: Option<String>,
}

/// the configuration required by Maven for the application build phase
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMaven {
    /// The Secrets name and key, containing the CA certificate(s) used to connect
    /// to remote Maven repositories.
    /// It can contain X.509 certificates, and PKCS#7 formatted certificate chains.
    /// A JKS formatted keystore is automatically created to store the CA certificate(s),
    /// and configured to be used as a trusted certificate(s) by the Maven commands.
    /// Note that the root CA certificates are also imported into the created keystore.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "caSecrets")]
    pub ca_secrets: Option<Vec<BuildTasksPackageMavenCaSecrets>>,
    /// The CLI options that are appended to the list of arguments for Maven commands,
    /// e.g., `-V,--no-transfer-progress,-Dstyle.color=never`.
    /// See <https://maven.apache.org/ref/3.9.14/maven-embedder/cli.html.>
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "cliOptions")]
    pub cli_options: Option<Vec<String>>,
    /// Deprecated: no longer in use.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub extension: Option<Vec<BuildTasksPackageMavenExtension>>,
    /// The path of the local Maven repository.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "localRepository")]
    pub local_repository: Option<String>,
    /// A reference to the ConfigMap or Secret key that contains
    /// the Maven profile.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub profiles: Option<Vec<BuildTasksPackageMavenProfiles>>,
    /// The Maven properties.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub properties: Option<BTreeMap<String, String>>,
    /// additional repositories
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub repositories: Option<Vec<BuildTasksPackageMavenRepositories>>,
    /// Servers (auth)
    /// 
    /// Deprecated: no longer in use.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub servers: Option<Vec<BuildTasksPackageMavenServers>>,
    /// A reference to the ConfigMap or Secret key that contains
    /// the Maven settings.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub settings: Option<BuildTasksPackageMavenSettings>,
    /// A reference to the ConfigMap or Secret key that contains
    /// the security of the Maven settings.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "settingsSecurity")]
    pub settings_security: Option<BuildTasksPackageMavenSettingsSecurity>,
}

/// SecretKeySelector selects a key of a Secret.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMavenCaSecrets {
    /// The key of the secret to select from.  Must be a valid secret key.
    pub key: String,
    /// Name of the referent.
    /// This field is effectively required, but due to backwards compatibility is
    /// allowed to be empty. Instances of this type with an empty value here are
    /// almost certainly wrong.
    /// More info: <https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names>
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Specify whether the Secret or its key must be defined
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub optional: Option<bool>,
}

/// MavenArtifact defines a GAV (Group:Artifact:Type:Version:Classifier) Maven artifact.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMavenExtension {
    /// Maven Artifact
    #[serde(rename = "artifactId")]
    pub artifact_id: String,
    /// Maven Classifier
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub classifier: Option<String>,
    /// Maven Group
    #[serde(rename = "groupId")]
    pub group_id: String,
    /// Maven Type
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "type")]
    pub r#type: Option<String>,
    /// Maven Version
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub version: Option<String>,
}

/// ValueSource --.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMavenProfiles {
    /// Selects a key of a ConfigMap.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "configMapKeyRef")]
    pub config_map_key_ref: Option<BuildTasksPackageMavenProfilesConfigMapKeyRef>,
    /// Selects a key of a secret.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "secretKeyRef")]
    pub secret_key_ref: Option<BuildTasksPackageMavenProfilesSecretKeyRef>,
}

/// Selects a key of a ConfigMap.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMavenProfilesConfigMapKeyRef {
    /// The key to select.
    pub key: String,
    /// Name of the referent.
    /// This field is effectively required, but due to backwards compatibility is
    /// allowed to be empty. Instances of this type with an empty value here are
    /// almost certainly wrong.
    /// More info: <https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names>
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Specify whether the ConfigMap or its key must be defined
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub optional: Option<bool>,
}

/// Selects a key of a secret.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMavenProfilesSecretKeyRef {
    /// The key of the secret to select from.  Must be a valid secret key.
    pub key: String,
    /// Name of the referent.
    /// This field is effectively required, but due to backwards compatibility is
    /// allowed to be empty. Instances of this type with an empty value here are
    /// almost certainly wrong.
    /// More info: <https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names>
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Specify whether the Secret or its key must be defined
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub optional: Option<bool>,
}

/// Repository defines a Maven repository.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMavenRepositories {
    /// identifies the repository
    pub id: String,
    /// name of the repository
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// can use stable releases
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub releases: Option<BuildTasksPackageMavenRepositoriesReleases>,
    /// can use snapshot
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub snapshots: Option<BuildTasksPackageMavenRepositoriesSnapshots>,
    /// location of the repository
    pub url: String,
}

/// can use stable releases
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMavenRepositoriesReleases {
    /// When Maven deploys files to the repository, it also deploys corresponding checksum files.
    /// Your options are to `ignore`, `fail`, or `warn` on missing or incorrect checksums.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "checksumPolicy")]
    pub checksum_policy: Option<String>,
    /// is the policy activated or not
    pub enabled: bool,
    /// This element specifies how often updates should attempt to occur.
    /// Maven will compare the local POM's timestamp (stored in a repository's maven-metadata file) to the remote.
    /// The choices are: `always`, `daily` (default), `interval:X` (where X is an integer in minutes) or `never`
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "updatePolicy")]
    pub update_policy: Option<String>,
}

/// can use snapshot
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMavenRepositoriesSnapshots {
    /// When Maven deploys files to the repository, it also deploys corresponding checksum files.
    /// Your options are to `ignore`, `fail`, or `warn` on missing or incorrect checksums.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "checksumPolicy")]
    pub checksum_policy: Option<String>,
    /// is the policy activated or not
    pub enabled: bool,
    /// This element specifies how often updates should attempt to occur.
    /// Maven will compare the local POM's timestamp (stored in a repository's maven-metadata file) to the remote.
    /// The choices are: `always`, `daily` (default), `interval:X` (where X is an integer in minutes) or `never`
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "updatePolicy")]
    pub update_policy: Option<String>,
}

/// Server see link:<https://maven.apache.org/settings.html[Maven> settings].
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMavenServers {
    /// Properties -- .
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub configuration: Option<BTreeMap<String, String>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub password: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub username: Option<String>,
}

/// A reference to the ConfigMap or Secret key that contains
/// the Maven settings.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMavenSettings {
    /// Selects a key of a ConfigMap.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "configMapKeyRef")]
    pub config_map_key_ref: Option<BuildTasksPackageMavenSettingsConfigMapKeyRef>,
    /// Selects a key of a secret.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "secretKeyRef")]
    pub secret_key_ref: Option<BuildTasksPackageMavenSettingsSecretKeyRef>,
}

/// Selects a key of a ConfigMap.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMavenSettingsConfigMapKeyRef {
    /// The key to select.
    pub key: String,
    /// Name of the referent.
    /// This field is effectively required, but due to backwards compatibility is
    /// allowed to be empty. Instances of this type with an empty value here are
    /// almost certainly wrong.
    /// More info: <https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names>
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Specify whether the ConfigMap or its key must be defined
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub optional: Option<bool>,
}

/// Selects a key of a secret.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMavenSettingsSecretKeyRef {
    /// The key of the secret to select from.  Must be a valid secret key.
    pub key: String,
    /// Name of the referent.
    /// This field is effectively required, but due to backwards compatibility is
    /// allowed to be empty. Instances of this type with an empty value here are
    /// almost certainly wrong.
    /// More info: <https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names>
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Specify whether the Secret or its key must be defined
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub optional: Option<bool>,
}

/// A reference to the ConfigMap or Secret key that contains
/// the security of the Maven settings.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMavenSettingsSecurity {
    /// Selects a key of a ConfigMap.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "configMapKeyRef")]
    pub config_map_key_ref: Option<BuildTasksPackageMavenSettingsSecurityConfigMapKeyRef>,
    /// Selects a key of a secret.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "secretKeyRef")]
    pub secret_key_ref: Option<BuildTasksPackageMavenSettingsSecuritySecretKeyRef>,
}

/// Selects a key of a ConfigMap.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMavenSettingsSecurityConfigMapKeyRef {
    /// The key to select.
    pub key: String,
    /// Name of the referent.
    /// This field is effectively required, but due to backwards compatibility is
    /// allowed to be empty. Instances of this type with an empty value here are
    /// almost certainly wrong.
    /// More info: <https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names>
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Specify whether the ConfigMap or its key must be defined
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub optional: Option<bool>,
}

/// Selects a key of a secret.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageMavenSettingsSecuritySecretKeyRef {
    /// The key of the secret to select from.  Must be a valid secret key.
    pub key: String,
    /// Name of the referent.
    /// This field is effectively required, but due to backwards compatibility is
    /// allowed to be empty. Instances of this type with an empty value here are
    /// almost certainly wrong.
    /// More info: <https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names>
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Specify whether the Secret or its key must be defined
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub optional: Option<bool>,
}

/// the configuration required for the runtime application
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageRuntime {
    /// application entry point (main) to be executed
    #[serde(rename = "applicationClass")]
    pub application_class: String,
    /// features offered by this runtime
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub capabilities: Option<BTreeMap<String, BuildTasksPackageRuntimeCapabilities>>,
    /// list of dependencies needed to run the application
    pub dependencies: Vec<BuildTasksPackageRuntimeDependencies>,
    /// set of metadata
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub metadata: Option<BTreeMap<String, String>>,
    /// Camel main application provider, ie, Camel Quarkus
    pub provider: String,
    /// Camel K Runtime version
    pub version: String,
}

/// features offered by this runtime
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageRuntimeCapabilities {
    /// Set of required Camel build time properties
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "buildTimeProperties")]
    pub build_time_properties: Option<Vec<BuildTasksPackageRuntimeCapabilitiesBuildTimeProperties>>,
    /// List of required Maven dependencies
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub dependencies: Option<Vec<BuildTasksPackageRuntimeCapabilitiesDependencies>>,
    /// Set of generic metadata
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub metadata: Option<BTreeMap<String, String>>,
    /// Set of required Camel runtime properties
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "runtimeProperties")]
    pub runtime_properties: Option<Vec<BuildTasksPackageRuntimeCapabilitiesRuntimeProperties>>,
}

/// CamelProperty represents a Camel property that may end up in an application.properties file.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageRuntimeCapabilitiesBuildTimeProperties {
    pub key: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub value: Option<String>,
}

/// MavenArtifact defines a GAV (Group:Artifact:Type:Version:Classifier) Maven artifact.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageRuntimeCapabilitiesDependencies {
    /// Maven Artifact
    #[serde(rename = "artifactId")]
    pub artifact_id: String,
    /// Maven Classifier
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub classifier: Option<String>,
    /// Maven Group
    #[serde(rename = "groupId")]
    pub group_id: String,
    /// Maven Type
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "type")]
    pub r#type: Option<String>,
    /// Maven Version
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub version: Option<String>,
}

/// CamelProperty represents a Camel property that may end up in an application.properties file.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageRuntimeCapabilitiesRuntimeProperties {
    pub key: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub value: Option<String>,
}

/// MavenArtifact defines a GAV (Group:Artifact:Type:Version:Classifier) Maven artifact.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageRuntimeDependencies {
    /// Maven Artifact
    #[serde(rename = "artifactId")]
    pub artifact_id: String,
    /// Maven Classifier
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub classifier: Option<String>,
    /// Maven Group
    #[serde(rename = "groupId")]
    pub group_id: String,
    /// Maven Type
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "type")]
    pub r#type: Option<String>,
    /// Maven Version
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub version: Option<String>,
}

/// SourceSpec defines the configuration for one or more routes to be executed in a certain Camel DSL language.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksPackageSources {
    /// if the content is compressed (base64 encrypted)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub compression: Option<bool>,
    /// the source code (plain text)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub content: Option<String>,
    /// the confimap key holding the source content
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "contentKey")]
    pub content_key: Option<String>,
    /// the confimap reference holding the source content
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "contentRef")]
    pub content_ref: Option<String>,
    /// the content type (tipically text or binary)
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "contentType")]
    pub content_type: Option<String>,
    /// True if the spec is generated from a Kamelet
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "from-kamelet")]
    pub from_kamelet: Option<bool>,
    /// Interceptors are optional identifiers the org.apache.camel.k.RoutesLoader
    /// uses to pre/post process sources.
    /// 
    /// Deprecated: no longer in use.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub interceptors: Option<Vec<String>>,
    /// specify which is the language (Camel DSL) used to interpret this source code
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub language: Option<String>,
    /// Loader is an optional id of the org.apache.camel.k.RoutesLoader that will
    /// interpret this source at runtime
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub loader: Option<String>,
    /// the name of the specification
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// the path where the file is stored
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub path: Option<String>,
    /// List of property names defined in the source (e.g. if type is "template")
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "property-names")]
    pub property_names: Option<Vec<String>>,
    /// the source code (binary)
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "rawContent")]
    pub raw_content: Option<String>,
    /// Type defines the kind of source described by this object
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "type")]
    pub r#type: Option<String>,
}

/// a S2iTask, for S2I strategy.
/// 
/// Deprecated: use jib or a custom publishing strategy instead
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksS2i {
    /// base image layer
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "baseImage")]
    pub base_image: Option<String>,
    /// The configuration that should be used to perform the Build.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub configuration: Option<BuildTasksS2iConfiguration>,
    /// can be useful to share info with other tasks
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "contextDir")]
    pub context_dir: Option<String>,
    /// final image name
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub image: Option<String>,
    /// name of the task
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// where to publish the final image
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub registry: Option<BuildTasksS2iRegistry>,
    /// used by the ImageStream
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub tag: Option<String>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksS2iConfiguration {
    /// Annotation to use for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub annotations: Option<BTreeMap<String, String>>,
    /// The maximum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitCPU")]
    pub limit_cpu: Option<String>,
    /// The maximum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitMemory")]
    pub limit_memory: Option<String>,
    /// The node selector for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "nodeSelector")]
    pub node_selector: Option<BTreeMap<String, String>>,
    /// The namespace where to run the builder Pod (must be the same of the operator in charge of this Build reconciliation).
    /// 
    /// Deprecated: no longer in use.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "operatorNamespace")]
    pub operator_namespace: Option<String>,
    /// the build order strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "orderStrategy")]
    pub order_strategy: Option<BuildTasksS2iConfigurationOrderStrategy>,
    /// The list of platforms used in order to build a container image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub platforms: Option<Vec<String>>,
    /// The minimum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestCPU")]
    pub request_cpu: Option<String>,
    /// The minimum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestMemory")]
    pub request_memory: Option<String>,
    /// the strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub strategy: Option<BuildTasksS2iConfigurationStrategy>,
    /// The container image to be used to run the build.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "toolImage")]
    pub tool_image: Option<String>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksS2iConfigurationOrderStrategy {
    #[serde(rename = "dependencies")]
    Dependencies,
    #[serde(rename = "fifo")]
    Fifo,
    #[serde(rename = "sequential")]
    Sequential,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksS2iConfigurationStrategy {
    #[serde(rename = "routine")]
    Routine,
    #[serde(rename = "pod")]
    Pod,
}

/// where to publish the final image
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksS2iRegistry {
    /// the URI to access
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub address: Option<String>,
    /// the configmap which stores the Certificate Authority
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub ca: Option<String>,
    /// if the container registry is insecure (ie, http only)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub insecure: Option<bool>,
    /// the registry organization
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub organization: Option<String>,
    /// the secret where credentials are stored
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub secret: Option<String>,
}

/// a SpectrumTask, for Spectrum strategy.
/// 
/// Deprecated: use jib or a custom publishing strategy instead
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksSpectrum {
    /// base image layer
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "baseImage")]
    pub base_image: Option<String>,
    /// The configuration that should be used to perform the Build.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub configuration: Option<BuildTasksSpectrumConfiguration>,
    /// can be useful to share info with other tasks
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "contextDir")]
    pub context_dir: Option<String>,
    /// final image name
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub image: Option<String>,
    /// name of the task
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// where to publish the final image
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub registry: Option<BuildTasksSpectrumRegistry>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksSpectrumConfiguration {
    /// Annotation to use for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub annotations: Option<BTreeMap<String, String>>,
    /// The maximum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitCPU")]
    pub limit_cpu: Option<String>,
    /// The maximum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "limitMemory")]
    pub limit_memory: Option<String>,
    /// The node selector for the builder pod. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "nodeSelector")]
    pub node_selector: Option<BTreeMap<String, String>>,
    /// The namespace where to run the builder Pod (must be the same of the operator in charge of this Build reconciliation).
    /// 
    /// Deprecated: no longer in use.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "operatorNamespace")]
    pub operator_namespace: Option<String>,
    /// the build order strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "orderStrategy")]
    pub order_strategy: Option<BuildTasksSpectrumConfigurationOrderStrategy>,
    /// The list of platforms used in order to build a container image.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub platforms: Option<Vec<String>>,
    /// The minimum amount of CPU required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestCPU")]
    pub request_cpu: Option<String>,
    /// The minimum amount of memory required. Only used for `pod` strategy
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "requestMemory")]
    pub request_memory: Option<String>,
    /// the strategy to adopt
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub strategy: Option<BuildTasksSpectrumConfigurationStrategy>,
    /// The container image to be used to run the build.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "toolImage")]
    pub tool_image: Option<String>,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksSpectrumConfigurationOrderStrategy {
    #[serde(rename = "dependencies")]
    Dependencies,
    #[serde(rename = "fifo")]
    Fifo,
    #[serde(rename = "sequential")]
    Sequential,
}

/// The configuration that should be used to perform the Build.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub enum BuildTasksSpectrumConfigurationStrategy {
    #[serde(rename = "routine")]
    Routine,
    #[serde(rename = "pod")]
    Pod,
}

/// where to publish the final image
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildTasksSpectrumRegistry {
    /// the URI to access
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub address: Option<String>,
    /// the configmap which stores the Certificate Authority
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub ca: Option<String>,
    /// if the container registry is insecure (ie, http only)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub insecure: Option<bool>,
    /// the registry organization
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub organization: Option<String>,
    /// the secret where credentials are stored
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub secret: Option<String>,
}

/// BuildStatus defines the observed state of Build.
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildStatus {
    /// a list of artifacts contained in the build
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub artifacts: Option<Vec<BuildStatusArtifacts>>,
    /// the base image used for this build
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "baseImage")]
    pub base_image: Option<String>,
    /// a list of conditions occurred during the build
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub conditions: Option<Vec<Condition>>,
    /// the digest from image
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub digest: Option<String>,
    /// how long it took for the build
    /// Change to Duration / ISO 8601 when CRD uses OpenAPI spec v3
    /// <https://github.com/OAI/OpenAPI-Specification/issues/845>
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub duration: Option<String>,
    /// the error description (if any)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub error: Option<String>,
    /// the reason of the failure (if any)
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub failure: Option<BuildStatusFailure>,
    /// the image name built
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub image: Option<String>,
    /// ObservedGeneration is the most recent generation observed for this Build.
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "observedGeneration")]
    pub observed_generation: Option<i64>,
    /// describes the phase
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub phase: Option<String>,
    /// root image (the first image from which the incremental image has started)
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "rootImage")]
    pub root_image: Option<String>,
    /// the time when it started
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "startedAt")]
    pub started_at: Option<String>,
}

/// Artifact represents a materialized artifact (a jar dependency or in general a file used by the build).
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildStatusArtifacts {
    /// a checksum (SHA1) of the content
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub checksum: Option<String>,
    /// the identification (GAV for maven dependencies or file name for other file types)
    pub id: String,
    /// where it is located in the builder `Pod`
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub location: Option<String>,
    /// the expected location in the runtime
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub target: Option<String>,
}

/// the reason of the failure (if any)
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildStatusFailure {
    /// a short text specifying the reason
    pub reason: String,
    /// the recovery attempted for this failure
    pub recovery: BuildStatusFailureRecovery,
    /// the time when the failure has happened
    pub time: String,
}

/// the recovery attempted for this failure
#[derive(Serialize, Deserialize, Clone, Debug, Default, PartialEq)]
pub struct BuildStatusFailureRecovery {
    /// attempt number
    pub attempt: i64,
    /// maximum number of attempts
    #[serde(rename = "attemptMax")]
    pub attempt_max: i64,
    /// time of the attempt execution
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "attemptTime")]
    pub attempt_time: Option<String>,
}