//! Parameters for `GET /hardware-clusters` and `GET /hardware-nodes-list`.
/// Typed parameters for fetching cluster hardware inventory.
pubstructGetHardwareClusterParams{/// Cluster (HSM group) name to inventory; `None` falls back to the
/// operator default.
pubhsm_group_name:Option<String>,
/// Operator default from `cli.toml`'s `parent_hsm_group`, used when
/// `hsm_group_name` is absent.
pubsettings_hsm_group_name:Option<String>,
}/// Typed parameters for fetching hardware inventory for a list of nodes.
#[derive(Debug)]pubstructGetHardwareNodesListParams{/// Comma-separated xnames.
pubxnames: String,
}