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.
Auto Trait Implementations§
impl<'a> Freeze for ApplySatFileParams<'a>
impl<'a> RefUnwindSafe for ApplySatFileParams<'a>
impl<'a> Send for ApplySatFileParams<'a>
impl<'a> Sync for ApplySatFileParams<'a>
impl<'a> Unpin for ApplySatFileParams<'a>
impl<'a> UnwindSafe for ApplySatFileParams<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more