tensorlake 0.5.13

A Rust SDK for interacting with Tensorlake Cloud APIs.
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
use chrono::{DateTime, Utc};
use derive_builder::Builder;
use futures::Stream;
use reqwest::header::HeaderValue;
use serde::{Deserialize, Deserializer, Serialize};
use serde_json;
use std::{collections::HashMap, fmt::Display, pin::Pin};
use uuid::Uuid;

use crate::error::SdkError;

/// A custom DateTime<Utc> type that handles RFC3339 timestamps with missing 'Z' timezone indicator.
/// When deserializing, if the timestamp doesn't end with 'Z', it's automatically appended.
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize)]
#[serde(transparent)]
pub struct Rfc3339DateTime(DateTime<Utc>);

impl Rfc3339DateTime {
    pub fn now() -> Self {
        Self(Utc::now())
    }
}

impl From<DateTime<Utc>> for Rfc3339DateTime {
    fn from(value: DateTime<Utc>) -> Self {
        Self(value)
    }
}

impl Display for Rfc3339DateTime {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.0.to_rfc3339())
    }
}

impl<'de> Deserialize<'de> for Rfc3339DateTime {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: Deserializer<'de>,
    {
        let mut s = String::deserialize(deserializer)?;
        if !s.ends_with("Z") && !s.ends_with("+00:00") {
            s.push('Z');
        }

        DateTime::parse_from_rfc3339(&s)
            .map(|dt| Rfc3339DateTime(dt.with_timezone(&Utc)))
            .map_err(serde::de::Error::custom)
    }
}

impl std::ops::Deref for Rfc3339DateTime {
    type Target = DateTime<Utc>;

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

#[cfg(feature = "openapi")]
impl utoipa::PartialSchema for Rfc3339DateTime {
    fn schema() -> utoipa::openapi::RefOr<utoipa::openapi::Schema> {
        utoipa::openapi::RefOr::T(utoipa::openapi::Schema::Object(
            utoipa::openapi::ObjectBuilder::new()
                .schema_type(utoipa::openapi::schema::SchemaType::Type(
                    utoipa::openapi::schema::Type::String,
                ))
                .format(Some(utoipa::openapi::SchemaFormat::KnownFormat(
                    utoipa::openapi::KnownFormat::DateTime,
                )))
                .description(Some("RFC 3339 datetime"))
                .build(),
        ))
    }
}

#[cfg(feature = "openapi")]
impl utoipa::ToSchema for Rfc3339DateTime {
    fn name() -> std::borrow::Cow<'static, str> {
        std::borrow::Cow::Borrowed("Rfc3339DateTime")
    }
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, Builder)]
pub struct ApplicationManifest {
    #[builder(setter(into))]
    pub name: String,
    #[builder(setter(into), default)]
    pub description: String,
    #[builder(setter(into), default)]
    pub tags: HashMap<String, String>,
    #[builder(setter(into))]
    pub version: String,
    pub functions: HashMap<String, FunctionManifest>,
    pub entrypoint: Entrypoint,
}

impl ApplicationManifest {
    pub fn builder() -> ApplicationManifestBuilder {
        ApplicationManifestBuilder::default()
    }
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, Builder)]
pub struct Entrypoint {
    #[builder(setter(into))]
    pub function_name: String,
    #[builder(setter(into))]
    pub input_serializer: String,
    #[builder(setter(into))]
    pub output_serializer: String,
    #[builder(setter(into, strip_option), default)]
    pub output_type_hints_base64: Option<String>,
}

impl Entrypoint {
    pub fn builder() -> EntrypointBuilder {
        EntrypointBuilder::default()
    }
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, Builder)]
pub struct FunctionManifest {
    #[builder(setter(into))]
    pub name: String,
    #[builder(setter(into), default)]
    pub description: String,
    #[builder(default)]
    pub is_api: bool,
    #[builder(setter(into, strip_option), default)]
    pub secret_names: Vec<String>,
    #[builder(default)]
    pub initialization_timeout_sec: i32,
    #[builder(default)]
    pub timeout_sec: i32,
    pub resources: Resources,
    #[builder(default)]
    pub retry_policy: RetryPolicy,
    #[builder(setter(into, strip_option), default)]
    pub cache_key: Option<String>,
    #[builder(setter(into), default)]
    pub parameters: Vec<Parameter>,
    pub return_type: serde_json::Value,
    #[builder(default)]
    pub placement_constraints: PlacementConstraintsManifest,
    #[builder(default)]
    pub max_concurrency: i32,
}

impl FunctionManifest {
    pub fn builder() -> FunctionManifestBuilder {
        FunctionManifestBuilder::default()
    }
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, Builder)]
pub struct Resources {
    pub cpus: f64,
    pub memory_mb: i64,
    pub ephemeral_disk_mb: i64,
    #[builder(setter(into), default)]
    pub gpus: Vec<String>,
}

impl Resources {
    pub fn builder() -> ResourcesBuilder {
        ResourcesBuilder::default()
    }
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, Builder)]
pub struct RetryPolicy {
    pub max_retries: i32,
    pub initial_delay_sec: f64,
    pub max_delay_sec: f64,
    pub delay_multiplier: f64,
}

impl RetryPolicy {
    pub fn builder() -> RetryPolicyBuilder {
        RetryPolicyBuilder::default()
    }
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, Builder)]
pub struct PlacementConstraintsManifest {
    #[builder(setter(into), default)]
    pub filter_expressions: Vec<String>,
}

impl PlacementConstraintsManifest {
    pub fn builder() -> PlacementConstraintsManifestBuilder {
        PlacementConstraintsManifestBuilder::default()
    }
}

#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Builder)]
pub struct DataType {
    #[serde(rename = "type", skip_serializing_if = "Option::is_none")]
    #[builder(setter(into, strip_option), default)]
    pub typ: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(setter(into, strip_option), default)]
    pub items: Option<Box<DataType>>,
    #[serde(
        rename = "additionalProperties",
        skip_serializing_if = "Option::is_none"
    )]
    #[builder(setter(into, strip_option), default)]
    pub additional_properties: Option<Box<DataType>>,
    #[serde(rename = "anyOf", skip_serializing_if = "Option::is_none")]
    #[builder(setter(into, strip_option), default)]
    pub any_of: Option<Vec<DataType>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(setter(into, strip_option), default)]
    pub description: Option<String>,
    #[serde(rename = "default", skip_serializing_if = "Option::is_none")]
    #[builder(setter(into, strip_option), default)]
    pub default_value: Option<serde_json::Value>,
}

