redfish_codegen/models/memory/v1_17_1/inject_persistent_poison_request_body.rs
1// Generated by redfish-codegen. Do not modify.
2
3
4/// Injects poison to a specific persistent memory address in the memory device.
5#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
6#[derive(derivative::Derivative)]
7#[derivative(Default)]
8pub struct InjectPersistentPoisonRequestBody {
9 /// The device persistent physical address in which to perform a poison injection as a hex-encoded string.
10 #[serde(rename = "PhysicalAddress")]
11 pub physical_address: String,
12}
13
14impl crate::Metadata<'static> for InjectPersistentPoisonRequestBody {
15 const JSON_SCHEMA: &'static str = "Memory.v1_17_1.json";
16}