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
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
#![deny(
  warnings,
  missing_debug_implementations,
  trivial_casts,
  trivial_numeric_casts,
  unsafe_code,
  unstable_features,
  unused_import_braces,
  unused_qualifications,
  unreachable_pub,
  type_alias_bounds,
  trivial_bounds,
  mutable_transmutes,
  invalid_value,
  explicit_outlives_requirements,
  deprecated,
  clashing_extern_declarations,
  clippy::expect_used,
  clippy::explicit_deref_methods
)]
#![warn(clippy::cognitive_complexity)]
#![allow(
  missing_docs,
  clippy::large_enum_variant,
  missing_copy_implementations,
  clippy::missing_const_for_fn,
  clippy::enum_variant_names,
  clippy::exhaustive_enums,
  clippy::exhaustive_structs
)]

#[cfg(feature = "config")]
pub(crate) mod conversions;
pub mod helpers;
pub(crate) mod parse;

use std::collections::HashMap;

use num_traits::FromPrimitive;
use serde::{Deserialize, Serialize};
use serde_json::Value;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
#[serde(tag = "kind")]
/// Root configuration that can be any one of the possible Wick configuration formats.
pub enum WickConfig {
  /// A variant representing a [AppConfiguration] type.
  #[serde(rename = "wick/app@v1")]
  AppConfiguration(AppConfiguration),
  /// A variant representing a [ComponentConfiguration] type.
  #[serde(rename = "wick/component@v1")]
  ComponentConfiguration(ComponentConfiguration),
  /// A variant representing a [TypesConfiguration] type.
  #[serde(rename = "wick/types@v1")]
  TypesConfiguration(TypesConfiguration),
  /// A variant representing a [TestConfiguration] type.
  #[serde(rename = "wick/tests@v1")]
  TestConfiguration(TestConfiguration),
  /// A variant representing a [LockdownConfiguration] type.
  #[serde(rename = "wick/lockdown@v1")]
  LockdownConfiguration(LockdownConfiguration),
}

/// A liquid template. Liquid-JSON is a way of using Liquid templates in structured JSON-like data. See liquid's [homepage](https://shopify.github.io/liquid/) for more information.
#[allow(unused)]
pub type LiquidTemplate = String;

#[derive(Debug, Default, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Configuration for a standalone Wick application.
pub struct AppConfiguration {
  /// The application's name.

  #[serde(default)]
  pub name: String,
  /// Associated metadata for this application.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub metadata: Option<Metadata>,
  /// Details about the package for this application.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub package: Option<PackageDefinition>,
  /// Resources and configuration that the application and its components can access.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub resources: Vec<ResourceBinding>,
  /// Components that to import and make available to the application.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub import: Vec<ImportBinding>,
  /// Triggers to load and instantiate to drive the application&#x27;s behavior.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub triggers: Vec<TriggerDefinition>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Metadata to associate with an artifact.
pub struct Metadata {
  /// The version of the artifact.

  #[serde(default)]
  pub version: String,
  /// A list of the authors.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub authors: Vec<String>,
  /// A list of any vendors associated with the artifact.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub vendors: Vec<String>,
  /// A short description.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub description: Option<String>,
  /// Where to find documentation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub documentation: Option<String>,
  /// The license(s) for the artifact.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub licenses: Vec<String>,
  /// An icon to associate with the artifact.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub icon: Option<crate::v1::helpers::LocationReference>,
}

#[derive(Debug, Default, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Configuration for packaging and publishing Wick configurations.
pub struct PackageDefinition {
  /// The list of files and folders to be included with the package.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub files: Vec<crate::v1::helpers::Glob>,
  /// Configuration for publishing the package to a registry.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub registry: Option<RegistryDefinition>,
}

#[allow(non_snake_case)]
pub(crate) fn REGISTRY_DEFINITION_HOST() -> String {
  "registry.candle.dev".to_owned()
}

#[derive(Debug, Default, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct RegistryDefinition {
  /// The registry to publish to, e.g. registry.candle.dev

  #[serde(default = "REGISTRY_DEFINITION_HOST")]
  #[serde(alias = "registry")]
  pub host: String,
  /// The namespace on the registry. e.g.: [*your username*]

  #[serde(default)]
  pub namespace: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// An identifier bound to a resource.
pub struct ResourceBinding {
  /// The name of the binding.
  pub name: String,
  /// The resource to bind to.
  pub resource: ResourceDefinition,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// An identifier bound to an imported component or type manifest.
pub struct ImportBinding {
  /// The name of the binding.
  pub name: String,
  /// The import to bind to.
  pub component: ImportDefinition,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
#[serde(tag = "kind")]
/// The possible types of resources. Resources are system-level resources and sensitive configuration.
pub enum ResourceDefinition {
  /// A variant representing a [TcpPort] type.
  #[serde(rename = "wick/resource/tcpport@v1")]
  TcpPort(TcpPort),
  /// A variant representing a [UdpPort] type.
  #[serde(rename = "wick/resource/udpport@v1")]
  UdpPort(UdpPort),
  /// A variant representing a [Url] type.
  #[serde(rename = "wick/resource/url@v1")]
  Url(Url),
  /// A variant representing a [Volume] type.
  #[serde(rename = "wick/resource/volume@v1")]
  Volume(Volume),
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A TCP port to bind to.
pub struct TcpPort {
  /// The port to bind to.

  #[serde(default)]
  pub port: LiquidTemplate,
  /// The address to bind to.

  #[serde(default)]
  pub address: LiquidTemplate,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A UDP port to bind to.
pub struct UdpPort {
  /// The port to bind to.