impl DataType {
    pub fn builder() -> DataTypeBuilder {
        DataTypeBuilder::default()
    }

    pub fn to_json_value(&self) -> Result<serde_json::Value, serde_json::Error> {
        serde_json::to_value(self)
    }

    pub fn to_json_string(&self) -> Result<String, serde_json::Error> {
        serde_json::to_string(self)
    }
}

#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, Builder)]
pub struct Parameter {
    #[builder(setter(into))]
    pub name: String,
    #[builder(setter(into, strip_option), default)]
    pub description: Option<String>,
    #[builder(setter(into), default = "true")]
    pub required: bool,
    #[builder(setter(into))]
    pub data_type: DataType,
}

impl Parameter {
    pub fn builder() -> ParameterBuilder {
        ParameterBuilder::default()
    }
}

#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct Allocation {
    pub attempt_number: i32,
    pub created_at: u128,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub execution_duration_ms: Option<i64>,
    pub executor_id: String,
    pub container_id: String,
    pub function_name: String,
    pub id: String,
    pub outcome: FunctionRunOutcome,
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct Application {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub created_at: Option<i64>,
    pub description: String,
    pub entrypoint: EntryPointManifest,
    pub functions: HashMap<String, ApplicationFunction>,
    pub name: String,
    #[serde(skip_deserializing, default)]
    pub namespace: String,
    pub tags: HashMap<String, String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tombstoned: Option<bool>,
    #[serde(skip_serializing, default)]
    pub state: Option<ApplicationState>,
    pub version: String,
}

#[derive(Clone, Default, Debug, PartialEq, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum ApplicationState {
    #[default]
    Active,
    Disabled {
        reason: String,
    },
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ApplicationFunction {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cache_key: Option<String>,
    pub description: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub initialization_timeout_sec: Option<i32>,
    pub max_concurrency: i32,
    pub name: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub parameters: Option<Vec<ParameterMetadata>>,
    pub placement_constraints: PlacementConstraints,
    pub resources: FunctionResources,
    pub retry_policy: NodeRetryPolicy,
    pub return_type: Option<serde_json::Value>,
    pub secret_names: Vec<String>,
    pub timeout_sec: i32,
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ApplicationRequests {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
    pub requests: Vec<ShallowRequest>,
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ApplicationsList {
    pub applications: Vec<Application>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cursor: Option<String>,
}

#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum CursorDirection {
    Forward,
    Backward,
}

impl std::fmt::Display for CursorDirection {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            CursorDirection::Forward => write!(f, "forward"),
            CursorDirection::Backward => write!(f, "backward"),
        }
    }
}

#[derive(Clone, Debug, PartialEq)]
pub struct DownloadOutput {
    pub content_length: Option<HeaderValue>,
    pub content_type: Option<HeaderValue>,
    pub content: bytes::Bytes,
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct EntryPointManifest {
    pub function_name: String,
    pub input_serializer: String,
    pub output_serializer: String,
    pub output_type_hints_base64: String,
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct FunctionResources {
    pub cpus: f64,
    pub gpus: Vec<GpuResources>,
    pub memory_mb: i64,
    pub ephemeral_disk_mb: i64,
}

#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct FunctionRun {
    pub created_at: u128,
    pub id: String,
    pub name: String,
    pub namespace: String,
    pub application: String,
    pub application_version: String,
    pub allocations: Vec<Allocation>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub outcome: Option<FunctionRunOutcome>,
    pub status: FunctionRunStatus,
}

#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
#[serde(rename_all = "lowercase")]
pub enum FunctionRunOutcome {
    #[serde(alias = "Unknown")]
    Unknown,
    #[serde(alias = "Undefined")]
    Undefined,
    #[serde(alias = "Success")]
    Success,
    #[serde(alias = "Failure")]
    Failure,
}

#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum FunctionRunStatus {
    #[serde(alias = "Pending")]
    Pending,
    #[serde(alias = "Enqueued")]
    Enqueued,
    #[serde(alias = "Running")]
    Running,
    #[serde(alias = "Completed")]
    Completed,
    #[serde(alias = "Failed")]
    Failed,
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GpuResources {
    pub count: u32,
    pub model: String,
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct NodeRetryPolicy {
    pub max_retries: i32,
    pub initial_delay_sec: f64,
    pub max_delay_sec: f64,
    pub delay_multiplier: f64,
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ParameterMetadata {
    pub data_type: serde_json::Value,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub default_value: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    pub name: String,
    pub required: bool,
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct PlacementConstraints {
    /// List of label filter expressions in the format "key=value", "key!=value", etc.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub locations: Option<Vec<String>>,
}

#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Request {
    pub id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub outcome: Option<RequestOutcome>,
    #[serde(skip_serializing_if = "Option::is_none", alias = "failureReason")]
    pub failure_reason: Option<RequestFailureReason>,
    #[serde(alias = "applicationVersion")]
    pub application_version: String,
    #[serde(alias = "createdAt")]
    pub created_at: u128,
    #[serde(skip_serializing_if = "Option::is_none", alias = "requestError")]
    pub request_error: Option<RequestError>,
    #[serde(alias = "functionRuns")]
    pub function_runs: Vec<FunctionRun>,
    #[serde(
        skip_serializing_if = "Vec::is_empty",
        default,
        alias = "progressUpdates"
    )]
    pub progress_updates: Vec<RequestStateChangeEvent>,
    #[serde(
        skip_serializing_if = "Option::is_none",
        default,
        alias = "updatesPaginationToken"
    )]
    pub updates_pagination_token: Option<String>,
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct RequestError {
    pub function_name: String,
    pub message: String,
}

