datadog_api_client/datadogV2/model/
model_cloudflare_api_token_update.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/// The definition of the `CloudflareAPIToken` object.
10#[non_exhaustive]
11#[skip_serializing_none]
12#[derive(Clone, Debug, PartialEq, Serialize)]
13pub struct CloudflareAPITokenUpdate {
14    /// The `CloudflareAPITokenUpdate` `api_token`.
15    #[serde(rename = "api_token")]
16    pub api_token: Option<String>,
17    /// The definition of the `CloudflareAPIToken` object.
18    #[serde(rename = "type")]
19    pub type_: crate::datadogV2::model::CloudflareAPITokenType,
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 CloudflareAPITokenUpdate {
28    pub fn new(type_: crate::datadogV2::model::CloudflareAPITokenType) -> CloudflareAPITokenUpdate {
29        CloudflareAPITokenUpdate {
30            api_token: None,
31            type_,
32            additional_properties: std::collections::BTreeMap::new(),
33            _unparsed: false,
34        }
35    }
36
37    pub fn api_token(mut self, value: String) -> Self {
38        self.api_token = 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 CloudflareAPITokenUpdate {
52    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
53    where
54        D: Deserializer<'de>,
55    {
56        struct CloudflareAPITokenUpdateVisitor;
57        impl<'a> Visitor<'a> for CloudflareAPITokenUpdateVisitor {
58            type Value = CloudflareAPITokenUpdate;
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 api_token: Option<String> = None;
69                let mut type_: Option<crate::datadogV2::model::CloudflareAPITokenType> = 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                        "api_token" => {
79                            if v.is_null() {
80                                continue;
81                            }
82                            api_token = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
83                        }
84                        "type" => {
85                            type_ = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
86                            if let Some(ref _type_) = type_ {
87                                match _type_ {
88                                    crate::datadogV2::model::CloudflareAPITokenType::UnparsedObject(_type_) => {
89                                        _unparsed = true;
90                                    },
91                                    _ => {}
92                                }
93                            }
94                        }
95                        &_ => {
96                            if let Ok(value) = serde_json::from_value(v.clone()) {
97                                additional_properties.insert(k, value);
98                            }
99                        }
100                    }
101                }
102                let type_ = type_.ok_or_else(|| M::Error::missing_field("type_"))?;
103
104                let content = CloudflareAPITokenUpdate {
105                    api_token,
106                    type_,
107                    additional_properties,
108                    _unparsed,
109                };
110
111                Ok(content)
112            }
113        }
114
115        deserializer.deserialize_any(CloudflareAPITokenUpdateVisitor)
116    }
117}