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 FleetIntegrationDetails {
#[serde(rename = "data_type")]
pub data_type: Option<String>,
#[serde(rename = "error_messages")]
pub error_messages: Option<Vec<String>>,
#[serde(rename = "init_config")]
pub init_config: Option<String>,
#[serde(rename = "instance_config")]
pub instance_config: Option<String>,
#[serde(rename = "is_custom_check")]
pub is_custom_check: Option<bool>,
#[serde(rename = "log_config")]
pub log_config: Option<String>,
#[serde(rename = "name")]
pub name: Option<String>,
#[serde(rename = "source_index")]
pub source_index: Option<i64>,
#[serde(rename = "source_path")]
pub source_path: Option<String>,
#[serde(rename = "type")]
pub type_: Option<String>,
#[serde(flatten)]
pub additional_properties: std::collections::BTreeMap<String, serde_json::Value>,
#[serde(skip)]
#[serde(default)]
pub(crate) _unparsed: bool,
}
impl FleetIntegrationDetails {
pub fn new() -> FleetIntegrationDetails {
FleetIntegrationDetails {
data_type: None,
error_messages: None,
init_config: None,
instance_config: None,
is_custom_check: None,
log_config: None,
name: None,
source_index: None,
source_path: None,
type_: None,
additional_properties: std::collections::BTreeMap::new(),
_unparsed: false,
}
}
pub fn data_type(mut self, value: String) -> Self {
self.data_type = Some(value);
self
}
pub fn error_messages(mut self, value: Vec<String>) -> Self {
self.error_messages = Some(value);
self
}
pub fn init_config(mut self, value: String) -> Self {
self.init_config = Some(value);
self
}
pub fn instance_config(mut self, value: String) -> Self {
self.instance_config = Some(value);
self
}
pub fn is_custom_check(mut self, value: bool) -> Self {
self.is_custom_check = Some(value);
self
}
pub fn log_config(mut self, value: String) -> Self {
self.log_config = Some(value);
self
}
pub fn name(mut self, value: String) -> Self {
self.name = Some(value);
self
}
pub fn source_index(mut self, value: i64) -> Self {
self.source_index = Some(value);
self
}
pub fn source_path(mut self, value: String) -> Self {
self.source_path = Some(value);
self
}
pub fn type_(mut self, value: String) -> Self {
self.type_ = 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 FleetIntegrationDetails {
fn default() -> Self {
Self::new()
}
}
impl<'de> Deserialize<'de> for FleetIntegrationDetails {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
struct FleetIntegrationDetailsVisitor;
impl<'a> Visitor<'a> for FleetIntegrationDetailsVisitor {
type Value = FleetIntegrationDetails;
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 data_type: Option<String> = None;
let mut error_messages: Option<Vec<String>> = None;
let mut init_config: Option<String> = None;
let mut instance_config: Option<String> = None;
let mut is_custom_check: Option<bool> = None;
let mut log_config: Option<String> = None;
let mut name: Option<String> = None;
let mut source_index: Option<i64> = None;
let mut source_path: Option<String> = None;
let mut type_: Option<String> = 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() {
"data_type" => {
if v.is_null() {
continue;
}
data_type = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"error_messages" => {
if v.is_null() {
continue;
}
error_messages =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"init_config" => {
if v.is_null() {
continue;
}
init_config =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"instance_config" => {
if v.is_null() {
continue;
}
instance_config =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"is_custom_check" => {
if v.is_null() {
continue;
}
is_custom_check =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"log_config" => {
if v.is_null() {
continue;
}
log_config = 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)?);
}
"source_index" => {
if v.is_null() {
continue;
}
source_index =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"source_path" => {
if v.is_null() {
continue;
}
source_path =
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 Ok(value) = serde_json::from_value(v.clone()) {
additional_properties.insert(k, value);
}
}
}
}
let content = FleetIntegrationDetails {
data_type,
error_messages,
init_config,
instance_config,
is_custom_check,
log_config,
name,
source_index,
source_path,
type_,
additional_properties,
_unparsed,
};
Ok(content)
}
}
deserializer.deserialize_any(FleetIntegrationDetailsVisitor)
}
}