  #[serde(default)]
  pub port: LiquidTemplate,
  /// The address to bind to.

  #[serde(default)]
  pub address: LiquidTemplate,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A filesystem or network volume resource.
pub struct Volume {
  /// The path.
  pub path: LiquidTemplate,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A URL configured as a resource.
pub struct Url {
  /// The url string.
  pub url: LiquidTemplate,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
#[serde(tag = "kind")]
/// Triggers that operate off events and translate environment data to components. Triggers are the way that Wick handles standard use cases and translates them into the component world.
pub enum TriggerDefinition {
  /// A variant representing a [CliTrigger] type.
  #[serde(rename = "wick/trigger/cli@v1")]
  CliTrigger(CliTrigger),
  /// A variant representing a [HttpTrigger] type.
  #[serde(rename = "wick/trigger/http@v1")]
  HttpTrigger(HttpTrigger),
  /// A variant representing a [TimeTrigger] type.
  #[serde(rename = "wick/trigger/time@v1")]
  TimeTrigger(TimeTrigger),
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A trigger that runs when an application is called via the command line.
pub struct CliTrigger {
  /// The operation that will act as the main entrypoint for this trigger.

  #[serde(serialize_with = "crate::v1::helpers::serialize_component_expression")]
  #[serde(deserialize_with = "crate::v1::parse::component_operation_syntax")]
  pub operation: ComponentOperationExpression,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A trigger that runs on a schedule similar to cron.
pub struct TimeTrigger {
  /// The schedule to run the trigger with.
  pub schedule: Schedule,
  /// The operation to execute on the schedule.

