manta_shared/shared/params/sat_file.rs
1//! Parameters for `POST /sat-file`.
2
3/// Parameters for applying a SAT file.
4pub struct ApplySatFileParams<'a> {
5 pub sat_file_content: &'a str,
6 pub values: Option<&'a serde_json::Value>,
7 pub values_file_content: Option<&'a str>,
8 pub ansible_verbosity: Option<u8>,
9 pub ansible_passthrough: Option<&'a str>,
10 pub reboot: bool,
11 pub watch_logs: bool,
12 pub timestamps: bool,
13 pub image_only: bool,
14 pub session_template_only: bool,
15 pub overwrite: bool,
16 pub dry_run: bool,
17}