#[derive(Clone, Debug, Eq, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
pub enum RequestFailureReason {
    #[serde(alias = "unknown")]
    Unknown,
    #[serde(alias = "internalerror", alias = "internal_error")]
    InternalError,
    #[serde(alias = "functionerror", alias = "function_error")]
    FunctionError,
    #[serde(alias = "requesterror", alias = "request_error")]
    RequestError,
    #[serde(alias = "nextfunctionnotfound", alias = "next_function_not_found")]
    NextFunctionNotFound,
    #[serde(alias = "constraintunsatisfiable", alias = "constraint_unsatisfiable")]
    ConstraintUnsatisfiable,
    #[serde(alias = "functiontimeout", alias = "function_timeout")]
    FunctionTimeout,
    #[serde(alias = "cancelled")]
    Cancelled,
    #[serde(alias = "outofmemory", alias = "out_of_memory")]
    OutOfMemory,
}

#[derive(Clone, Debug, Default, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
#[serde(rename_all = "lowercase")]
pub enum RequestOutcome {
    #[default]
    Unknown,
    Success,
    Failure(RequestFailureReason),
}

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ShallowRequest {
    pub created_at: i64,
    #[serde(rename = "id")]
    pub id: String,
}

#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct LogSignal {
    pub timestamp: u64,
    pub uuid: Uuid,
    pub namespace: String,
    pub application: String,
    #[serde(rename = "resourceAttributes")]
    pub resource_attributes: Vec<(String, String)>,
    pub body: String,
    #[serde(rename = "logAttributes")]
    pub log_attributes: String,
}

#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct EventsResponse {
    pub logs: Vec<LogSignal>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
}

pub trait RequestEventMetadata {
    fn namespace(&self) -> &str;
    fn application_name(&self) -> &str;
    fn application_version(&self) -> &str;
    fn request_id(&self) -> &str;
    fn created_at(&self) -> Option<&DateTime<Utc>>;
    fn set_created_at(&mut self, date: DateTime<Utc>);
}

#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
pub enum RequestStateChangeEvent {
    RequestStarted(RequestStartedEvent),
    FunctionRunCreated(FunctionRunCreated),
    /// Event emitted when a function run reaches its final outcome (after all retries exhausted or success)
    FunctionRunCompleted(FunctionRunCompleted),
    FunctionRunMatchedCache(FunctionRunMatchedCache),
    /// Event emitted when an allocation (execution attempt) is created and assigned to an executor
    AllocationCreated(AllocationCreated),
    /// Event emitted when an allocation (execution attempt) completes with an outcome
    AllocationCompleted(AllocationCompleted),
    RequestProgressUpdated(RequestProgressUpdated),
    RequestFinished(RequestFinishedEvent),
    // Legacy variants for backward compatibility
    #[serde(alias = "FunctionRunAssigned")]
    #[deprecated(note = "Use AllocationCreated instead")]
    FunctionRunAssigned(AllocationCreated),
}

impl RequestStateChangeEvent {
    #[allow(deprecated)]
    pub fn as_str(&self) -> &str {
        match self {
            RequestStateChangeEvent::RequestStarted(_) => "RequestStarted",
            RequestStateChangeEvent::FunctionRunCreated(_) => "FunctionRunCreated",
            RequestStateChangeEvent::FunctionRunCompleted(_) => "FunctionRunCompleted",
            RequestStateChangeEvent::FunctionRunMatchedCache(_) => "FunctionRunMatchedCache",
            RequestStateChangeEvent::AllocationCreated(_) => "AllocationCreated",
            RequestStateChangeEvent::AllocationCompleted(_) => "AllocationCompleted",
            RequestStateChangeEvent::RequestProgressUpdated(_) => "RequestProgressUpdated",
            RequestStateChangeEvent::RequestFinished(_) => "RequestFinished",
            // Legacy - maps to new name
            RequestStateChangeEvent::FunctionRunAssigned(_) => "AllocationCreated",
        }
    }

    pub fn is_terminal(&self) -> bool {
        matches!(self, RequestStateChangeEvent::RequestFinished(_))
    }

    #[allow(deprecated)]
    pub fn namespace(&self) -> &str {
        match self {
            RequestStateChangeEvent::RequestStarted(event) => event.namespace(),
            RequestStateChangeEvent::RequestFinished(event) => event.namespace(),
            RequestStateChangeEvent::FunctionRunCreated(event) => event.namespace(),
            RequestStateChangeEvent::FunctionRunCompleted(event) => event.namespace(),
            RequestStateChangeEvent::FunctionRunMatchedCache(event) => event.namespace(),
            RequestStateChangeEvent::AllocationCreated(event) => event.namespace(),
            RequestStateChangeEvent::AllocationCompleted(event) => event.namespace(),
            RequestStateChangeEvent::RequestProgressUpdated(event) => event.namespace(),
            RequestStateChangeEvent::FunctionRunAssigned(event) => event.namespace(),
        }
    }

    #[allow(deprecated)]
    pub fn application_name(&self) -> &str {
        match self {
            RequestStateChangeEvent::RequestStarted(event) => event.application_name(),
            RequestStateChangeEvent::RequestFinished(event) => event.application_name(),
            RequestStateChangeEvent::FunctionRunCreated(event) => event.application_name(),
            RequestStateChangeEvent::FunctionRunCompleted(event) => event.application_name(),
            RequestStateChangeEvent::FunctionRunMatchedCache(event) => event.application_name(),
            RequestStateChangeEvent::AllocationCreated(event) => event.application_name(),
            RequestStateChangeEvent::AllocationCompleted(event) => event.application_name(),
            RequestStateChangeEvent::RequestProgressUpdated(event) => event.application_name(),
            RequestStateChangeEvent::FunctionRunAssigned(event) => event.application_name(),
        }
    }

    #[allow(deprecated)]
    pub fn application_version(&self) -> &str {
        match self {
            RequestStateChangeEvent::RequestStarted(event) => event.application_version(),
            RequestStateChangeEvent::RequestFinished(event) => event.application_version(),
            RequestStateChangeEvent::FunctionRunCreated(event) => event.application_version(),
            RequestStateChangeEvent::FunctionRunCompleted(event) => event.application_version(),
            RequestStateChangeEvent::FunctionRunMatchedCache(event) => event.application_version(),
            RequestStateChangeEvent::AllocationCreated(event) => event.application_version(),
            RequestStateChangeEvent::AllocationCompleted(event) => event.application_version(),
            RequestStateChangeEvent::RequestProgressUpdated(event) => event.application_version(),
            RequestStateChangeEvent::FunctionRunAssigned(event) => event.application_version(),
        }
    }

