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
//! Parameters for `POST /sat-file`.
/// Parameters for applying a SAT file.
//
// Seven bools — `reboot`, `watch_logs`, `timestamps`, `image_only`,
// `session_template_only`, `overwrite`, `dry_run`. `image_only` and
// `session_template_only` are mutually exclusive and could be a
// 3-variant enum, but doing so would break the HTTP request body and
// the CLI flag surface; the rest are independent. Tracked as a future
// API refactor — for now silence the `struct_excessive_bools` lint.