pub struct PostSatFileRequest {
pub sat_file: Value,
pub ansible_verbosity: Option<u8>,
pub ansible_passthrough: Option<String>,
pub reboot: bool,
pub watch_logs: bool,
pub timestamps: bool,
pub overwrite: bool,
pub dry_run: bool,
}Expand description
Request body for POST /sat-file.
The CLI renders Jinja2, parses the rendered YAML into a structured
value, applies the image_only / session_template_only filters
locally, and sends the resulting value in sat_file. The server only
orchestrates the apply (Vault secrets, HSM groups, backend call).
Fields§
§sat_file: ValueFinal SAT file as a structured value — Jinja2 already evaluated
and image_only / session_template_only filters already applied
client-side.
ansible_verbosity: Option<u8>Ansible verbosity level passed to any CFS sessions created.
ansible_passthrough: Option<String>Extra arguments forwarded verbatim to ansible-playbook.
reboot: boolReboot nodes after applying the SAT file.
watch_logs: boolStream CFS session logs after creation.
timestamps: boolPrefix log lines with timestamps when streaming logs.
overwrite: boolOverwrite existing IMS images or BOS session templates.
dry_run: boolWhen true, validates the SAT file without creating any resources.
Trait Implementations§
Source§impl ComposeSchema for PostSatFileRequest
impl ComposeSchema for PostSatFileRequest
Source§impl<'de> Deserialize<'de> for PostSatFileRequest
impl<'de> Deserialize<'de> for PostSatFileRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Auto Trait Implementations§
impl Freeze for PostSatFileRequest
impl RefUnwindSafe for PostSatFileRequest
impl Send for PostSatFileRequest
impl Sync for PostSatFileRequest
impl Unpin for PostSatFileRequest
impl UnwindSafe for PostSatFileRequest
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