    #[allow(deprecated)]
    pub fn request_id(&self) -> &str {
        match self {
            RequestStateChangeEvent::RequestStarted(event) => event.request_id(),
            RequestStateChangeEvent::RequestFinished(event) => event.request_id(),
            RequestStateChangeEvent::FunctionRunCreated(event) => event.request_id(),
            RequestStateChangeEvent::FunctionRunCompleted(event) => event.request_id(),
            RequestStateChangeEvent::FunctionRunMatchedCache(event) => event.request_id(),
            RequestStateChangeEvent::AllocationCreated(event) => event.request_id(),
            RequestStateChangeEvent::AllocationCompleted(event) => event.request_id(),
            RequestStateChangeEvent::RequestProgressUpdated(event) => event.request_id(),
            RequestStateChangeEvent::FunctionRunAssigned(event) => event.request_id(),
        }
    }

    #[allow(deprecated)]
    pub fn created_at(&self) -> Option<&DateTime<Utc>> {
        match self {
            RequestStateChangeEvent::RequestStarted(event) => event.created_at(),
            RequestStateChangeEvent::RequestFinished(event) => event.created_at(),
            RequestStateChangeEvent::FunctionRunCreated(event) => event.created_at(),
            RequestStateChangeEvent::FunctionRunCompleted(event) => event.created_at(),
            RequestStateChangeEvent::FunctionRunMatchedCache(event) => event.created_at(),
            RequestStateChangeEvent::AllocationCreated(event) => event.created_at(),
            RequestStateChangeEvent::AllocationCompleted(event) => event.created_at(),
            RequestStateChangeEvent::RequestProgressUpdated(event) => event.created_at(),
            RequestStateChangeEvent::FunctionRunAssigned(event) => event.created_at(),
        }
    }

    #[allow(deprecated)]
    pub fn set_created_at(&mut self, date: DateTime<Utc>) {
        match self {
            RequestStateChangeEvent::RequestStarted(event) => event.set_created_at(date),
            RequestStateChangeEvent::RequestFinished(event) => event.set_created_at(date),
            RequestStateChangeEvent::FunctionRunCreated(event) => event.set_created_at(date),
            RequestStateChangeEvent::FunctionRunCompleted(event) => event.set_created_at(date),
            RequestStateChangeEvent::FunctionRunMatchedCache(event) => event.set_created_at(date),
            RequestStateChangeEvent::AllocationCreated(event) => event.set_created_at(date),
            RequestStateChangeEvent::AllocationCompleted(event) => event.set_created_at(date),
            RequestStateChangeEvent::RequestProgressUpdated(event) => event.set_created_at(date),
            RequestStateChangeEvent::FunctionRunAssigned(event) => event.set_created_at(date),
        }
    }

    #[allow(deprecated)]
    pub fn message(&self) -> &str {
        match self {
            RequestStateChangeEvent::RequestStarted(_) => "Request Started",
            RequestStateChangeEvent::RequestFinished(_) => "Request Finished",
            RequestStateChangeEvent::FunctionRunCreated(_) => "Function Run Created",
            RequestStateChangeEvent::FunctionRunCompleted(_) => "Function Run Completed",
            RequestStateChangeEvent::FunctionRunMatchedCache(_) => {
                "Function Run Matched a Cached output"
            }
            RequestStateChangeEvent::AllocationCreated(_) => "Allocation Created",
            RequestStateChangeEvent::AllocationCompleted(_) => "Allocation Completed",
            RequestStateChangeEvent::RequestProgressUpdated(_) => "Request Progress Updated",
            // Legacy - maps to new message
            RequestStateChangeEvent::FunctionRunAssigned(_) => "Allocation Created",
        }
    }
}

#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
#[serde(untagged)]
pub enum StringKind {
    String(String),
    Unknown(serde_json::Value),
}

impl StringKind {
    pub fn as_str(&self) -> Option<&str> {
        match self {
            StringKind::String(value) => Some(value),
            _ => None,
        }
    }
}

impl Default for StringKind {
    fn default() -> Self {
        StringKind::String(String::new())
    }
}

#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
#[serde(untagged)]
pub enum FloatKind {
    Float(f64),
    String(String),
    Unknown(serde_json::Value),
}

impl FloatKind {
    pub fn as_f64(&self) -> Option<f64> {
        match self {
            FloatKind::Float(value) => Some(*value),
            FloatKind::String(value) => value.parse().ok(),
            _ => None,
        }
    }
}

#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
#[non_exhaustive]
pub struct RequestProgressUpdated {
    #[serde(default, skip_serializing_if = "String::is_empty")]
    pub namespace: String,
    #[serde(default, skip_serializing_if = "String::is_empty")]
    pub application_name: String,
    #[serde(default)]
    pub application_version: String,
    pub request_id: String,
    #[serde(default)]
    pub function_name: String,
    #[serde(default)]
    pub function_run_id: String,
    #[serde(default)]
    pub allocation_id: String,
    #[serde(default)]
    pub message: StringKind,
    #[serde(default)]
    pub step: Option<FloatKind>,
    #[serde(default)]
    pub total: Option<FloatKind>,
    #[serde(default)]
    pub attributes: Option<serde_json::Value>,
    #[serde(default)]
    pub created_at: Option<Rfc3339DateTime>,
}

impl RequestEventMetadata for RequestProgressUpdated {
    fn namespace(&self) -> &str {
        &self.namespace
    }

    fn application_name(&self) -> &str {
        &self.application_name
    }

    fn application_version(&self) -> &str {
        &self.application_version
    }

    fn request_id(&self) -> &str {
        &self.request_id
    }

    fn created_at(&self) -> Option<&DateTime<Utc>> {
        self.created_at.as_ref().map(|rfc| &rfc.0)
    }

    fn set_created_at(&mut self, date: DateTime<Utc>) {
        self.created_at = Some(Rfc3339DateTime(date));
    }
}

