datadog_api_client/datadogV2/model/
model_asset_operating_system.rs

1// Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
2// This product includes software developed at Datadog (https://www.datadoghq.com/).
3// Copyright 2019-Present Datadog, Inc.
4use serde::de::{Error, MapAccess, Visitor};
5use serde::{Deserialize, Deserializer, Serialize};
6use serde_with::skip_serializing_none;
7use std::fmt::{self, Formatter};
8
9/// Asset operating system.
10#[non_exhaustive]
11#[skip_serializing_none]
12#[derive(Clone, Debug, PartialEq, Serialize)]
13pub struct AssetOperatingSystem {
14    /// Operating system version.
15    #[serde(rename = "description")]
16    pub description: Option<String>,
17    /// Operating system name.
18    #[serde(rename = "name")]
19    pub name: String,
20    #[serde(flatten)]
21    pub additional_properties: std::collections::BTreeMap<String, serde_json::Value>,
22    #[serde(skip)]
23    #[serde(default)]
24    pub(crate) _unparsed: bool,
25}
26
27impl AssetOperatingSystem {
28    pub fn new(name: String) -> AssetOperatingSystem {
29        AssetOperatingSystem {
30            description: None,
31            name,
32            additional_properties: std::collections::BTreeMap::new(),
33            _unparsed: false,
34        }
35    }
36
37    pub fn description(mut self, value: String) -> Self {
38        self.description = Some(value);
39        self
40    }
41
42    pub fn additional_properties(
43        mut self,
44        value: std::collections::BTreeMap<String, serde_json::Value>,
45    ) -> Self {
46        self.additional_properties = value;
47        self
48    }
49}
50
51impl<'de> Deserialize<'de> for AssetOperatingSystem {
52    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
53    where
54        D: Deserializer<'de>,
55    {
56        struct AssetOperatingSystemVisitor;
57        impl<'a> Visitor<'a> for AssetOperatingSystemVisitor {
58            type Value = AssetOperatingSystem;
59
60            fn expecting(&self, f: &mut Formatter<'_>) -> fmt::Result {
61                f.write_str("a mapping")
62            }
63
64            fn visit_map<M>(self, mut map: M) -> Result<Self::Value, M::Error>
65            where
66                M: MapAccess<'a>,
67            {
68                let mut description: Option<String> = None;
69                let mut name: Option<String> = None;
70                let mut additional_properties: std::collections::BTreeMap<
71                    String,
72                    serde_json::Value,
73                > = std::collections::BTreeMap::new();
74                let mut _unparsed = false;
75
76                while let Some((k, v)) = map.next_entry::<String, serde_json::Value>()? {
77                    match k.as_str() {
78                        "description" => {
79                            if v.is_null() {
80                                continue;
81                            }
82                            description =
83                                Some(serde_json::from_value(v).map_err(M::Error::custom)?);
84                        }
85                        "name" => {
86                            name = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
87                        }
88                        &_ => {
89                            if let Ok(value) = serde_json::from_value(v.clone()) {
90                                additional_properties.insert(k, value);
91                            }
92                        }
93                    }
94                }
95                let name = name.ok_or_else(|| M::Error::missing_field("name"))?;
96
97                let content = AssetOperatingSystem {
98                    description,
99                    name,
100                    additional_properties,
101                    _unparsed,
102                };
103
104                Ok(content)
105            }
106        }
107
108        deserializer.deserialize_any(AssetOperatingSystemVisitor)
109    }
110}