Skip to main content

manta_shared/shared/params/
mod.rs

1//! Request parameter structs passed from the CLI to the server.
2//!
3//! Each submodule mirrors a `service::*` module on the server side. The CLI
4//! constructs these structs from clap arguments; the server consumes them
5//! after deserializing the corresponding query/body. Keeping one definition
6//! per type ensures the wire format stays consistent.
7
8pub mod boot_parameters;
9pub mod cluster;
10pub mod configuration;
11pub mod group;
12pub mod hardware;
13pub mod hw_cluster;
14pub mod image;
15pub mod kernel_parameters;
16pub mod node;
17pub mod power;
18pub mod redfish_endpoints;
19pub mod sat_file;
20pub mod session;
21pub mod template;