#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
pub struct RequestFinishedEvent {
    pub namespace: String,
    pub application_name: String,
    pub application_version: String,
    pub request_id: String,
    #[serde(default)]
    pub outcome: RequestOutcome,
    #[serde(default)]
    pub created_at: Option<Rfc3339DateTime>,
}

impl RequestEventMetadata for RequestFinishedEvent {
    fn namespace(&self) -> &str {
        &self.namespace
    }

    fn application_name(&self) -> &str {
        &self.application_name
    }

    fn application_version(&self) -> &str {
        &self.application_version
    }

    fn request_id(&self) -> &str {
        &self.request_id
    }

    fn created_at(&self) -> Option<&DateTime<Utc>> {
        self.created_at.as_ref().map(|rfc| &rfc.0)
    }

    fn set_created_at(&mut self, date: DateTime<Utc>) {
        self.created_at = Some(Rfc3339DateTime(date));
    }
}

#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
pub struct RequestStartedEvent {
    pub namespace: String,
    pub application_name: String,
    pub application_version: String,
    pub request_id: String,
    #[serde(default)]
    pub created_at: Option<Rfc3339DateTime>,
}

impl RequestEventMetadata for RequestStartedEvent {
    fn namespace(&self) -> &str {
        &self.namespace
    }

    fn application_name(&self) -> &str {
        &self.application_name
    }

    fn application_version(&self) -> &str {
        &self.application_version
    }

    fn request_id(&self) -> &str {
        &self.request_id
    }

    fn created_at(&self) -> Option<&DateTime<Utc>> {
        self.created_at.as_ref().map(|rfc| &rfc.0)
    }

    fn set_created_at(&mut self, date: DateTime<Utc>) {
        self.created_at = Some(Rfc3339DateTime(date));
    }
}

#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
pub struct FunctionRunCreated {
    pub namespace: String,
    pub application_name: String,
    pub application_version: String,
    pub request_id: String,
    pub function_name: String,
    pub function_run_id: String,
    #[serde(default)]
    pub created_at: Option<Rfc3339DateTime>,
}

impl RequestEventMetadata for FunctionRunCreated {
    fn namespace(&self) -> &str {
        &self.namespace
    }

    fn application_name(&self) -> &str {
        &self.application_name
    }

    fn application_version(&self) -> &str {
        &self.application_version
    }

    fn request_id(&self) -> &str {
        &self.request_id
    }

    fn created_at(&self) -> Option<&DateTime<Utc>> {
        self.created_at.as_ref().map(|rfc| &rfc.0)
    }

    fn set_created_at(&mut self, date: DateTime<Utc>) {
        self.created_at = Some(Rfc3339DateTime(date));
    }
}

/// Event emitted when an allocation (execution attempt) is created and assigned to an executor
#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
pub struct AllocationCreated {
    pub namespace: String,
    pub application_name: String,
    pub application_version: String,
    pub request_id: String,
    pub function_name: String,
    pub function_run_id: String,
    pub allocation_id: String,
    pub executor_id: String,
    #[serde(default)]
    pub created_at: Option<Rfc3339DateTime>,
}

impl RequestEventMetadata for AllocationCreated {
    fn namespace(&self) -> &str {
        &self.namespace
    }

    fn application_name(&self) -> &str {
        &self.application_name
    }

    fn application_version(&self) -> &str {
        &self.application_version
    }

    fn request_id(&self) -> &str {
        &self.request_id
    }

    fn created_at(&self) -> Option<&DateTime<Utc>> {
        self.created_at.as_ref().map(|rfc| &rfc.0)
    }

    fn set_created_at(&mut self, date: DateTime<Utc>) {
        self.created_at = Some(Rfc3339DateTime(date));
    }
}

/// @deprecated Use AllocationCreated instead
pub type FunctionRunAssigned = AllocationCreated;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
#[serde(rename_all = "lowercase")]
pub enum FunctionRunOutcomeSummary {
    Unknown,
    Success,
    Failure,
}

/// Event emitted when a function run reaches its final outcome (after all retries exhausted or success)
///
/// Note: In older server versions (before allocation/function-run lifecycle split),
/// this event included `allocation_id`. For backward compatibility, `allocation_id`
/// is kept as an optional field. New server versions will not include it.
#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
pub struct FunctionRunCompleted {
    pub namespace: String,
    pub application_name: String,
    pub application_version: String,
    pub request_id: String,
    pub function_name: String,
    pub function_run_id: String,
    /// Optional for backward compatibility with older servers.
    /// New servers (with allocation lifecycle) won't include this field.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub allocation_id: Option<String>,
    pub outcome: FunctionRunOutcomeSummary,
    #[serde(default)]
    pub created_at: Option<Rfc3339DateTime>,
}

impl RequestEventMetadata for FunctionRunCompleted {
    fn namespace(&self) -> &str {
        &self.namespace
    }

    fn application_name(&self) -> &str {
        &self.application_name
    }

    fn application_version(&self) -> &str {
        &self.application_version
    }

    fn request_id(&self) -> &str {
        &self.request_id
    }

    fn created_at(&self) -> Option<&DateTime<Utc>> {
        self.created_at.as_ref().map(|rfc| &rfc.0)
    }

    fn set_created_at(&mut self, date: DateTime<Utc>) {
        self.created_at = Some(Rfc3339DateTime(date));
    }
}

/// Event emitted when an allocation (execution attempt) completes with an outcome
#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
pub struct AllocationCompleted {
    pub namespace: String,
    pub application_name: String,
    pub application_version: String,
    pub request_id: String,
    pub function_name: String,
    pub function_run_id: String,
    pub allocation_id: String,
    pub outcome: FunctionRunOutcomeSummary,
    #[serde(default)]
    pub created_at: Option<Rfc3339DateTime>,
}

impl RequestEventMetadata for AllocationCompleted {
    fn namespace(&self) -> &str {
        &self.namespace
    }

    fn application_name(&self) -> &str {
        &self.application_name
    }

    fn application_version(&self) -> &str {
        &self.application_version
    }

    fn request_id(&self) -> &str {
        &self.request_id
    }

    fn created_at(&self) -> Option<&DateTime<Utc>> {
        self.created_at.as_ref().map(|rfc| &rfc.0)
    }

