pub struct ApplyRuntimeConfigurationRequest {
pub cfs_configuration_name: String,
pub hosts_expression: String,
pub enabled: bool,
pub dry_run: bool,
}Expand description
Request body for PUT /v2/runtime-configuration.
Assigns a CFS configuration as the desired_configuration on every
CFS component matching hosts_expression, and sets the component’s
enabled flag. Idempotent: the same request repeated leaves the
nodes in the same state.
§Wire shape
{
"cfs_configuration_name": "base-mc-compute-config-cscs-26.3.0-pa",
"hosts_expression": "x8000c1s0b1n[0-3]",
"enabled": true,
"dry_run": false
}Fields§
§cfs_configuration_name: StringCFS configuration name to write as each component’s
desired_configuration. Must already exist in CFS.
hosts_expression: StringHosts expression (xnames, NIDs, or hostlist notation) naming the target nodes. HSM group names are not accepted here.
enabled: boolValue to set on each targeted CFS component’s enabled flag.
true lets CFS reconfigure on its next pass; false stages
the desired configuration without triggering CFS.
dry_run: boolWhen true, run all validations (hosts resolve, access check,
configuration existence) but skip the final CFS component
PATCH. The response still echoes the resolved xname list and
the configuration/enabled values that would have been
written, with applied: false and dry_run: true.