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
use conjure_object::serde::{ser, de};
use conjure_object::serde::ser::SerializeStruct as SerializeStruct_;
use std::fmt;
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct AuditLogV3 {
    type_: String,
    deployment: String,
    host: String,
    product: String,
    product_version: String,
    stack: Option<String>,
    service: Option<String>,
    environment: Option<String>,
    producer_type: super::AuditProducer,
    organizations: Vec<super::Organization>,
    event_id: conjure_object::Uuid,
    user_agent: Option<String>,
    categories: Vec<String>,
    entities: Vec<conjure_object::Any>,
    users: Vec<super::ContextualizedUser>,
    origins: Vec<String>,
    source_origin: Option<String>,
    request_params: std::collections::BTreeMap<String, super::SensitivityTaggedValue>,
    result_params: std::collections::BTreeMap<String, super::SensitivityTaggedValue>,
    time: conjure_object::DateTime<conjure_object::Utc>,
    uid: Option<super::UserId>,
    sid: Option<super::SessionId>,
    token_id: Option<super::TokenId>,
    trace_id: Option<super::TraceId>,
    origin: Option<String>,
    name: String,
    result: super::AuditResult,
}
impl AuditLogV3 {
    /// Returns a new builder.
    #[inline]
    pub fn builder() -> BuilderStage0 {
        Default::default()
    }
    ///"audit.3"
    #[inline]
    pub fn type_(&self) -> &str {
        &*self.type_
    }
    ///The deployment that produced this log. Not exposed to downstream consumers.
    #[inline]
    pub fn deployment(&self) -> &str {
        &*self.deployment
    }
    ///The host of the service that produced this log.
    #[inline]
    pub fn host(&self) -> &str {
        &*self.host
    }
    ///The name of the product that produced this log.
    #[inline]
    pub fn product(&self) -> &str {
        &*self.product
    }
    ///The version of the product that produced this log.
    #[inline]
    pub fn product_version(&self) -> &str {
        &*self.product_version
    }
    ///The stack that this log was generated on.
    #[inline]
    pub fn stack(&self) -> Option<&str> {
        self.stack.as_ref().map(|o| &**o)
    }
    ///The service name that produced this log.
    #[inline]
    pub fn service(&self) -> Option<&str> {
        self.service.as_ref().map(|o| &**o)
    }
    ///The environment that produced this log.
    #[inline]
    pub fn environment(&self) -> Option<&str> {
        self.environment.as_ref().map(|o| &**o)
    }
    ///How this audit log was produced, eg. from a backend Server, frontend Client etc.
    #[inline]
    pub fn producer_type(&self) -> &super::AuditProducer {
        &self.producer_type
    }
    ///A list of organizations that have been attributed to this log.
    ///Attribution is typically based on the user that originated this log, and the resources that
    ///they targeted.
    ///Not exposed to downstream consumers.
    #[inline]
    pub fn organizations(&self) -> &[super::Organization] {
        &*self.organizations
    }
    ///Unique identifier for this audit log event.
    #[inline]
    pub fn event_id(&self) -> conjure_object::Uuid {
        self.event_id
    }
    ///The user agent of the user that originated this log.
    #[inline]
    pub fn user_agent(&self) -> Option<&str> {
        self.user_agent.as_ref().map(|o| &**o)
    }
    ///All audit categories produced by this audit event.
    ///Each audit categories produces a set of keys that will be distributed between the request and
    ///response params.
    #[inline]
    pub fn categories(&self) -> &[String] {
        &*self.categories
    }
    ///All contextualized entities present in the request and response params of this log.
    ///Note: Some resources cannot be contextualized, and will not be included in this list as a result.
    #[inline]
    pub fn entities(&self) -> &[conjure_object::Any] {
        &*self.entities
    }
    ///All contextualized users present in the request and response params of this log, including the top level
    ///UUID of this log.
    #[inline]
    pub fn users(&self) -> &[super::ContextualizedUser] {
        &*self.users
    }
    ///All addresses attached to the request. Contains information
    ///from unreliable sources such as the X-Forwarded-For header.
    ///
    ///This value can be spoofed.
    #[inline]
    pub fn origins(&self) -> &[String] {
        &*self.origins
    }
    ///Origin of the network request. If a request goes through a proxy,
    ///this will contain the proxy''s address.
    ///
    ///This value is verified through the TCP stack.
    #[inline]
    pub fn source_origin(&self) -> Option<&str> {
        self.source_origin.as_ref().map(|o| &**o)
    }
    ///The parameters known at method invocation time.
    ///
    ///Note that all keys must be known to the audit library. Typically, entries in the request and response
    ///params will be dependent on the `categories` field defined above.
    #[inline]
    pub fn request_params(
        &self,
    ) -> &std::collections::BTreeMap<String, super::SensitivityTaggedValue> {
        &self.request_params
    }
    ///Information derived within a method, commonly parts of the return value.
    ///
    ///Note that all keys must be known to the audit library. Typically, entries in the request and response
    ///params will be dependent on the `categories` field defined above.
    #[inline]
    pub fn result_params(
        &self,
    ) -> &std::collections::BTreeMap<String, super::SensitivityTaggedValue> {
        &self.result_params
    }
    #[inline]
    pub fn time(&self) -> conjure_object::DateTime<conjure_object::Utc> {
        self.time
    }
    ///User id (if available). This is the most downstream caller.
    #[inline]
    pub fn uid(&self) -> Option<&super::UserId> {
        self.uid.as_ref().map(|o| &*o)
    }
    ///Session id (if available)
    #[inline]
    pub fn sid(&self) -> Option<&super::SessionId> {
        self.sid.as_ref().map(|o| &*o)
    }
    ///API token id (if available)
    #[inline]
    pub fn token_id(&self) -> Option<&super::TokenId> {
        self.token_id.as_ref().map(|o| &*o)
    }
    ///Zipkin trace id (if available)
    #[inline]
    pub fn trace_id(&self) -> Option<&super::TraceId> {
        self.trace_id.as_ref().map(|o| &*o)
    }
    ///Best-effort identifier of the originating machine, e.g. an
    ///IP address, a Kubernetes node identifier, or similar.
    ///
    ///This value can be spoofed.
    #[inline]
    pub fn origin(&self) -> Option<&str> {
        self.origin.as_ref().map(|o| &**o)
    }
    ///Name of the audit event, e.g. PUT_FILE
    #[inline]
    pub fn name(&self) -> &str {
        &*self.name
    }
    ///Indicates whether the request was successful or the type of failure, e.g. ERROR or UNAUTHORIZED
    #[inline]
    pub fn result(&self) -> &super::AuditResult {
        &self.result
    }
}
impl Default for BuilderStage0 {
    #[inline]
    fn default() -> Self {
        BuilderStage0 {}
    }
}
impl From<AuditLogV3> for BuilderStage10 {
    #[inline]
    fn from(value: AuditLogV3) -> Self {
        BuilderStage10 {
            type_: value.type_,
            deployment: value.deployment,
            host: value.host,
            product: value.product,
            product_version: value.product_version,
            stack: value.stack,
            service: value.service,
            environment: value.environment,
            producer_type: value.producer_type,
            organizations: value.organizations,
            event_id: value.event_id,
            user_agent: value.user_agent,
            categories: value.categories,
            entities: value.entities,
            users: value.users,
            origins: value.origins,
            source_origin: value.source_origin,
            request_params: value.request_params,
            result_params: value.result_params,
            time: value.time,
            uid: value.uid,
            sid: value.sid,
            token_id: value.token_id,
            trace_id: value.trace_id,
            origin: value.origin,
            name: value.name,
            result: value.result,
        }
    }
}
///The stage 0 builder for the [`AuditLogV3`] type
#[derive(Debug, Clone)]
pub struct BuilderStage0 {}
impl BuilderStage0 {
    ///"audit.3"
    #[inline]
    pub fn type_<T>(self, type_: T) -> BuilderStage1
    where
        T: Into<String>,
    {
        BuilderStage1 {
            type_: type_.into(),
        }
    }
}
///The stage 1 builder for the [`AuditLogV3`] type
#[derive(Debug, Clone)]
pub struct BuilderStage1 {
    type_: String,
}
impl BuilderStage1 {
    ///The deployment that produced this log. Not exposed to downstream consumers.
    #[inline]
    pub fn deployment<T>(self, deployment: T) -> BuilderStage2
    where
        T: Into<String>,
    {
        BuilderStage2 {
            type_: self.type_,
            deployment: deployment.into(),
        }
    }
}
///The stage 2 builder for the [`AuditLogV3`] type
#[derive(Debug, Clone)]
pub struct BuilderStage2 {
    type_: String,
    deployment: String,
}
impl BuilderStage2 {
    ///The host of the service that produced this log.
    #[inline]
    pub fn host<T>(self, host: T) -> BuilderStage3
    where
        T: Into<String>,
    {
        BuilderStage3 {
            type_: self.type_,
            deployment: self.deployment,
            host: host.into(),
        }
    }
}
///The stage 3 builder for the [`AuditLogV3`] type
#[derive(Debug, Clone)]
pub struct BuilderStage3 {
    type_: String,
    deployment: String,
    host: String,
}
impl BuilderStage3 {
    ///The name of the product that produced this log.
    #[inline]
    pub fn product<T>(self, product: T) -> BuilderStage4
    where
        T: Into<String>,
    {
        BuilderStage4 {
            type_: self.type_,
            deployment: self.deployment,
            host: self.host,
            product: product.into(),
        }
    }
}
///The stage 4 builder for the [`AuditLogV3`] type
#[derive(Debug, Clone)]
pub struct BuilderStage4 {
    type_: String,
    deployment: String,
    host: String,
    product: String,
}
impl BuilderStage4 {
    ///The version of the product that produced this log.
    #[inline]
    pub fn product_version<T>(self, product_version: T) -> BuilderStage5
    where
        T: Into<String>,
    {
        BuilderStage5 {
            type_: self.type_,
            deployment: self.deployment,
            host: self.host,
            product: self.product,
            product_version: product_version.into(),
        }
    }
}
///The stage 5 builder for the [`AuditLogV3`] type
#[derive(Debug, Clone)]
pub struct BuilderStage5 {
    type_: String,
    deployment: String,
    host: String,
    product: String,
    product_version: String,
}
impl BuilderStage5 {
    ///How this audit log was produced, eg. from a backend Server, frontend Client etc.
    #[inline]
    pub fn producer_type(self, producer_type: super::AuditProducer) -> BuilderStage6 {
        BuilderStage6 {
            type_: self.type_,
            deployment: self.deployment,
            host: self.host,
            product: self.product,
            product_version: self.product_version,
            producer_type: producer_type,
        }
    }
}
///The stage 6 builder for the [`AuditLogV3`] type
#[derive(Debug, Clone)]
pub struct BuilderStage6 {
    type_: String,
    deployment: String,
    host: String,
    product: String,
    product_version: String,
    producer_type: super::AuditProducer,
}
impl BuilderStage6 {
    ///Unique identifier for this audit log event.
    #[inline]
    pub fn event_id(self, event_id: conjure_object::Uuid) -> BuilderStage7 {
        BuilderStage7 {
            type_: self.type_,
            deployment: self.deployment,
            host: self.host,
            product: self.product,
            product_version: self.product_version,
            producer_type: self.producer_type,
            event_id: event_id,
        }
    }
}
///The stage 7 builder for the [`AuditLogV3`] type
#[derive(Debug, Clone)]
pub struct BuilderStage7 {
    type_: String,
    deployment: String,
    host: String,
    product: String,
    product_version: String,
    producer_type: super::AuditProducer,
    event_id: conjure_object::Uuid,
}
impl BuilderStage7 {
    #[inline]
    pub fn time(
        self,
        time: conjure_object::DateTime<conjure_object::Utc>,
    ) -> BuilderStage8 {
        BuilderStage8 {
            type_: self.type_,
            deployment: self.deployment,
            host: self.host,
            product: self.product,
            product_version: self.product_version,
            producer_type: self.producer_type,
            event_id: self.event_id,
            time: time,
        }
    }
}
///The stage 8 builder for the [`AuditLogV3`] type
#[derive(Debug, Clone)]
pub struct BuilderStage8 {
    type_: String,
    deployment: String,
    host: String,
    product: String,
    product_version: String,
    producer_type: super::AuditProducer,
    event_id: conjure_object::Uuid,
    time: conjure_object::DateTime<conjure_object::Utc>,
}
impl BuilderStage8 {
    ///Name of the audit event, e.g. PUT_FILE
    #[inline]
    pub fn name<T>(self, name: T) -> BuilderStage9
    where
        T: Into<String>,
    {
        BuilderStage9 {
            type_: self.type_,
            deployment: self.deployment,
            host: self.host,
            product: self.product,
            product_version: self.product_version,
            producer_type: self.producer_type,
            event_id: self.event_id,
            time: self.time,
            name: name.into(),
        }
    }
}
///The stage 9 builder for the [`AuditLogV3`] type
#[derive(Debug, Clone)]
pub struct BuilderStage9 {
    type_: String,
    deployment: String,
    host: String,
    product: String,
    product_version: String,
    producer_type: super::AuditProducer,
    event_id: conjure_object::Uuid,
    time: conjure_object::DateTime<conjure_object::Utc>,
    name: String,
}
impl BuilderStage9 {
    ///Indicates whether the request was successful or the type of failure, e.g. ERROR or UNAUTHORIZED
    #[inline]
    pub fn result(self, result: super::AuditResult) -> BuilderStage10 {
        BuilderStage10 {
            type_: self.type_,
            deployment: self.deployment,
            host: self.host,
            product: self.product,
            product_version: self.product_version,
            producer_type: self.producer_type,
            event_id: self.event_id,
            time: self.time,
            name: self.name,
            result: result,
            stack: Default::default(),
            service: Default::default(),
            environment: Default::default(),
            organizations: Default::default(),
            user_agent: Default::default(),
            categories: Default::default(),
            entities: Default::default(),
            users: Default::default(),
            origins: Default::default(),
            source_origin: Default::default(),
            request_params: Default::default(),
            result_params: Default::default(),
            uid: Default::default(),
            sid: Default::default(),
            token_id: Default::default(),
            trace_id: Default::default(),
            origin: Default::default(),
        }
    }
}
///The stage 10 builder for the [`AuditLogV3`] type
#[derive(Debug, Clone)]
pub struct BuilderStage10 {
    type_: String,
    deployment: String,
    host: String,
    product: String,
    product_version: String,
    producer_type: super::AuditProducer,
    event_id: conjure_object::Uuid,
    time: conjure_object::DateTime<conjure_object::Utc>,
    name: String,
    result: super::AuditResult,
    stack: Option<String>,
    service: Option<String>,
    environment: Option<String>,
    organizations: Vec<super::Organization>,
    user_agent: Option<String>,
    categories: Vec<String>,
    entities: Vec<conjure_object::Any>,
    users: Vec<super::ContextualizedUser>,
    origins: Vec<String>,
    source_origin: Option<String>,
    request_params: std::collections::BTreeMap<String, super::SensitivityTaggedValue>,
    result_params: std::collections::BTreeMap<String, super::SensitivityTaggedValue>,
    uid: Option<super::UserId>,
    sid: Option<super::SessionId>,
    token_id: Option<super::TokenId>,
    trace_id: Option<super::TraceId>,
    origin: Option<String>,
}
impl BuilderStage10 {
    ///"audit.3"
    #[inline]
    pub fn type_<T>(mut self, type_: T) -> Self
    where
        T: Into<String>,
    {
        self.type_ = type_.into();
        self
    }
    ///The deployment that produced this log. Not exposed to downstream consumers.
    #[inline]
    pub fn deployment<T>(mut self, deployment: T) -> Self
    where
        T: Into<String>,
    {
        self.deployment = deployment.into();
        self
    }
    ///The host of the service that produced this log.
    #[inline]
    pub fn host<T>(mut self, host: T) -> Self
    where
        T: Into<String>,
    {
        self.host = host.into();
        self
    }
    ///The name of the product that produced this log.
    #[inline]
    pub fn product<T>(mut self, product: T) -> Self
    where
        T: Into<String>,
    {
        self.product = product.into();
        self
    }
    ///The version of the product that produced this log.
    #[inline]
    pub fn product_version<T>(mut self, product_version: T) -> Self
    where
        T: Into<String>,
    {
        self.product_version = product_version.into();
        self
    }
    ///How this audit log was produced, eg. from a backend Server, frontend Client etc.
    #[inline]
    pub fn producer_type(mut self, producer_type: super::AuditProducer) -> Self {
        self.producer_type = producer_type;
        self
    }
    ///Unique identifier for this audit log event.
    #[inline]
    pub fn event_id(mut self, event_id: conjure_object::Uuid) -> Self {
        self.event_id = event_id;
        self
    }
    #[inline]
    pub fn time(mut self, time: conjure_object::DateTime<conjure_object::Utc>) -> Self {
        self.time = time;
        self
    }
    ///Name of the audit event, e.g. PUT_FILE
    #[inline]
    pub fn name<T>(mut self, name: T) -> Self
    where
        T: Into<String>,
    {
        self.name = name.into();
        self
    }
    ///Indicates whether the request was successful or the type of failure, e.g. ERROR or UNAUTHORIZED
    #[inline]
    pub fn result(mut self, result: super::AuditResult) -> Self {
        self.result = result;
        self
    }
    ///The stack that this log was generated on.
    #[inline]
    pub fn stack<T>(mut self, stack: T) -> Self
    where
        T: Into<Option<String>>,
    {
        self.stack = stack.into();
        self
    }
    ///The service name that produced this log.
    #[inline]
    pub fn service<T>(mut self, service: T) -> Self
    where
        T: Into<Option<String>>,
    {
        self.service = service.into();
        self
    }
    ///The environment that produced this log.
    #[inline]
    pub fn environment<T>(mut self, environment: T) -> Self
    where
        T: Into<Option<String>>,
    {
        self.environment = environment.into();
        self
    }
    ///A list of organizations that have been attributed to this log.
    ///Attribution is typically based on the user that originated this log, and the resources that
    ///they targeted.
    ///Not exposed to downstream consumers.
    #[inline]
    pub fn organizations<T>(mut self, organizations: T) -> Self
    where
        T: IntoIterator<Item = super::Organization>,
    {
        self.organizations = organizations.into_iter().collect();
        self
    }
    ///A list of organizations that have been attributed to this log.
    ///Attribution is typically based on the user that originated this log, and the resources that
    ///they targeted.
    ///Not exposed to downstream consumers.
    #[inline]
    pub fn extend_organizations<T>(mut self, organizations: T) -> Self
    where
        T: IntoIterator<Item = super::Organization>,
    {
        self.organizations.extend(organizations);
        self
    }
    ///A list of organizations that have been attributed to this log.
    ///Attribution is typically based on the user that originated this log, and the resources that
    ///they targeted.
    ///Not exposed to downstream consumers.
    #[inline]
    pub fn push_organizations(mut self, value: super::Organization) -> Self {
        self.organizations.push(value);
        self
    }
    ///The user agent of the user that originated this log.
    #[inline]
    pub fn user_agent<T>(mut self, user_agent: T) -> Self
    where
        T: Into<Option<String>>,
    {
        self.user_agent = user_agent.into();
        self
    }
    ///All audit categories produced by this audit event.
    ///Each audit categories produces a set of keys that will be distributed between the request and
    ///response params.
    #[inline]
    pub fn categories<T>(mut self, categories: T) -> Self
    where
        T: IntoIterator<Item = String>,
    {
        self.categories = categories.into_iter().collect();
        self
    }
    ///All audit categories produced by this audit event.
    ///Each audit categories produces a set of keys that will be distributed between the request and
    ///response params.
    #[inline]
    pub fn extend_categories<T>(mut self, categories: T) -> Self
    where
        T: IntoIterator<Item = String>,
    {
        self.categories.extend(categories);
        self
    }
    ///All audit categories produced by this audit event.
    ///Each audit categories produces a set of keys that will be distributed between the request and
    ///response params.
    #[inline]
    pub fn push_categories<T>(mut self, value: T) -> Self
    where
        T: Into<String>,
    {
        self.categories.push(value.into());
        self
    }
    ///All contextualized entities present in the request and response params of this log.
    ///Note: Some resources cannot be contextualized, and will not be included in this list as a result.
    #[inline]
    pub fn entities<T>(mut self, entities: T) -> Self
    where
        T: IntoIterator<Item = conjure_object::Any>,
    {
        self.entities = entities.into_iter().collect();
        self
    }
    ///All contextualized entities present in the request and response params of this log.
    ///Note: Some resources cannot be contextualized, and will not be included in this list as a result.
    #[inline]
    pub fn extend_entities<T>(mut self, entities: T) -> Self
    where
        T: IntoIterator<Item = conjure_object::Any>,
    {
        self.entities.extend(entities);
        self
    }
    ///All contextualized entities present in the request and response params of this log.
    ///Note: Some resources cannot be contextualized, and will not be included in this list as a result.
    #[inline]
    pub fn push_entities<T>(mut self, value: T) -> Self
    where
        T: conjure_object::serde::Serialize,
    {
        self.entities
            .push(conjure_object::Any::new(value).expect("value failed to serialize"));
        self
    }
    ///All contextualized users present in the request and response params of this log, including the top level
    ///UUID of this log.
    #[inline]
    pub fn users<T>(mut self, users: T) -> Self
    where
        T: IntoIterator<Item = super::ContextualizedUser>,
    {
        self.users = users.into_iter().collect();
        self
    }
    ///All contextualized users present in the request and response params of this log, including the top level
    ///UUID of this log.
    #[inline]
    pub fn extend_users<T>(mut self, users: T) -> Self
    where
        T: IntoIterator<Item = super::ContextualizedUser>,
    {
        self.users.extend(users);
        self
    }
    ///All contextualized users present in the request and response params of this log, including the top level
    ///UUID of this log.
    #[inline]
    pub fn push_users(mut self, value: super::ContextualizedUser) -> Self {
        self.users.push(value);
        self
    }
    ///All addresses attached to the request. Contains information
    ///from unreliable sources such as the X-Forwarded-For header.
    ///
    ///This value can be spoofed.
    #[inline]
    pub fn origins<T>(mut self, origins: T) -> Self
    where
        T: IntoIterator<Item = String>,
    {
        self.origins = origins.into_iter().collect();
        self
    }
    ///All addresses attached to the request. Contains information
    ///from unreliable sources such as the X-Forwarded-For header.
    ///
    ///This value can be spoofed.
    #[inline]
    pub fn extend_origins<T>(mut self, origins: T) -> Self
    where
        T: IntoIterator<Item = String>,
    {
        self.origins.extend(origins);
        self
    }
    ///All addresses attached to the request. Contains information
    ///from unreliable sources such as the X-Forwarded-For header.
    ///
    ///This value can be spoofed.
    #[inline]
    pub fn push_origins<T>(mut self, value: T) -> Self
    where
        T: Into<String>,
    {
        self.origins.push(value.into());
        self
    }
    ///Origin of the network request. If a request goes through a proxy,
    ///this will contain the proxy''s address.
    ///
    ///This value is verified through the TCP stack.
    #[inline]
    pub fn source_origin<T>(mut self, source_origin: T) -> Self
    where
        T: Into<Option<String>>,
    {
        self.source_origin = source_origin.into();
        self
    }
    ///The parameters known at method invocation time.
    ///
    ///Note that all keys must be known to the audit library. Typically, entries in the request and response
    ///params will be dependent on the `categories` field defined above.
    #[inline]
    pub fn request_params<T>(mut self, request_params: T) -> Self
    where
        T: IntoIterator<Item = (String, super::SensitivityTaggedValue)>,
    {
        self.request_params = request_params.into_iter().collect();
        self
    }
    ///The parameters known at method invocation time.
    ///
    ///Note that all keys must be known to the audit library. Typically, entries in the request and response
    ///params will be dependent on the `categories` field defined above.
    #[inline]
    pub fn extend_request_params<T>(mut self, request_params: T) -> Self
    where
        T: IntoIterator<Item = (String, super::SensitivityTaggedValue)>,
    {
        self.request_params.extend(request_params);
        self
    }
    ///The parameters known at method invocation time.
    ///
    ///Note that all keys must be known to the audit library. Typically, entries in the request and response
    ///params will be dependent on the `categories` field defined above.
    #[inline]
    pub fn insert_request_params<K>(
        mut self,
        key: K,
        value: super::SensitivityTaggedValue,
    ) -> Self
    where
        K: Into<String>,
    {
        self.request_params.insert(key.into(), value);
        self
    }
    ///Information derived within a method, commonly parts of the return value.
    ///
    ///Note that all keys must be known to the audit library. Typically, entries in the request and response
    ///params will be dependent on the `categories` field defined above.
    #[inline]
    pub fn result_params<T>(mut self, result_params: T) -> Self
    where
        T: IntoIterator<Item = (String, super::SensitivityTaggedValue)>,
    {
        self.result_params = result_params.into_iter().collect();
        self
    }
    ///Information derived within a method, commonly parts of the return value.
    ///
    ///Note that all keys must be known to the audit library. Typically, entries in the request and response
    ///params will be dependent on the `categories` field defined above.
    #[inline]
    pub fn extend_result_params<T>(mut self, result_params: T) -> Self
    where
        T: IntoIterator<Item = (String, super::SensitivityTaggedValue)>,
    {
        self.result_params.extend(result_params);
        self
    }
    ///Information derived within a method, commonly parts of the return value.
    ///
    ///Note that all keys must be known to the audit library. Typically, entries in the request and response
    ///params will be dependent on the `categories` field defined above.
    #[inline]
    pub fn insert_result_params<K>(
        mut self,
        key: K,
        value: super::SensitivityTaggedValue,
    ) -> Self
    where
        K: Into<String>,
    {
        self.result_params.insert(key.into(), value);
        self
    }
    ///User id (if available). This is the most downstream caller.
    #[inline]
    pub fn uid<T>(mut self, uid: T) -> Self
    where
        T: Into<Option<super::UserId>>,
    {
        self.uid = uid.into();
        self
    }
    ///Session id (if available)
    #[inline]
    pub fn sid<T>(mut self, sid: T) -> Self
    where
        T: Into<Option<super::SessionId>>,
    {
        self.sid = sid.into();
        self
    }
    ///API token id (if available)
    #[inline]
    pub fn token_id<T>(mut self, token_id: T) -> Self
    where
        T: Into<Option<super::TokenId>>,
    {
        self.token_id = token_id.into();
        self
    }
    ///Zipkin trace id (if available)
    #[inline]
    pub fn trace_id<T>(mut self, trace_id: T) -> Self
    where
        T: Into<Option<super::TraceId>>,
    {
        self.trace_id = trace_id.into();
        self
    }
    ///Best-effort identifier of the originating machine, e.g. an
    ///IP address, a Kubernetes node identifier, or similar.
    ///
    ///This value can be spoofed.
    #[inline]
    pub fn origin<T>(mut self, origin: T) -> Self
    where
        T: Into<Option<String>>,
    {
        self.origin = origin.into();
        self
    }
    /// Consumes the builder, constructing a new instance of the type.
    #[inline]
    pub fn build(self) -> AuditLogV3 {
        AuditLogV3 {
            type_: self.type_,
            deployment: self.deployment,
            host: self.host,
            product: self.product,
            product_version: self.product_version,
            stack: self.stack,
            service: self.service,
            environment: self.environment,
            producer_type: self.producer_type,
            organizations: self.organizations,
            event_id: self.event_id,
            user_agent: self.user_agent,
            categories: self.categories,
            entities: self.entities,
            users: self.users,
            origins: self.origins,
            source_origin: self.source_origin,
            request_params: self.request_params,
            result_params: self.result_params,
            time: self.time,
            uid: self.uid,
            sid: self.sid,
            token_id: self.token_id,
            trace_id: self.trace_id,
            origin: self.origin,
            name: self.name,
            result: self.result,
        }
    }
}
impl ser::Serialize for AuditLogV3 {
    fn serialize<S>(&self, s: S) -> Result<S::Ok, S::Error>
    where
        S: ser::Serializer,
    {
        let mut size = 10usize;
        let skip_stack = self.stack.is_none();
        if !skip_stack {
            size += 1;
        }
        let skip_service = self.service.is_none();
        if !skip_service {
            size += 1;
        }
        let skip_environment = self.environment.is_none();
        if !skip_environment {
            size += 1;
        }
        let skip_organizations = self.organizations.is_empty();
        if !skip_organizations {
            size += 1;
        }
        let skip_user_agent = self.user_agent.is_none();
        if !skip_user_agent {
            size += 1;
        }
        let skip_categories = self.categories.is_empty();
        if !skip_categories {
            size += 1;
        }
        let skip_entities = self.entities.is_empty();
        if !skip_entities {
            size += 1;
        }
        let skip_users = self.users.is_empty();
        if !skip_users {
            size += 1;
        }
        let skip_origins = self.origins.is_empty();
        if !skip_origins {
            size += 1;
        }
        let skip_source_origin = self.source_origin.is_none();
        if !skip_source_origin {
            size += 1;
        }
        let skip_request_params = self.request_params.is_empty();
        if !skip_request_params {
            size += 1;
        }
        let skip_result_params = self.result_params.is_empty();
        if !skip_result_params {
            size += 1;
        }
        let skip_uid = self.uid.is_none();
        if !skip_uid {
            size += 1;
        }
        let skip_sid = self.sid.is_none();
        if !skip_sid {
            size += 1;
        }
        let skip_token_id = self.token_id.is_none();
        if !skip_token_id {
            size += 1;
        }
        let skip_trace_id = self.trace_id.is_none();
        if !skip_trace_id {
            size += 1;
        }
        let skip_origin = self.origin.is_none();
        if !skip_origin {
            size += 1;
        }
        let mut s = s.serialize_struct("AuditLogV3", size)?;
        s.serialize_field("type", &self.type_)?;
        s.serialize_field("deployment", &self.deployment)?;
        s.serialize_field("host", &self.host)?;
        s.serialize_field("product", &self.product)?;
        s.serialize_field("productVersion", &self.product_version)?;
        if skip_stack {
            s.skip_field("stack")?;
        } else {
            s.serialize_field("stack", &self.stack)?;
        }
        if skip_service {
            s.skip_field("service")?;
        } else {
            s.serialize_field("service", &self.service)?;
        }
        if skip_environment {
            s.skip_field("environment")?;
        } else {
            s.serialize_field("environment", &self.environment)?;
        }
        s.serialize_field("producerType", &self.producer_type)?;
        if skip_organizations {
            s.skip_field("organizations")?;
        } else {
            s.serialize_field("organizations", &self.organizations)?;
        }
        s.serialize_field("eventId", &self.event_id)?;
        if skip_user_agent {
            s.skip_field("userAgent")?;
        } else {
            s.serialize_field("userAgent", &self.user_agent)?;
        }
        if skip_categories {
            s.skip_field("categories")?;
        } else {
            s.serialize_field("categories", &self.categories)?;
        }
        if skip_entities {
            s.skip_field("entities")?;
        } else {
            s.serialize_field("entities", &self.entities)?;
        }
        if skip_users {
            s.skip_field("users")?;
        } else {
            s.serialize_field("users", &self.users)?;
        }
        if skip_origins {
            s.skip_field("origins")?;
        } else {
            s.serialize_field("origins", &self.origins)?;
        }
        if skip_source_origin {
            s.skip_field("sourceOrigin")?;
        } else {
            s.serialize_field("sourceOrigin", &self.source_origin)?;
        }
        if skip_request_params {
            s.skip_field("requestParams")?;
        } else {
            s.serialize_field("requestParams", &self.request_params)?;
        }
        if skip_result_params {
            s.skip_field("resultParams")?;
        } else {
            s.serialize_field("resultParams", &self.result_params)?;
        }
        s.serialize_field("time", &self.time)?;
        if skip_uid {
            s.skip_field("uid")?;
        } else {
            s.serialize_field("uid", &self.uid)?;
        }
        if skip_sid {
            s.skip_field("sid")?;
        } else {
            s.serialize_field("sid", &self.sid)?;
        }
        if skip_token_id {
            s.skip_field("tokenId")?;
        } else {
            s.serialize_field("tokenId", &self.token_id)?;
        }
        if skip_trace_id {
            s.skip_field("traceId")?;
        } else {
            s.serialize_field("traceId", &self.trace_id)?;
        }
        if skip_origin {
            s.skip_field("origin")?;
        } else {
            s.serialize_field("origin", &self.origin)?;
        }
        s.serialize_field("name", &self.name)?;
        s.serialize_field("result", &self.result)?;
        s.end()
    }
}
impl<'de> de::Deserialize<'de> for AuditLogV3 {
    fn deserialize<D>(d: D) -> Result<AuditLogV3, D::Error>
    where
        D: de::Deserializer<'de>,
    {
        d.deserialize_struct(
            "AuditLogV3",
            &[
                "type",
                "deployment",
                "host",
                "product",
                "productVersion",
                "stack",
                "service",
                "environment",
                "producerType",
                "organizations",
                "eventId",
                "userAgent",
                "categories",
                "entities",
                "users",
                "origins",
                "sourceOrigin",
                "requestParams",
                "resultParams",
                "time",
                "uid",
                "sid",
                "tokenId",
                "traceId",
                "origin",
                "name",
                "result",
            ],
            Visitor_,
        )
    }
}
struct Visitor_;
impl<'de> de::Visitor<'de> for Visitor_ {
    type Value = AuditLogV3;
    fn expecting(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        fmt.write_str("map")
    }
    fn visit_map<A>(self, mut map_: A) -> Result<AuditLogV3, A::Error>
    where
        A: de::MapAccess<'de>,
    {
        let mut type_ = None;
        let mut deployment = None;
        let mut host = None;
        let mut product = None;
        let mut product_version = None;
        let mut stack = None;
        let mut service = None;
        let mut environment = None;
        let mut producer_type = None;
        let mut organizations = None;
        let mut event_id = None;
        let mut user_agent = None;
        let mut categories = None;
        let mut entities = None;
        let mut users = None;
        let mut origins = None;
        let mut source_origin = None;
        let mut request_params = None;
        let mut result_params = None;
        let mut time = None;
        let mut uid = None;
        let mut sid = None;
        let mut token_id = None;
        let mut trace_id = None;
        let mut origin = None;
        let mut name = None;
        let mut result = None;
        while let Some(field_) = map_.next_key()? {
            match field_ {
                Field_::Type => type_ = Some(map_.next_value()?),
                Field_::Deployment => deployment = Some(map_.next_value()?),
                Field_::Host => host = Some(map_.next_value()?),
                Field_::Product => product = Some(map_.next_value()?),
                Field_::ProductVersion => product_version = Some(map_.next_value()?),
                Field_::Stack => stack = Some(map_.next_value()?),
                Field_::Service => service = Some(map_.next_value()?),
                Field_::Environment => environment = Some(map_.next_value()?),
                Field_::ProducerType => producer_type = Some(map_.next_value()?),
                Field_::Organizations => organizations = Some(map_.next_value()?),
                Field_::EventId => event_id = Some(map_.next_value()?),
                Field_::UserAgent => user_agent = Some(map_.next_value()?),
                Field_::Categories => categories = Some(map_.next_value()?),
                Field_::Entities => entities = Some(map_.next_value()?),
                Field_::Users => users = Some(map_.next_value()?),
                Field_::Origins => origins = Some(map_.next_value()?),
                Field_::SourceOrigin => source_origin = Some(map_.next_value()?),
                Field_::RequestParams => request_params = Some(map_.next_value()?),
                Field_::ResultParams => result_params = Some(map_.next_value()?),
                Field_::Time => time = Some(map_.next_value()?),
                Field_::Uid => uid = Some(map_.next_value()?),
                Field_::Sid => sid = Some(map_.next_value()?),
                Field_::TokenId => token_id = Some(map_.next_value()?),
                Field_::TraceId => trace_id = Some(map_.next_value()?),
                Field_::Origin => origin = Some(map_.next_value()?),
                Field_::Name => name = Some(map_.next_value()?),
                Field_::Result => result = Some(map_.next_value()?),
                Field_::Unknown_ => {
                    map_.next_value::<de::IgnoredAny>()?;
                }
            }
        }
        let type_ = match type_ {
            Some(v) => v,
            None => return Err(de::Error::missing_field("type")),
        };
        let deployment = match deployment {
            Some(v) => v,
            None => return Err(de::Error::missing_field("deployment")),
        };
        let host = match host {
            Some(v) => v,
            None => return Err(de::Error::missing_field("host")),
        };
        let product = match product {
            Some(v) => v,
            None => return Err(de::Error::missing_field("product")),
        };
        let product_version = match product_version {
            Some(v) => v,
            None => return Err(de::Error::missing_field("productVersion")),
        };
        let stack = match stack {
            Some(v) => v,
            None => Default::default(),
        };
        let service = match service {
            Some(v) => v,
            None => Default::default(),
        };
        let environment = match environment {
            Some(v) => v,
            None => Default::default(),
        };
        let producer_type = match producer_type {
            Some(v) => v,
            None => return Err(de::Error::missing_field("producerType")),
        };
        let organizations = match organizations {
            Some(v) => v,
            None => Default::default(),
        };
        let event_id = match event_id {
            Some(v) => v,
            None => return Err(de::Error::missing_field("eventId")),
        };
        let user_agent = match user_agent {
            Some(v) => v,
            None => Default::default(),
        };
        let categories = match categories {
            Some(v) => v,
            None => Default::default(),
        };
        let entities = match entities {
            Some(v) => v,
            None => Default::default(),
        };
        let users = match users {
            Some(v) => v,
            None => Default::default(),
        };
        let origins = match origins {
            Some(v) => v,
            None => Default::default(),
        };
        let source_origin = match source_origin {
            Some(v) => v,
            None => Default::default(),
        };
        let request_params = match request_params {
            Some(v) => v,
            None => Default::default(),
        };
        let result_params = match result_params {
            Some(v) => v,
            None => Default::default(),
        };
        let time = match time {
            Some(v) => v,
            None => return Err(de::Error::missing_field("time")),
        };
        let uid = match uid {
            Some(v) => v,
            None => Default::default(),
        };
        let sid = match sid {
            Some(v) => v,
            None => Default::default(),
        };
        let token_id = match token_id {
            Some(v) => v,
            None => Default::default(),
        };
        let trace_id = match trace_id {
            Some(v) => v,
            None => Default::default(),
        };
        let origin = match origin {
            Some(v) => v,
            None => Default::default(),
        };
        let name = match name {
            Some(v) => v,
            None => return Err(de::Error::missing_field("name")),
        };
        let result = match result {
            Some(v) => v,
            None => return Err(de::Error::missing_field("result")),
        };
        Ok(AuditLogV3 {
            type_,
            deployment,
            host,
            product,
            product_version,
            stack,
            service,
            environment,
            producer_type,
            organizations,
            event_id,
            user_agent,
            categories,
            entities,
            users,
            origins,
            source_origin,
            request_params,
            result_params,
            time,
            uid,
            sid,
            token_id,
            trace_id,
            origin,
            name,
            result,
        })
    }
}
enum Field_ {
    Type,
    Deployment,
    Host,
    Product,
    ProductVersion,
    Stack,
    Service,
    Environment,
    ProducerType,
    Organizations,
    EventId,
    UserAgent,
    Categories,
    Entities,
    Users,
    Origins,
    SourceOrigin,
    RequestParams,
    ResultParams,
    Time,
    Uid,
    Sid,
    TokenId,
    TraceId,
    Origin,
    Name,
    Result,
    Unknown_,
}
impl<'de> de::Deserialize<'de> for Field_ {
    fn deserialize<D>(d: D) -> Result<Field_, D::Error>
    where
        D: de::Deserializer<'de>,
    {
        d.deserialize_str(FieldVisitor_)
    }
}
struct FieldVisitor_;
impl<'de> de::Visitor<'de> for FieldVisitor_ {
    type Value = Field_;
    fn expecting(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        fmt.write_str("string")
    }
    fn visit_str<E>(self, value: &str) -> Result<Field_, E>
    where
        E: de::Error,
    {
        let v = match value {
            "type" => Field_::Type,
            "deployment" => Field_::Deployment,
            "host" => Field_::Host,
            "product" => Field_::Product,
            "productVersion" => Field_::ProductVersion,
            "stack" => Field_::Stack,
            "service" => Field_::Service,
            "environment" => Field_::Environment,
            "producerType" => Field_::ProducerType,
            "organizations" => Field_::Organizations,
            "eventId" => Field_::EventId,
            "userAgent" => Field_::UserAgent,
            "categories" => Field_::Categories,
            "entities" => Field_::Entities,
            "users" => Field_::Users,
            "origins" => Field_::Origins,
            "sourceOrigin" => Field_::SourceOrigin,
            "requestParams" => Field_::RequestParams,
            "resultParams" => Field_::ResultParams,
            "time" => Field_::Time,
            "uid" => Field_::Uid,
            "sid" => Field_::Sid,
            "tokenId" => Field_::TokenId,
            "traceId" => Field_::TraceId,
            "origin" => Field_::Origin,
            "name" => Field_::Name,
            "result" => Field_::Result,
            _ => Field_::Unknown_,
        };
        Ok(v)
    }
}