    fn set_created_at(&mut self, date: DateTime<Utc>) {
        self.created_at = Some(Rfc3339DateTime(date));
    }
}

#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
pub struct FunctionRunMatchedCache {
    pub namespace: String,
    pub application_name: String,
    pub application_version: String,
    pub request_id: String,
    pub function_name: String,
    pub function_run_id: String,
    #[serde(default)]
    pub created_at: Option<Rfc3339DateTime>,
}

impl RequestEventMetadata for FunctionRunMatchedCache {
    fn namespace(&self) -> &str {
        &self.namespace
    }

    fn application_name(&self) -> &str {
        &self.application_name
    }

    fn application_version(&self) -> &str {
        &self.application_version
    }

    fn request_id(&self) -> &str {
        &self.request_id
    }

    fn created_at(&self) -> Option<&DateTime<Utc>> {
        self.created_at.as_ref().map(|rfc| &rfc.0)
    }

    fn set_created_at(&mut self, date: DateTime<Utc>) {
        self.created_at = Some(Rfc3339DateTime(date));
    }
}

#[derive(Builder, Debug)]
pub struct CheckFunctionOutputRequest {
    #[builder(setter(into))]
    pub namespace: String,
    #[builder(setter(into))]
    pub application: String,
    #[builder(setter(into))]
    pub request_id: String,
}

impl CheckFunctionOutputRequest {
    pub fn builder() -> CheckFunctionOutputRequestBuilder {
        CheckFunctionOutputRequestBuilder::default()
    }
}

#[derive(Builder, Debug)]
pub struct DeleteApplicationRequest {
    #[builder(setter(into))]
    pub namespace: String,
    #[builder(setter(into))]
    pub application: String,
}

impl DeleteApplicationRequest {
    pub fn builder() -> DeleteApplicationRequestBuilder {
        DeleteApplicationRequestBuilder::default()
    }
}

#[derive(Builder, Debug)]
pub struct DeleteFunctionRequest {
    #[builder(setter(into))]
    pub namespace: String,
    #[builder(setter(into))]
    pub application: String,
    #[builder(setter(into))]
    pub function_name: String,
}

impl DeleteFunctionRequest {
    pub fn builder() -> DeleteFunctionRequestBuilder {
        DeleteFunctionRequestBuilder::default()
    }
}

#[derive(Builder, Debug)]
pub struct DeleteRequestRequest {
    #[builder(setter(into))]
    pub namespace: String,
    #[builder(setter(into))]
    pub application: String,
    #[builder(setter(into))]
    pub request_id: String,
}

impl DeleteRequestRequest {
    pub fn builder() -> DeleteRequestRequestBuilder {
        DeleteRequestRequestBuilder::default()
    }
}

#[derive(Builder, Debug)]
pub struct DownloadFunctionOutputRequest {
    #[builder(setter(into))]
    pub namespace: String,
    #[builder(setter(into))]
    pub application: String,
    #[builder(setter(into))]
    pub request_id: String,
    #[builder(setter(into))]
    pub function_call_id: String,
}

impl DownloadFunctionOutputRequest {
    pub fn builder() -> DownloadFunctionOutputRequestBuilder {
        DownloadFunctionOutputRequestBuilder::default()
    }
}

#[derive(Builder, Debug)]
pub struct DownloadRequestOutputRequest {
    #[builder(setter(into))]
    pub namespace: String,
    #[builder(setter(into))]
    pub application: String,
    #[builder(setter(into))]
    pub request_id: String,
}

impl DownloadRequestOutputRequest {
    pub fn builder() -> DownloadRequestOutputRequestBuilder {
        DownloadRequestOutputRequestBuilder::default()
    }
}

#[derive(Builder, Debug)]
pub struct GetApplicationRequest {
    #[builder(setter(into))]
    pub namespace: String,
    #[builder(setter(into))]
    pub application: String,
}

impl GetApplicationRequest {
    pub fn builder() -> GetApplicationRequestBuilder {
        GetApplicationRequestBuilder::default()
    }
}

#[derive(Builder, Debug)]
pub struct GetRequestRequest {
    #[builder(setter(into))]
    pub namespace: String,
    #[builder(setter(into))]
    pub application: String,
    #[builder(setter(into))]
    pub request_id: String,
    #[builder(setter(into, strip_option), default)]
    pub updates_pagination_token: Option<String>,
}

impl GetRequestRequest {
    pub fn builder() -> GetRequestRequestBuilder {
        GetRequestRequestBuilder::default()
    }
}

#[derive(Builder, Debug)]
pub struct InvokeApplicationRequest {
    #[builder(setter(into))]
    pub namespace: String,
    #[builder(setter(into))]
    pub application: String,
    pub body: serde_json::Value,
}

impl InvokeApplicationRequest {
    pub fn builder() -> InvokeApplicationRequestBuilder {
        InvokeApplicationRequestBuilder::default()
    }
}

/// Response from invoking an application
pub enum InvokeResponse {
    /// The request ID of the invocation
    RequestId(String),
    /// A stream of progress events
    Stream(Pin<Box<dyn Stream<Item = Result<RequestStateChangeEvent, SdkError>> + Send>>),
}

#[derive(Builder, Debug)]
pub struct ListApplicationsRequest {
    #[builder(setter(into))]
    pub namespace: String,
    #[builder(default, setter(strip_option))]
    pub limit: Option<i32>,
    #[builder(default, setter(into, strip_option))]
    pub cursor: Option<String>,
    #[builder(default, setter(strip_option))]
    pub direction: Option<CursorDirection>,
}

impl ListApplicationsRequest {
    pub fn builder() -> ListApplicationsRequestBuilder {
        ListApplicationsRequestBuilder::default()
    }
}

#[derive(Builder, Debug)]
pub struct ListRequestsRequest {
    #[builder(setter(into))]
    pub namespace: String,
    #[builder(setter(into))]
    pub application: String,
    #[builder(default, setter(strip_option))]
    pub limit: Option<i32>,
    #[builder(default, setter(into, strip_option))]
    pub cursor: Option<String>,
    #[builder(default, setter(strip_option))]
    pub direction: Option<CursorDirection>,
}

impl ListRequestsRequest {
    pub fn builder() -> ListRequestsRequestBuilder {
        ListRequestsRequestBuilder::default()
    }
}

