redfish_codegen/registries/log_service/v1_0_0.rs
1// Generated by redfish-codegen. Do not modify.
2
3use redfish_macros::IntoRedfishMessage;
4
5/// This registry defines the messages for log service related events
6#[derive(Clone, Debug, IntoRedfishMessage)]
7#[message(crate::models::message::v1_1_2::Message)]
8pub enum LogService {
9 /// This message shall be used to indicate that diagnostic data has been collected due to a client invoking the `CollectDiagnosticData` action.
10 #[message(message = "'%1' diagnostic data collected.")]
11 #[message(id = "LogService.1.0.0.DiagnosticDataCollected")]
12 #[message(severity = "crate::models::resource::Health::OK")]
13 #[message(resolution = "None.")]
14 DiagnosticDataCollected(
15 /// The value of this argument shall be a string containing the `DiagnosticDataType` parameter provided by the client when the `CollectDiagnosticData` action was invoked.
16 String,
17 ),
18}