use serde::{Deserialize, Deserializer, Serialize, Serializer};
#[non_exhaustive]
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum SecurityMonitoringCriticalAssetSeverity {
INFO,
LOW,
MEDIUM,
HIGH,
CRITICAL,
INCREASE,
DECREASE,
NO_OP,
UnparsedObject(crate::datadog::UnparsedObject),
}
impl ToString for SecurityMonitoringCriticalAssetSeverity {
fn to_string(&self) -> String {
match self {
Self::INFO => String::from("info"),
Self::LOW => String::from("low"),
Self::MEDIUM => String::from("medium"),
Self::HIGH => String::from("high"),
Self::CRITICAL => String::from("critical"),
Self::INCREASE => String::from("increase"),
Self::DECREASE => String::from("decrease"),
Self::NO_OP => String::from("no-op"),
Self::UnparsedObject(v) => v.value.to_string(),
}
}
}
impl Serialize for SecurityMonitoringCriticalAssetSeverity {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
match self {
Self::UnparsedObject(v) => v.serialize(serializer),
_ => serializer.serialize_str(self.to_string().as_str()),
}
}
}
impl<'de> Deserialize<'de> for SecurityMonitoringCriticalAssetSeverity {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
let s: String = String::deserialize(deserializer)?;
Ok(match s.as_str() {
"info" => Self::INFO,
"low" => Self::LOW,
"medium" => Self::MEDIUM,
"high" => Self::HIGH,
"critical" => Self::CRITICAL,
"increase" => Self::INCREASE,
"decrease" => Self::DECREASE,
"no-op" => Self::NO_OP,
_ => Self::UnparsedObject(crate::datadog::UnparsedObject {
value: serde_json::Value::String(s.into()),
}),
})
}
}