#[derive(Builder, Debug)]
pub struct StreamProgressRequest {
    #[builder(setter(into))]
    pub namespace: String,
    #[builder(setter(into))]
    pub application: String,
    #[builder(setter(into))]
    pub request_id: String,
}

impl StreamProgressRequest {
    pub fn builder() -> StreamProgressRequestBuilder {
        StreamProgressRequestBuilder::default()
    }
}

#[derive(Builder, Debug)]
pub struct UpsertApplicationRequest {
    #[builder(setter(into))]
    pub namespace: String,
    pub application_manifest: ApplicationManifest,
    #[builder(setter(into))]
    pub code_zip: Vec<u8>,
}

impl UpsertApplicationRequest {
    pub fn builder() -> UpsertApplicationRequestBuilder {
        UpsertApplicationRequestBuilder::default()
    }
}

#[derive(Builder, Debug)]
pub struct GetLogsRequest {
    #[builder(setter(into))]
    pub namespace: String,
    #[builder(setter(into))]
    pub application: String,
    #[builder(default, setter(into, strip_option))]
    pub request_id: Option<String>,
    #[builder(default, setter(into, strip_option))]
    pub container_id: Option<String>,
    #[builder(default, setter(into, strip_option))]
    pub function: Option<String>,
    #[builder(default, setter(into, strip_option))]
    pub next_token: Option<String>,
    #[builder(default, setter(strip_option))]
    pub head: Option<usize>,
    #[builder(default, setter(strip_option))]
    pub tail: Option<usize>,
    #[builder(default, setter(into, strip_option))]
    pub ignore: Option<String>,
    #[builder(default, setter(into, strip_option))]
    pub function_executor: Option<String>,
}

impl GetLogsRequest {
    pub fn builder() -> GetLogsRequestBuilder {
        GetLogsRequestBuilder::default()
    }
}

#[derive(Builder, Clone, Debug)]
pub struct ProgressUpdatesRequest {
    #[builder(setter(into))]
    pub namespace: String,
    #[builder(setter(into))]
    pub application: String,
    #[builder(setter(into))]
    pub request_id: String,
    pub mode: ProgressUpdatesRequestMode,
}

#[derive(Clone, Debug)]
pub enum ProgressUpdatesRequestMode {
    Paginated(Option<String>),
    Stream,
}

impl ProgressUpdatesRequest {
    pub fn builder() -> ProgressUpdatesRequestBuilder {
        ProgressUpdatesRequestBuilder::default()
    }
}

type ProgressUpdatesStream =
    Pin<Box<dyn Stream<Item = Result<RequestStateChangeEvent, SdkError>> + Send>>;

pub enum ProgressUpdatesResponse {
    /// A JSON object containing progress updates
    Json(ProgressUpdatesJson),
    /// A stream of progress events
    Stream(ProgressUpdatesStream),
}

impl ProgressUpdatesResponse {
    /// Returns the JSON object containing progress updates.
    /// Use this function only if the `ProgressUpdatesRequestMode` was set to `ProgressUpdatesRequestMode::Paginated(_)`.
    ///
    /// This function panics if the response is a `ProgressUpdatesResponse::Stream`.
    pub fn json(&self) -> &ProgressUpdatesJson {
        match self {
            ProgressUpdatesResponse::Json(updates) => updates,
            _ => panic!(
                "Expected ProgressUpdatesResponse::Json, got ProgressUpdatesResponse::Stream"
            ),
        }
    }

    /// Returns the Stream containing progress updates.
    /// Use this function only if the `ProgressUpdatesRequestMode` was set to `ProgressUpdatesRequestMode::Stream`.
    ///
    /// This function panics if the response is a `ProgressUpdatesResponse::Json`.
    pub fn stream(&mut self) -> &mut ProgressUpdatesStream {
        match self {
            ProgressUpdatesResponse::Stream(stream) => stream,
            _ => panic!(
                "Expected ProgressUpdatesResponse::Stream, got ProgressUpdatesResponse::Json"
            ),
        }
    }
}

#[derive(Clone, Debug, Deserialize)]
pub struct ProgressUpdatesJson {
    pub updates: Vec<RequestStateChangeEvent>,
    pub next_token: Option<String>,
}

#[cfg(test)]
mod tests {
    use super::*;
    use chrono::Datelike;
    use serde_json::json;

    #[test]
    fn test_rfc3339_datetime_with_z() {
        let json = json!("2024-01-15T10:30:45Z");
        let result: Result<Rfc3339DateTime, _> = serde_json::from_value(json);
        assert!(result.is_ok());
    }

    #[test]
    fn test_rfc3339_datetime_without_z() {
        let json = json!("2024-01-15T10:30:45");
        let result: Result<Rfc3339DateTime, _> = serde_json::from_value(json);
        assert!(result.is_ok());
        let dt = result.unwrap();
        // Verify it was parsed correctly as UTC
        assert_eq!(dt.0.year(), 2024);
        assert_eq!(dt.0.month(), 1);
        assert_eq!(dt.0.day(), 15);
    }

    #[test]
    fn test_rfc3339_datetime_with_timezone_offset() {
        let json = json!("2024-01-15T10:30:45+00:00");
        let result: Result<Rfc3339DateTime, _> = serde_json::from_value(json);
        assert!(result.is_ok());
    }

    #[test]
    fn test_request_started_event_deserialization() {
        let json = json!({
            "namespace": "test",
            "application_name": "app",
            "application_version": "1.0",
            "request_id": "req-123",
            "created_at": "2024-01-15T10:30:45"
        });
        let result: Result<RequestStartedEvent, _> = serde_json::from_value(json);
        assert!(result.is_ok());
        let event = result.unwrap();
        assert!(event.created_at.is_some());
    }

    #[test]
    fn test_rfc3339_datetime_serialization() {
        // Test that serializing Rfc3339DateTime produces a plain string, not a nested struct
        let now = chrono::Utc::now();
        let rfc_dt = Rfc3339DateTime(now);
        let serialized = serde_json::to_value(rfc_dt).unwrap();

        // Should be a string, not an object
        assert!(
            serialized.is_string(),
            "Expected serialized DateTime to be a string, got: {:?}",
            serialized
        );

        // Should contain 'Z' at the end
        let date_str = serialized.as_str().unwrap();
        assert!(
            date_str.ends_with('Z'),
            "Expected 'Z' at end of serialized DateTime"
        );
    }