  #[serde(serialize_with = "crate::v1::helpers::serialize_component_expression")]
  #[serde(deserialize_with = "crate::v1::parse::component_operation_syntax")]
  pub operation: ComponentOperationExpression,
  /// Values passed to the operation as inputs

  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub payload: Vec<OperationInput>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Input to use when calling an operation
pub struct OperationInput {
  /// The name of the input.
  pub name: String,
  /// The value to pass.
  pub value: Value,
}

#[allow(non_snake_case)]
pub(crate) fn SCHEDULE_REPEAT() -> u16 {
  0
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// The schedule to run the Time trigger with.
pub struct Schedule {
  /// Schedule in cron format with second precision. See [cron.help](https://cron.help) for more information.
  pub cron: String,
  /// repeat &#x60;n&#x60; times. Use &#x60;0&#x60; to repeat indefinitely

  #[serde(default = "SCHEDULE_REPEAT")]
  pub repeat: u16,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A reference to an operation. This type can be shortened to <code>component_id::operation_name</code> with the short-form syntax.
pub struct ComponentOperationExpression {
  /// The component that exports the operation.

  #[serde(deserialize_with = "crate::v1::parse::component_shortform")]
  pub component: ComponentDefinition,
  /// The operation name.
  pub name: String,
  /// Configuration to pass to this operation on invocation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub with: Option<HashMap<String, liquid_json::LiquidJsonValue>>,
  /// Timeout (in milliseconds) to wait for the operation to complete. Use 0 to wait indefinitely.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub timeout: Option<u64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// An HTTP server that delegates to HTTP routers on every request.
pub struct HttpTrigger {
  /// The TcpPort resource to listen on for connections.
  pub resource: String,
  /// The router to handle incoming requests

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub routers: Vec<HttpRouter>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
#[serde(tag = "kind")]
/// The types of routers that can be configured on the HttpTrigger.
pub enum HttpRouter {
  /// A variant representing a [RawRouter] type.
  #[serde(rename = "wick/router/raw@v1")]
  RawRouter(RawRouter),
  /// A variant representing a [RestRouter] type.
  #[serde(rename = "wick/router/rest@v1")]
  RestRouter(RestRouter),
  /// A variant representing a [StaticRouter] type.
  #[serde(rename = "wick/router/static@v1")]
  StaticRouter(StaticRouter),
  /// A variant representing a [ProxyRouter] type.
  #[serde(rename = "wick/router/proxy@v1")]
  ProxyRouter(ProxyRouter),
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A router that proxies to the configured URL when the path matches.
pub struct ProxyRouter {
  /// The path that this router will trigger for.
  pub path: String,
  /// Middleware operations for this router.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub middleware: Option<Middleware>,
  /// The URL resource to proxy to.
  pub url: String,
  /// Whether or not to strip the router&#x27;s path from the proxied request.

  #[serde(default)]
  pub strip_path: bool,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A router that can be configured to delegate to specific operations on a per-route, per-method basis.
pub struct RestRouter {
  /// The path that this router will trigger for.
  pub path: String,
  /// Additional tools and services to enable.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub tools: Option<Tools>,
  /// Middleware operations for this router.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub middleware: Option<Middleware>,
  /// The routes to serve and operations that handle them.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub routes: Vec<Route>,
  /// Information about the router to use when generating documentation and other tools.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub info: Option<Info>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A route to serve and the operation that handles it.
pub struct Route {
  /// The path to serve this route from. See [URI documentation](/docs/configuration/uri) for more information on specifying query and path parameters.

  #[serde(alias = "uri")]
  pub sub_path: String,
  /// The operation that will act as the main entrypoint for this route.

  #[serde(serialize_with = "crate::v1::helpers::serialize_component_expression")]
  #[serde(deserialize_with = "crate::v1::parse::component_operation_syntax")]
  pub operation: ComponentOperationExpression,
  /// The HTTP methods to serve this route for.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub methods: Vec<HttpMethod>,
  /// The unique ID of the route, used for documentation and tooling.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub id: Option<String>,
  /// A short description of the route.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub description: Option<String>,
  /// A longer description of the route.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub summary: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Additional tools and services to enable.
pub struct Tools {
  /// Set to true to generate an OpenAPI specification and serve it at *router_path*/openapi.json

  #[serde(default)]
  pub openapi: bool,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Information about the router to use when generating documentation and other tools.
pub struct Info {
  /// The title of the API.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub title: Option<String>,
  /// A short description of the API.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub description: Option<String>,
  /// The terms of service for the API.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub tos: Option<String>,
  /// The contact information for the API.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub contact: Option<Contact>,
  /// The license information for the API.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub license: Option<License>,
  /// The version of the API.

  #[serde(default)]
  pub version: String,
  /// The URL to the API&#x27;s terms of service.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub documentation: Option<Documentation>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Information about where and how the API is documented.
pub struct Documentation {
  /// The URL to the API&#x27;s documentation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub url: Option<String>,
  /// A short description of the documentation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub description: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Any licensing information for the API.
pub struct License {
  /// The name of the license.
  pub name: String,
  /// The URL to the license.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub url: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Contact information to expose for the API.
pub struct Contact {
  /// The name of the contact.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub name: Option<String>,
  /// The URL to the contact.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub url: Option<String>,
  /// The email address of the contact.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub email: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A router that serves static files.
pub struct StaticRouter {
  /// The path that this router will trigger for.
  pub path: String,
  /// Middleware operations for this router.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub middleware: Option<Middleware>,
  /// The volume to serve static files from.
  pub volume: String,
  /// Fallback path (relative to volume &#x60;resource&#x60;) for files to serve in case of a 404. Useful for SPA&#x27;s. if volume resource is: /www and fallback: index.html, then a 404 will serve /www/index.html

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub fallback: Option<String>,
  /// Whether or not to serve directory listings when a directory is requested.

  #[serde(default)]
  pub indexes: bool,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A router that delegates all requests to the configured operation, optionally encoding/decoding based on the specified codec.
pub struct RawRouter {
  /// The path that this router will trigger for.
  pub path: String,
  /// Middleware operations for this router.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub middleware: Option<Middleware>,
  /// The codec to use when encoding/decoding data.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub codec: Option<Codec>,
  /// The operation that handles HTTP requests.

  #[serde(serialize_with = "crate::v1::helpers::serialize_component_expression")]
  #[serde(deserialize_with = "crate::v1::parse::component_operation_syntax")]
  pub operation: ComponentOperationExpression,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Request and response operations that run before and after the main operation.
pub struct Middleware {
  /// The middleware to apply to requests.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  #[serde(deserialize_with = "crate::v1::parse::vec_component_operation")]
  pub request: Vec<ComponentOperationExpression>,
  /// The middleware to apply to responses.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  #[serde(deserialize_with = "crate::v1::parse::vec_component_operation")]
  pub response: Vec<ComponentOperationExpression>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A type definition for a Wick Components and Operations
pub struct TypesConfiguration {
  /// The name of this type.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub name: Option<String>,
  /// Associated metadata for this type.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub metadata: Option<Metadata>,
  /// Additional types to export and make available to the type.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub types: Vec<TypeDefinition>,
  /// A list of operation signatures.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub operations: Vec<OperationDefinition>,
  /// Details about the package for this types.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub package: Option<PackageDefinition>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A configuration for a Wick Component
pub struct TestConfiguration {
  /// The name of this component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub name: Option<String>,
  /// Configuration used to instantiate this component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub with: Option<HashMap<String, liquid_json::LiquidJsonValue>>,
  /// Unit tests to run against components and operations.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub cases: Vec<TestDefinition>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A lockdown configuration used to secure Wick components and applications
pub struct LockdownConfiguration {
  /// Associated metadata for this configuration.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub metadata: Option<Metadata>,
  /// Restrictions to apply to resources before an application or component can be run.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub resources: Vec<ResourceRestriction>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
#[serde(tag = "kind")]
/// Restrictions to assert against an application or component.
pub enum ResourceRestriction {
  /// A variant representing a [VolumeRestriction] type.
  #[serde(rename = "wick/resource/volume@v1")]
  VolumeRestriction(VolumeRestriction),
  /// A variant representing a [UrlRestriction] type.
  #[serde(rename = "wick/resource/url@v1")]
  UrlRestriction(UrlRestriction),
  /// A variant representing a [TcpPortRestriction] type.
  #[serde(rename = "wick/resource/tcpport@v1")]
  TcpPortRestriction(TcpPortRestriction),
  /// A variant representing a [UdpPortRestriction] type.
  #[serde(rename = "wick/resource/udpport@v1")]
  UdpPortRestriction(UdpPortRestriction),
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Restrictions to apply against Volume resources
pub struct VolumeRestriction {
  /// The components this restriction applies to

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub components: Vec<String>,
  /// The volumes to allow
  pub allow: LiquidTemplate,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Restrictions to apply against URL resources
pub struct UrlRestriction {
  /// The components this restriction applies to

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub components: Vec<String>,
  /// The URLs to allow
  pub allow: LiquidTemplate,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Restrictions to apply against TCP Port resources
pub struct TcpPortRestriction {
  /// The components this restriction applies to

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub components: Vec<String>,
  /// The address to allow
  pub address: LiquidTemplate,
  /// The port to allow
  pub port: LiquidTemplate,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Restrictions to apply against UDP Port resources
pub struct UdpPortRestriction {
  /// The components this restriction applies to

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub components: Vec<String>,
  /// The address to allow
  pub address: LiquidTemplate,
  /// The port to allow
  pub port: LiquidTemplate,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A configuration for a Wick Component
pub struct ComponentConfiguration {
  /// The name of the component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub name: Option<String>,
  /// Associated metadata for this component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub metadata: Option<Metadata>,
  /// Details about the package for this component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub package: Option<PackageDefinition>,
  /// Configuration for when wick hosts this component as a service.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub host: Option<HostConfig>,
  /// Resources that the component can access.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub resources: Vec<ResourceBinding>,
  /// Components or types to import into this component&#x27;s scope.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub import: Vec<ImportBinding>,
  /// Additional types to export and make available to the component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub types: Vec<TypeDefinition>,
  /// Interfaces the component requires to operate.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub requires: Vec<InterfaceBinding>,
  /// Configuration specific to different kinds of components.
  pub component: ComponentKind,
  /// Assertions that can be run against the component to validate its behavior.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub tests: Vec<TestConfiguration>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// An interface bound to an ID. Used in the require/provide relationship between components.
pub struct InterfaceBinding {
  /// The name of the interface.
  pub name: String,
  /// The interface to bind to.
  pub interface: InterfaceDefinition,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A interface definition. Used as a signature that components can require or provide.
pub struct InterfaceDefinition {
  /// Types used by the interface&#x27;s operations

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub types: Vec<TypeDefinition>,
  /// A list of operations defined by this interface.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub operations: Vec<OperationDefinition>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A component made from connectiong other components.
pub struct CompositeComponentConfiguration {
  /// A list of operations exposed by the Composite component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub operations: Vec<CompositeOperationDefinition>,
  /// Configuration necessary to provide when instantiating the component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub with: Vec<Field>,
  /// A component or components whose operations you want to inherit from.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub extends: Vec<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A component whose implementation is a WasmRS WebAssembly module.
pub struct WasmComponentConfiguration {
  /// The path or OCI reference to the WebAssembly module

  #[serde(rename = "ref")]
  pub reference: crate::v1::helpers::LocationReference,
  /// Volumes to expose to the component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub volumes: Vec<ExposedVolume>,
  /// The default size to allocate to the component&#x27;s send/receive buffer.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub max_packet_size: Option<u32>,
  /// Configuration necessary to provide when instantiating the component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub with: Vec<Field>,
  /// A list of operations implemented by the WebAssembly module.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub operations: Vec<OperationDefinition>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Volumes to expose to a component and the internal paths they map to.
pub struct ExposedVolume {
  /// The resource ID of the volume.
  pub resource: String,
  /// The path to map it to in the component.
  pub path: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
#[serde(tag = "kind")]
/// Root component types. These are the components that can be instantiated and run.
pub enum ComponentKind {
  /// A variant representing a [WasmComponentConfiguration] type.
  #[serde(rename = "wick/component/wasmrs@v1")]
  WasmComponentConfiguration(WasmComponentConfiguration),
  /// A variant representing a [CompositeComponentConfiguration] type.
  #[serde(rename = "wick/component/composite@v1")]
  CompositeComponentConfiguration(CompositeComponentConfiguration),
  /// A variant representing a [SqlComponent] type.
  #[serde(rename = "wick/component/sql@v1")]
  SqlComponent(SqlComponent),
  /// A variant representing a [HttpClientComponent] type.
  #[serde(rename = "wick/component/http@v1")]
  HttpClientComponent(HttpClientComponent),
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
#[serde(tag = "kind")]
/// Types of possible imports.
pub enum ImportDefinition {
  /// A variant representing a [TypesComponent] type.
  #[serde(rename = "wick/component/types@v1")]
  TypesComponent(TypesComponent),
  /// A variant representing a [ManifestComponent] type.
  #[serde(rename = "wick/component/manifest@v1")]
  ManifestComponent(ManifestComponent),
  /// A variant representing a [SqlComponent] type.
  #[serde(rename = "wick/component/sql@v1")]
  SqlComponent(SqlComponent),
  /// A variant representing a [HttpClientComponent] type.
  #[serde(rename = "wick/component/http@v1")]
  HttpClientComponent(HttpClientComponent),
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
#[serde(tag = "kind")]
/// Component types used when referencing operations or linking components.
pub enum ComponentDefinition {
  /// A variant representing a [GrpcUrlComponent] type.
  #[serde(rename = "wick/component/grpc@v1")]
  GrpcUrlComponent(GrpcUrlComponent),
  /// A variant representing a [ManifestComponent] type.
  #[serde(rename = "wick/component/manifest@v1")]
  ManifestComponent(ManifestComponent),
  /// A variant representing a [ComponentReference] type.
  #[serde(rename = "wick/component/reference@v1")]
  ComponentReference(ComponentReference),
  /// A variant representing a [SqlComponent] type.
  #[serde(rename = "wick/component/sql@v1")]
  SqlComponent(SqlComponent),
  /// A variant representing a [HttpClientComponent] type.
  #[serde(rename = "wick/component/http@v1")]
  HttpClientComponent(HttpClientComponent),
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A types configuration to import into this component's scope.
pub struct TypesComponent {
  /// The URL (and optional tag) or local file path to find the types manifest.

  #[serde(rename = "ref")]
  pub reference: crate::v1::helpers::LocationReference,
  /// The types to import from the manifest.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub types: Vec<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A reference to a component in the application's scope.
pub struct ComponentReference {
  /// The id of the referenced component.
  pub id: String,
}

#[derive(Debug, Default, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Host configuration options.
pub struct HostConfig {
  /// Whether or not to allow the &#x60;:latest&#x60; tag on remote artifacts.

  #[serde(default)]
  pub allow_latest: bool,
  /// A list of registries to connect to insecurely (over HTTP vs HTTPS).

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub insecure_registries: Vec<String>,
  /// Configuration for the GRPC server.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub rpc: Option<HttpConfig>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Configuration for the GRPC service.
pub struct HttpConfig {
  /// Enable/disable the server.

  #[serde(default)]
  pub enabled: bool,
  /// The port to bind to.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub port: Option<u16>,
  /// The address to bind to.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub address: Option<String>,
  /// Path to pem file for TLS.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub pem: Option<crate::v1::helpers::LocationReference>,
  /// Path to key file for TLS.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub key: Option<crate::v1::helpers::LocationReference>,
  /// Path to CA file.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub ca: Option<crate::v1::helpers::LocationReference>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A component hosted as an independent microservice.
pub struct GrpcUrlComponent {
  /// The GRPC URL to connect to.
  pub url: String,
  /// Any configuration necessary for the component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub with: Option<HashMap<String, liquid_json::LiquidJsonValue>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A configuration defined in a Wick component manifest.
pub struct ManifestComponent {
  /// The URL (and optional tag) or local file path to find the manifest.

  #[serde(rename = "ref")]
  pub reference: crate::v1::helpers::LocationReference,
  /// Any configuration necessary for the component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub with: Option<HashMap<String, liquid_json::LiquidJsonValue>>,
  /// External components to provide to the referenced component.

  #[serde(default)]
  #[serde(skip_serializing_if = "HashMap::is_empty")]
  #[serde(deserialize_with = "crate::helpers::kv_deserializer")]
  pub provide: HashMap<String, String>,
  /// If applicable, the default size to allocate to the component&#x27;s send/receive buffer.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub max_packet_size: Option<u32>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Composite operations are operations whose implementations come from connecting other operations into a flow or series of pipelines.
pub struct CompositeOperationDefinition {
  /// The name of the operation.

  #[serde(default)]
  pub name: String,
  /// Any configuration required by the operation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub with: Vec<Field>,
  /// Types of the inputs to the operation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub inputs: Vec<Field>,
  /// Types of the outputs to the operation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub outputs: Vec<Field>,
  /// A map of IDs to specific operations.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub uses: Vec<OperationInstance>,
  /// A list of connections from operation to operation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  #[serde(deserialize_with = "crate::v1::parse::vec_connection")]
  pub flow: Vec<FlowExpression>,
  /// Additional &#x60;CompositeOperationDefinition&#x60;s to define as children.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub operations: Vec<CompositeOperationDefinition>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
#[serde(untagged)]
/// A flow operation, i.e. a connection from one operation's outputs to another's inputs.
pub enum FlowExpression {
  /// A variant representing a [ConnectionDefinition] type.
  #[serde(rename = "ConnectionDefinition")]
  ConnectionDefinition(ConnectionDefinition),
  /// A variant representing a [BlockExpression] type.
  #[serde(rename = "BlockExpression")]
  BlockExpression(BlockExpression),
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A list of FlowExpressions. Typically used only when expanding a shortform `FlowExpression` into multiple `FlowExpression`s.
pub struct BlockExpression {
  #[serde(skip_serializing_if = "Vec::is_empty")]
  #[serde(deserialize_with = "crate::v1::parse::vec_connection")]
  pub expressions: Vec<FlowExpression>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(into = "String")]
#[serde(deny_unknown_fields)]
/// A connection between Operations and their ports. This can be specified in short-form syntax.
pub struct ConnectionDefinition {
  /// An upstream operation&#x27;s output.
  pub from: ConnectionTargetDefinition,
  /// A downstream operation&#x27;s input.
  pub to: ConnectionTargetDefinition,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A connection target e.g. a specific input or output on an operation instance. This can be specified in shortform syntax.
pub struct ConnectionTargetDefinition {
  /// The instance ID of the component operation.
  pub instance: String,
  /// The operation&#x27;s input or output (depending on to/from).

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub port: Option<String>,
  /// The default value to provide on this connection in the event of an error.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub data: Option<HashMap<String, liquid_json::LiquidJsonValue>>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// An operation name and its input and output signatures
pub struct OperationDefinition {
  /// The name of the operation.

  #[serde(default)]
  pub name: String,
  /// Any configuration required by the operation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub with: Vec<Field>,
  /// Types of the inputs to the operation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub inputs: Vec<Field>,
  /// Types of the outputs to the operation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub outputs: Vec<Field>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Field definition with a name and type signature
pub struct Field {
  /// The name of the field.
  pub name: String,
  /// The type signature of the field.

  #[serde(rename = "type")]
  pub ty: TypeSignature,
  /// The description of the field.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub description: Option<String>,
}

#[derive(Debug, Clone, serde_with::DeserializeFromStr, Serialize, PartialEq)]
#[serde(deny_unknown_fields)]
#[serde(into = "String")]
#[serde(tag = "kind")]
pub enum TypeSignature {
  /// A variant representing a [I8] type.
  #[serde(rename = "I8")]
  I8(I8),
  /// A variant representing a [I16] type.
  #[serde(rename = "I16")]
  I16(I16),
  /// A variant representing a [I32] type.
  #[serde(rename = "I32")]
  I32(I32),
  /// A variant representing a [I64] type.
  #[serde(rename = "I64")]
  I64(I64),
  /// A variant representing a [U8] type.
  #[serde(rename = "U8")]
  U8(U8),
  /// A variant representing a [U16] type.
  #[serde(rename = "U16")]
  U16(U16),
  /// A variant representing a [U32] type.
  #[serde(rename = "U32")]
  U32(U32),
  /// A variant representing a [U64] type.
  #[serde(rename = "U64")]
  U64(U64),
  /// A variant representing a [F32] type.
  #[serde(rename = "F32")]
  F32(F32),
  /// A variant representing a [F64] type.
  #[serde(rename = "F64")]
  F64(F64),
  /// A variant representing a [Bool] type.
  #[serde(rename = "Bool")]
  Bool(Bool),
  /// A variant representing a [StringType] type.
  #[serde(rename = "StringType")]
  StringType(StringType),
  /// A variant representing a [Optional] type.
  #[serde(rename = "Optional")]
  Optional(Optional),
  /// A variant representing a [Datetime] type.
  #[serde(rename = "Datetime")]
  Datetime(Datetime),
  /// A variant representing a [Bytes] type.
  #[serde(rename = "Bytes")]
  Bytes(Bytes),
  /// A variant representing a [Custom] type.
  #[serde(rename = "Custom")]
  Custom(Custom),
  /// A variant representing a [List] type.
  #[serde(rename = "List")]
  List(List),
  /// A variant representing a [Map] type.
  #[serde(rename = "Map")]
  Map(Map),
  /// A variant representing a [Object] type.
  #[serde(rename = "Object")]
  Object(Object),
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct I8;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct I16;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct I32;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct I64;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct U8;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct U16;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct U32;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct U64;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct F32;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct F64;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct Bool;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct StringType;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct Datetime;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct Bytes;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct Custom {
  /// The name of the custom type.

  #[serde(default)]
  pub name: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct Optional {
  #[serde(rename = "type")]
  pub ty: Box<TypeSignature>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct List {
  #[serde(rename = "type")]
  pub ty: Box<TypeSignature>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct Map {
  pub key: Box<TypeSignature>,

  pub value: Box<TypeSignature>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct Object;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
#[serde(tag = "kind")]
/// A Struct or Enum type definition.
pub enum TypeDefinition {
  /// A variant representing a [StructSignature] type.
  #[serde(rename = "wick/type/struct@v1")]
  StructSignature(StructSignature),
  /// A variant representing a [EnumSignature] type.
  #[serde(rename = "wick/type/enum@v1")]
  EnumSignature(EnumSignature),
  /// A variant representing a [UnionSignature] type.
  #[serde(rename = "wick/type/union@v1")]
  UnionSignature(UnionSignature),
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A struct definition of named fields and types.
pub struct StructSignature {
  /// The name of the struct.

  #[serde(default)]
  pub name: String,
  /// The fields in this struct.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub fields: Vec<Field>,
  /// The description of the struct.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub description: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// An enum definition of named variants.
pub struct UnionSignature {
  /// The name of the union.

  #[serde(default)]
  pub name: String,
  /// The types in the union.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub types: Vec<TypeSignature>,
  /// The description of the union.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub description: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// An enum definition of named variants.
pub struct EnumSignature {
  /// The name of the enum.

  #[serde(default)]
  pub name: String,
  /// The variants in the enum.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub variants: Vec<EnumVariant>,
  /// The description of the enum.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub description: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// An enum variant.
pub struct EnumVariant {
  /// The name of the variant.

  #[serde(default)]
  pub name: String,
  /// The index of the variant.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub index: Option<u32>,
  /// The optional value of the variant.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub value: Option<String>,
  /// A description of the variant.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub description: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// An identifier bound to a component's operation.
pub struct OperationInstance {
  /// The name of the binding.
  pub name: String,
  /// The operation to bind to.

  #[serde(serialize_with = "crate::v1::helpers::serialize_component_expression")]
  #[serde(deserialize_with = "crate::v1::parse::component_operation_syntax")]
  pub operation: ComponentOperationExpression,
  /// Data to associate with the reference, if any.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub with: Option<HashMap<String, liquid_json::LiquidJsonValue>>,
  /// Timeout (in milliseconds) to wait for the operation to complete. Use 0 to wait indefinitely.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub timeout: Option<u64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A test case for a component's operation.
pub struct TestDefinition {
  /// The name of the test.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub name: Option<String>,
  /// The operaton to test.
  pub operation: String,
  /// Inherent data to use for the test.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub inherent: Option<InherentData>,
  /// The configuration for the operation, if any.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub with: Option<HashMap<String, liquid_json::LiquidJsonValue>>,
  /// The inputs to the test.

  #[serde(default)]
  #[serde(alias = "input")]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub inputs: Vec<PacketData>,
  /// The expected outputs of the operation.

  #[serde(default)]
  #[serde(alias = "output")]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub outputs: Vec<TestPacketData>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Data inherent to all invocations.
pub struct InherentData {
  /// A random seed, i.e. to initialize a random number generator.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub seed: Option<u64>,
  /// A timestamp.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub timestamp: Option<u64>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
#[serde(untagged)]
/// Either a success packet or an error packet.
pub enum PacketData {
  /// A variant representing a [SuccessPacket] type.
  #[serde(rename = "SuccessPacket")]
  SuccessPacket(SuccessPacket),
  /// A variant representing a [ErrorPacket] type.
  #[serde(rename = "ErrorPacket")]
  ErrorPacket(ErrorPacket),
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
#[serde(untagged)]
/// Packet assertions.
pub enum TestPacketData {
  /// A variant representing a [SuccessPacket] type.
  #[serde(rename = "SuccessPacket")]
  SuccessPacket(SuccessPacket),
  /// A variant representing a [PacketAssertionDef] type.
  #[serde(rename = "PacketAssertionDef")]
  PacketAssertionDef(PacketAssertionDef),
  /// A variant representing a [ErrorPacket] type.
  #[serde(rename = "ErrorPacket")]
  ErrorPacket(ErrorPacket),
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A simplified representation of a Wick data packet & payload, used when writing tests.
pub struct SuccessPacket {
  /// The name of the input or output this packet is going to or coming from.
  pub name: String,
  /// Any flags set on the packet. Deprecated, use &#x27;flag:&#x27; instead

  #[deprecated()]
  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub flags: Option<PacketFlags>,
  /// The flag set on the packet.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub flag: Option<PacketFlag>,
  /// The packet payload.

  #[serde(default)]
  #[serde(alias = "data")]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub value: Option<liquid_json::LiquidJsonValue>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A test case for a component's operation that uses loose equality for comparing data.
pub struct PacketAssertionDef {
  /// The name of the input or output this packet is going to or coming from.
  pub name: String,
  /// An assertion to test against the packet.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub assertions: Vec<PacketAssertion>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A packet assertion.
pub struct PacketAssertion {
  /// The optional path to a value in the packet to assert against.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub path: Option<String>,
  /// The operation to use when asserting against a packet.
  pub operator: AssertionOperator,
  /// A value or object combine with the operator to assert against a packet value.
  pub value: liquid_json::LiquidJsonValue,
}

#[derive(Debug, Clone, Serialize, Deserialize, Copy, PartialEq)]
#[serde(deny_unknown_fields)]
/// An operation that drives the logic in a packet assertion.
pub enum AssertionOperator {
  Equals = 0,
  LessThan = 1,
  GreaterThan = 2,
  Regex = 3,
  Contains = 4,
}

impl Default for AssertionOperator {
  fn default() -> Self {
    Self::from_u16(0).unwrap()
  }
}

impl FromPrimitive for AssertionOperator {
  fn from_i64(n: i64) -> Option<Self> {
    Some(match n {
      0 => Self::Equals,
      1 => Self::LessThan,
      2 => Self::GreaterThan,
      3 => Self::Regex,
      4 => Self::Contains,
      _ => {
        return None;
      }
    })
  }

  fn from_u64(n: u64) -> Option<Self> {
    Some(match n {
      0 => Self::Equals,
      1 => Self::LessThan,
      2 => Self::GreaterThan,
      3 => Self::Regex,
      4 => Self::Contains,
      _ => {
        return None;
      }
    })
  }
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
pub struct ErrorPacket {
  /// The name of the input or output this packet is going to or coming from.
  pub name: String,
  /// Any flags set on the packet. Deprecated, use &#x27;flag:&#x27; instead

  #[deprecated()]
  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub flags: Option<PacketFlags>,
  /// The flag set on the packet.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub flag: Option<PacketFlag>,
  /// The error message.
  pub error: LiquidTemplate,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// Flags set on a packet.
pub struct PacketFlags {
  /// Indicates the port should be considered closed.

  #[serde(default)]
  pub done: bool,
  /// Indicates the opening of a new substream context within the parent stream.

  #[serde(default)]
  pub open: bool,
  /// Indicates the closing of a substream context within the parent stream.

  #[serde(default)]
  pub close: bool,
}

#[derive(Debug, Clone, Serialize, Deserialize, Copy, PartialEq)]
#[serde(deny_unknown_fields)]
/// Possible flags that can be set on a packet.
pub enum PacketFlag {
  /// Indicates the port should be considered closed.
  Done = 0,
  /// Indicates the opening of a new substream context within the parent stream.
  Open = 1,
  /// Indicates the closing of a substream context within the parent stream.
  Close = 2,
}

impl Default for PacketFlag {
  fn default() -> Self {
    Self::from_u16(0).unwrap()
  }
}

impl FromPrimitive for PacketFlag {
  fn from_i64(n: i64) -> Option<Self> {
    Some(match n {
      0 => Self::Done,
      1 => Self::Open,
      2 => Self::Close,
      _ => {
        return None;
      }
    })
  }

  fn from_u64(n: u64) -> Option<Self> {
    Some(match n {
      0 => Self::Done,
      1 => Self::Open,
      2 => Self::Close,
      _ => {
        return None;
      }
    })
  }
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A dynamic component whose operations are SQL queries to a database.
pub struct SqlComponent {
  /// The connect string URL resource for the database.

  #[serde(default)]
  pub resource: String,
  /// Whether or not to use TLS.

  #[serde(default)]
  pub tls: bool,
  /// Configuration necessary to provide when instantiating the component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub with: Vec<Field>,
  /// A list of operations to expose on this component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub operations: Vec<SqlQueryKind>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
#[serde(untagged)]
pub enum SqlQueryKind {
  /// A variant representing a [SqlQueryOperationDefinition] type.
  #[serde(rename = "SqlQueryOperationDefinition")]
  SqlQueryOperationDefinition(SqlQueryOperationDefinition),
  /// A variant representing a [SqlExecOperationDefinition] type.
  #[serde(rename = "SqlExecOperationDefinition")]
  SqlExecOperationDefinition(SqlExecOperationDefinition),
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A dynamic operation whose implementation is a SQL query.
pub struct SqlQueryOperationDefinition {
  /// The name of the operation.

  #[serde(default)]
  pub name: String,
  /// Any configuration required by the operation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub with: Vec<Field>,
  /// Types of the inputs to the operation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub inputs: Vec<Field>,
  /// Types of the outputs to the operation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub outputs: Vec<Field>,
  /// The query to execute.
  pub query: String,
  /// The positional arguments to the query, defined as a list of input names.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub arguments: Vec<String>,
  /// What to do when an error occurs.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub on_error: Option<ErrorBehavior>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A dynamic operation whose implementation is a SQL query that returns the number of rows affected or failure.
pub struct SqlExecOperationDefinition {
  /// The name of the operation.

  #[serde(default)]
  pub name: String,
  /// Any configuration required by the operation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub with: Vec<Field>,
  /// Types of the inputs to the operation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub inputs: Vec<Field>,
  /// Types of the outputs to the operation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub outputs: Vec<Field>,
  /// The query to execute.
  pub exec: String,
  /// The positional arguments to the query, defined as a list of input names.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub arguments: Vec<String>,
  /// What to do when an error occurs.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub on_error: Option<ErrorBehavior>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Copy, PartialEq)]
#[serde(deny_unknown_fields)]
/// What to do when an error occurs.
pub enum ErrorBehavior {
  /// Errors will be ignored.
  Ignore = 0,
  /// The operation will commit what has succeeded.
  Commit = 1,
  /// The operation will rollback changes.
  Rollback = 2,
}

impl Default for ErrorBehavior {
  fn default() -> Self {
    Self::from_u16(0).unwrap()
  }
}

impl FromPrimitive for ErrorBehavior {
  fn from_i64(n: i64) -> Option<Self> {
    Some(match n {
      0 => Self::Ignore,
      1 => Self::Commit,
      2 => Self::Rollback,
      _ => {
        return None;
      }
    })
  }

  fn from_u64(n: u64) -> Option<Self> {
    Some(match n {
      0 => Self::Ignore,
      1 => Self::Commit,
      2 => Self::Rollback,
      _ => {
        return None;
      }
    })
  }
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A component whose operations are HTTP requests.
pub struct HttpClientComponent {
  /// The URL base to use.

  #[serde(default)]
  pub resource: String,
  /// The codec to use when encoding/decoding data. Can be overridden by individual operations.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub codec: Option<Codec>,
  /// Configuration necessary to provide when instantiating the component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub with: Vec<Field>,
  /// A list of operations to expose on this component.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub operations: Vec<HttpClientOperationDefinition>,
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(deny_unknown_fields)]
/// A dynamic operation whose implementation is an HTTP request. The outputs of HttpClientOperationDefinition are always `response` & `body`
pub struct HttpClientOperationDefinition {
  /// The name of the operation.

  #[serde(default)]
  pub name: String,
  /// Any configuration required by the operation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub with: Vec<Field>,
  /// Types of the inputs to the operation.

  #[serde(default)]
  #[serde(skip_serializing_if = "Vec::is_empty")]
  pub inputs: Vec<Field>,
  /// The HTTP method to use.

  #[serde(default)]
  pub method: HttpMethod,
  /// The codec to use when encoding/decoding data.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub codec: Option<Codec>,
  /// Any headers to add to the request.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub headers: Option<HashMap<String, Vec<String>>>,
  /// The body to send, processed as a structured JSON liquid template.

  #[serde(default)]
  #[serde(skip_serializing_if = "Option::is_none")]
  pub body: Option<liquid_json::LiquidJsonValue>,
  /// The path to append to our base URL, processed as a liquid template with each input as part of the template data.

  #[serde(default)]
  pub path: String,
}

#[derive(Debug, Clone, Serialize, Deserialize, Copy, PartialEq)]
#[serde(deny_unknown_fields)]
/// Codec to use when encoding/decoding data.
pub enum Codec {
  /// JSON data
  Json = 0,
  /// Raw bytes
  Raw = 1,
  /// Form Data
  FormData = 2,
  /// Raw text
  Text = 3,
}

impl Default for Codec {
  fn default() -> Self {
    Self::from_u16(0).unwrap()
  }
}

impl FromPrimitive for Codec {
  fn from_i64(n: i64) -> Option<Self> {
    Some(match n {
      0 => Self::Json,
      1 => Self::Raw,
      2 => Self::FormData,
      3 => Self::Text,
      _ => {
        return None;
      }
    })
  }

  fn from_u64(n: u64) -> Option<Self> {
    Some(match n {
      0 => Self::Json,
      1 => Self::Raw,
      2 => Self::FormData,
      3 => Self::Text,
      _ => {
        return None;
      }
    })
  }
}

#[derive(Debug, Clone, Serialize, Deserialize, Copy, PartialEq)]
#[serde(deny_unknown_fields)]
/// Supported HTTP methods
pub enum HttpMethod {
  /// GET method
  Get = 0,
  /// POST method
  Post = 1,
  /// PUT method
  Put = 2,
  /// DELETE method
  Delete = 3,
}

impl Default for HttpMethod {
  fn default() -> Self {
    Self::from_u16(0).unwrap()
  }
}

impl FromPrimitive for HttpMethod {
  fn from_i64(n: i64) -> Option<Self> {
    Some(match n {
      0 => Self::Get,
      1 => Self::Post,
      2 => Self::Put,
      3 => Self::Delete,
      _ => {
        return None;
      }
    })
  }

  fn from_u64(n: u64) -> Option<Self> {
    Some(match n {
      0 => Self::Get,
      1 => Self::Post,
      2 => Self::Put,
      3 => Self::Delete,
      _ => {
        return None;
      }
    })
  }
}