use serde::de::{Error, MapAccess, Visitor};
use serde::{Deserialize, Deserializer, Serialize};
use serde_with::skip_serializing_none;
use std::fmt::{self, Formatter};
#[non_exhaustive]
#[skip_serializing_none]
#[derive(Clone, Debug, PartialEq, Serialize)]
pub struct SecurityMonitoringSignalRuleResponse {
#[serde(rename = "cases")]
pub cases: Option<Vec<crate::datadogV2::model::SecurityMonitoringRuleCase>>,
#[serde(rename = "createdAt")]
pub created_at: Option<i64>,
#[serde(rename = "creationAuthorId")]
pub creation_author_id: Option<i64>,
#[serde(rename = "customMessage")]
pub custom_message: Option<String>,
#[serde(rename = "customName")]
pub custom_name: Option<String>,
#[serde(rename = "deprecationDate")]
pub deprecation_date: Option<i64>,
#[serde(rename = "filters")]
pub filters: Option<Vec<crate::datadogV2::model::SecurityMonitoringFilter>>,
#[serde(rename = "hasExtendedTitle")]
pub has_extended_title: Option<bool>,
#[serde(rename = "id")]
pub id: Option<String>,
#[serde(rename = "isDefault")]
pub is_default: Option<bool>,
#[serde(rename = "isDeleted")]
pub is_deleted: Option<bool>,
#[serde(rename = "isEnabled")]
pub is_enabled: Option<bool>,
#[serde(rename = "message")]
pub message: Option<String>,
#[serde(rename = "name")]
pub name: Option<String>,
#[serde(rename = "options")]
pub options: Option<crate::datadogV2::model::SecurityMonitoringRuleOptions>,
#[serde(rename = "queries")]
pub queries: Option<Vec<crate::datadogV2::model::SecurityMonitoringSignalRuleResponseQuery>>,
#[serde(rename = "tags")]
pub tags: Option<Vec<String>>,
#[serde(rename = "type")]
pub type_: Option<crate::datadogV2::model::SecurityMonitoringSignalRuleType>,
#[serde(rename = "updateAuthorId")]
pub update_author_id: Option<i64>,
#[serde(rename = "version")]
pub version: Option<i64>,
#[serde(flatten)]
pub additional_properties: std::collections::BTreeMap<String, serde_json::Value>,
#[serde(skip)]
#[serde(default)]
pub(crate) _unparsed: bool,
}
impl SecurityMonitoringSignalRuleResponse {
pub fn new() -> SecurityMonitoringSignalRuleResponse {
SecurityMonitoringSignalRuleResponse {
cases: None,
created_at: None,
creation_author_id: None,
custom_message: None,
custom_name: None,
deprecation_date: None,
filters: None,
has_extended_title: None,
id: None,
is_default: None,
is_deleted: None,
is_enabled: None,
message: None,
name: None,
options: None,
queries: None,
tags: None,
type_: None,
update_author_id: None,
version: None,
additional_properties: std::collections::BTreeMap::new(),
_unparsed: false,
}
}
pub fn cases(
mut self,
value: Vec<crate::datadogV2::model::SecurityMonitoringRuleCase>,
) -> Self {
self.cases = Some(value);
self
}
pub fn created_at(mut self, value: i64) -> Self {
self.created_at = Some(value);
self
}
pub fn creation_author_id(mut self, value: i64) -> Self {
self.creation_author_id = Some(value);
self
}
pub fn custom_message(mut self, value: String) -> Self {
self.custom_message = Some(value);
self
}
pub fn custom_name(mut self, value: String) -> Self {
self.custom_name = Some(value);
self
}
pub fn deprecation_date(mut self, value: i64) -> Self {
self.deprecation_date = Some(value);
self
}
pub fn filters(
mut self,
value: Vec<crate::datadogV2::model::SecurityMonitoringFilter>,
) -> Self {
self.filters = Some(value);
self
}
pub fn has_extended_title(mut self, value: bool) -> Self {
self.has_extended_title = Some(value);
self
}
pub fn id(mut self, value: String) -> Self {
self.id = Some(value);
self
}
pub fn is_default(mut self, value: bool) -> Self {
self.is_default = Some(value);
self
}
pub fn is_deleted(mut self, value: bool) -> Self {
self.is_deleted = Some(value);
self
}
pub fn is_enabled(mut self, value: bool) -> Self {
self.is_enabled = Some(value);
self
}
pub fn message(mut self, value: String) -> Self {
self.message = Some(value);
self
}
pub fn name(mut self, value: String) -> Self {
self.name = Some(value);
self
}
pub fn options(
mut self,
value: crate::datadogV2::model::SecurityMonitoringRuleOptions,
) -> Self {
self.options = Some(value);
self
}
pub fn queries(
mut self,
value: Vec<crate::datadogV2::model::SecurityMonitoringSignalRuleResponseQuery>,
) -> Self {
self.queries = Some(value);
self
}
pub fn tags(mut self, value: Vec<String>) -> Self {
self.tags = Some(value);
self
}
pub fn type_(
mut self,
value: crate::datadogV2::model::SecurityMonitoringSignalRuleType,
) -> Self {
self.type_ = Some(value);
self
}
pub fn update_author_id(mut self, value: i64) -> Self {
self.update_author_id = Some(value);
self
}
pub fn version(mut self, value: i64) -> Self {
self.version = Some(value);
self
}
pub fn additional_properties(
mut self,
value: std::collections::BTreeMap<String, serde_json::Value>,
) -> Self {
self.additional_properties = value;
self
}
}
impl Default for SecurityMonitoringSignalRuleResponse {
fn default() -> Self {
Self::new()
}
}
impl<'de> Deserialize<'de> for SecurityMonitoringSignalRuleResponse {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
struct SecurityMonitoringSignalRuleResponseVisitor;
impl<'a> Visitor<'a> for SecurityMonitoringSignalRuleResponseVisitor {
type Value = SecurityMonitoringSignalRuleResponse;
fn expecting(&self, f: &mut Formatter<'_>) -> fmt::Result {
f.write_str("a mapping")
}
fn visit_map<M>(self, mut map: M) -> Result<Self::Value, M::Error>
where
M: MapAccess<'a>,
{
let mut cases: Option<Vec<crate::datadogV2::model::SecurityMonitoringRuleCase>> =
None;
let mut created_at: Option<i64> = None;
let mut creation_author_id: Option<i64> = None;
let mut custom_message: Option<String> = None;
let mut custom_name: Option<String> = None;
let mut deprecation_date: Option<i64> = None;
let mut filters: Option<Vec<crate::datadogV2::model::SecurityMonitoringFilter>> =
None;
let mut has_extended_title: Option<bool> = None;
let mut id: Option<String> = None;
let mut is_default: Option<bool> = None;
let mut is_deleted: Option<bool> = None;
let mut is_enabled: Option<bool> = None;
let mut message: Option<String> = None;
let mut name: Option<String> = None;
let mut options: Option<crate::datadogV2::model::SecurityMonitoringRuleOptions> =
None;
let mut queries: Option<
Vec<crate::datadogV2::model::SecurityMonitoringSignalRuleResponseQuery>,
> = None;
let mut tags: Option<Vec<String>> = None;
let mut type_: Option<crate::datadogV2::model::SecurityMonitoringSignalRuleType> =
None;
let mut update_author_id: Option<i64> = None;
let mut version: Option<i64> = None;
let mut additional_properties: std::collections::BTreeMap<
String,
serde_json::Value,
> = std::collections::BTreeMap::new();
let mut _unparsed = false;
while let Some((k, v)) = map.next_entry::<String, serde_json::Value>()? {
match k.as_str() {
"cases" => {
if v.is_null() {
continue;
}
cases = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"createdAt" => {
if v.is_null() {
continue;
}
created_at = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"creationAuthorId" => {
if v.is_null() {
continue;
}
creation_author_id =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"customMessage" => {
if v.is_null() {
continue;
}
custom_message =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"customName" => {
if v.is_null() {
continue;
}
custom_name =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"deprecationDate" => {
if v.is_null() {
continue;
}
deprecation_date =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"filters" => {
if v.is_null() {
continue;
}
filters = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"hasExtendedTitle" => {
if v.is_null() {
continue;
}
has_extended_title =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"id" => {
if v.is_null() {
continue;
}
id = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"isDefault" => {
if v.is_null() {
continue;
}
is_default = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"isDeleted" => {
if v.is_null() {
continue;
}
is_deleted = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"isEnabled" => {
if v.is_null() {
continue;
}
is_enabled = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"message" => {
if v.is_null() {
continue;
}
message = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"name" => {
if v.is_null() {
continue;
}
name = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"options" => {
if v.is_null() {
continue;
}
options = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"queries" => {
if v.is_null() {
continue;
}
queries = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"tags" => {
if v.is_null() {
continue;
}
tags = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"type" => {
if v.is_null() {
continue;
}
type_ = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
if let Some(ref _type_) = type_ {
match _type_ {
crate::datadogV2::model::SecurityMonitoringSignalRuleType::UnparsedObject(_type_) => {
_unparsed = true;
},
_ => {}
}
}
}
"updateAuthorId" => {
if v.is_null() {
continue;
}
update_author_id =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"version" => {
if v.is_null() {
continue;
}
version = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
&_ => {
if let Ok(value) = serde_json::from_value(v.clone()) {
additional_properties.insert(k, value);
}
}
}
}
let content = SecurityMonitoringSignalRuleResponse {
cases,
created_at,
creation_author_id,
custom_message,
custom_name,
deprecation_date,
filters,
has_extended_title,
id,
is_default,
is_deleted,
is_enabled,
message,
name,
options,
queries,
tags,
type_,
update_author_id,
version,
additional_properties,
_unparsed,
};
Ok(content)
}
}
deserializer.deserialize_any(SecurityMonitoringSignalRuleResponseVisitor)
}
}