    #[test]
    fn test_request_started_event_serialization() {
        // Test that serializing an event doesn't nest the created_at field
        let event = RequestStartedEvent {
            namespace: "test".to_string(),
            application_name: "app".to_string(),
            application_version: "1.0".to_string(),
            request_id: "req-123".to_string(),
            created_at: Some(Rfc3339DateTime(Utc::now())),
        };

        let serialized = serde_json::to_value(&event).unwrap();
        let obj = serialized.as_object().unwrap();

        // created_at should be a string directly, not an object
        let created_at = &obj["created_at"];
        assert!(
            created_at.is_string(),
            "Expected created_at to be a string, got: {:?}",
            created_at
        );

        let date_str = created_at.as_str().unwrap();
        assert!(
            date_str.ends_with('Z'),
            "Expected 'Z' at end of created_at value"
        );
    }

    // Backward compatibility tests for allocation events (PR #2042)

    #[test]
    fn test_old_server_function_run_completed_with_allocation_id() {
        // Old server sends FunctionRunCompleted WITH allocation_id
        let json = json!({
            "FunctionRunCompleted": {
                "namespace": "test-ns",
                "application_name": "test-app",
                "application_version": "1.0",
                "request_id": "req-123",
                "function_name": "my-func",
                "function_run_id": "run-456",
                "allocation_id": "alloc-789",
                "outcome": "success"
            }
        });

        let result: Result<RequestStateChangeEvent, _> = serde_json::from_value(json);
        assert!(
            result.is_ok(),
            "Failed to deserialize old server FunctionRunCompleted: {:?}",
            result.err()
        );

        let event = result.unwrap();
        match event {
            RequestStateChangeEvent::FunctionRunCompleted(e) => {
                assert_eq!(e.allocation_id, Some("alloc-789".to_string()));
                assert_eq!(e.function_run_id, "run-456");
            }
            _ => panic!("Expected FunctionRunCompleted variant"),
        }
    }

    #[test]
    fn test_new_server_function_run_completed_without_allocation_id() {
        // New server sends FunctionRunCompleted WITHOUT allocation_id
        let json = json!({
            "FunctionRunCompleted": {
                "namespace": "test-ns",
                "application_name": "test-app",
                "application_version": "1.0",
                "request_id": "req-123",
                "function_name": "my-func",
                "function_run_id": "run-456",
                "outcome": "success"
            }
        });

        let result: Result<RequestStateChangeEvent, _> = serde_json::from_value(json);
        assert!(
            result.is_ok(),
            "Failed to deserialize new server FunctionRunCompleted: {:?}",
            result.err()
        );

        let event = result.unwrap();
        match event {
            RequestStateChangeEvent::FunctionRunCompleted(e) => {
                assert_eq!(e.allocation_id, None);
                assert_eq!(e.function_run_id, "run-456");
            }
            _ => panic!("Expected FunctionRunCompleted variant"),
        }
    }

    #[test]
    fn test_old_server_function_run_assigned() {
        // Old server sends FunctionRunAssigned
        let json = json!({
            "FunctionRunAssigned": {
                "namespace": "test-ns",
                "application_name": "test-app",
                "application_version": "1.0",
                "request_id": "req-123",
                "function_name": "my-func",
                "function_run_id": "run-456",
                "allocation_id": "alloc-789",
                "executor_id": "exec-001"
            }
        });

        let result: Result<RequestStateChangeEvent, _> = serde_json::from_value(json);
        assert!(
            result.is_ok(),
            "Failed to deserialize old server FunctionRunAssigned: {:?}",
            result.err()
        );

        let event = result.unwrap();
        // Should deserialize to FunctionRunAssigned variant (backward compat)
        #[allow(deprecated)]
        match event {
            RequestStateChangeEvent::FunctionRunAssigned(e) => {
                assert_eq!(e.allocation_id, "alloc-789");
                assert_eq!(e.executor_id, "exec-001");
            }
            _ => panic!(
                "Expected FunctionRunAssigned variant, got {:?}",
                event.as_str()
            ),
        }
    }

    #[test]
    fn test_new_server_allocation_created() {
        // New server sends AllocationCreated
        let json = json!({
            "AllocationCreated": {
                "namespace": "test-ns",
                "application_name": "test-app",
                "application_version": "1.0",
                "request_id": "req-123",
                "function_name": "my-func",
                "function_run_id": "run-456",
                "allocation_id": "alloc-789",
                "executor_id": "exec-001"
            }
        });

        let result: Result<RequestStateChangeEvent, _> = serde_json::from_value(json);
        assert!(
            result.is_ok(),
            "Failed to deserialize new server AllocationCreated: {:?}",
            result.err()
        );

        let event = result.unwrap();
        match event {
            RequestStateChangeEvent::AllocationCreated(e) => {
                assert_eq!(e.allocation_id, "alloc-789");
                assert_eq!(e.executor_id, "exec-001");
            }
            _ => panic!("Expected AllocationCreated variant"),
        }
    }

    #[test]
    fn test_new_server_allocation_completed() {
        // New server sends AllocationCompleted
        let json = json!({
            "AllocationCompleted": {
                "namespace": "test-ns",
                "application_name": "test-app",
                "application_version": "1.0",
                "request_id": "req-123",
                "function_name": "my-func",
                "function_run_id": "run-456",
                "allocation_id": "alloc-789",
                "outcome": "failure"
            }
        });

        let result: Result<RequestStateChangeEvent, _> = serde_json::from_value(json);
        assert!(
            result.is_ok(),
            "Failed to deserialize new server AllocationCompleted: {:?}",
            result.err()
        );

        let event = result.unwrap();
        match event {
            RequestStateChangeEvent::AllocationCompleted(e) => {
                assert_eq!(e.allocation_id, "alloc-789");
                assert_eq!(e.outcome, FunctionRunOutcomeSummary::Failure);
            }
            _ => panic!("Expected AllocationCompleted variant"),
        }
    }
}