pub struct ApplySatFileParams<'a> {
pub sat_file: Value,
pub ansible_verbosity: Option<u8>,
pub ansible_passthrough: Option<&'a str>,
pub reboot: bool,
pub watch_logs: bool,
pub timestamps: bool,
pub overwrite: bool,
pub dry_run: bool,
}Expand description
Parameters for applying a SAT file.
The CLI renders Jinja2, parses the rendered YAML into a structured
value, applies the image_only / session_template_only filters
client-side (by removing top-level keys), and forwards the resulting
serde_json::Value plus the apply-time flags through the server to
the backend.
Fields§
§sat_file: ValueSAT file parsed into a structured value — Jinja2 already
evaluated and image_only / session_template_only filters
already applied client-side.
ansible_verbosity: Option<u8>Ansible verbosity level (0–4) passed to any CFS sessions created by this SAT file.
ansible_passthrough: Option<&'a str>Extra arguments forwarded verbatim to ansible-playbook.
reboot: boolWhen true, reboot affected nodes after the session templates are applied.
watch_logs: boolWhen true, stream CFS session logs to the caller as part of the response.
timestamps: boolWhen true, prefix each streamed log line with its timestamp.
overwrite: boolOverwrite existing CFS configurations or IMS images instead of erroring on conflict.
dry_run: boolRender and validate the SAT file without creating any resources.