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 CIAppHostInfo {
#[serde(rename = "hostname")]
pub hostname: Option<String>,
#[serde(rename = "labels")]
pub labels: Option<Vec<String>>,
#[serde(rename = "name")]
pub name: Option<String>,
#[serde(rename = "workspace")]
pub workspace: Option<String>,
#[serde(flatten)]
pub additional_properties: std::collections::BTreeMap<String, serde_json::Value>,
#[serde(skip)]
#[serde(default)]
pub(crate) _unparsed: bool,
}
impl CIAppHostInfo {
pub fn new() -> CIAppHostInfo {
CIAppHostInfo {
hostname: None,
labels: None,
name: None,
workspace: None,
additional_properties: std::collections::BTreeMap::new(),
_unparsed: false,
}
}
pub fn hostname(mut self, value: String) -> Self {
self.hostname = Some(value);
self
}
pub fn labels(mut self, value: Vec<String>) -> Self {
self.labels = Some(value);
self
}
pub fn name(mut self, value: String) -> Self {
self.name = Some(value);
self
}
pub fn workspace(mut self, value: String) -> Self {
self.workspace = 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 CIAppHostInfo {
fn default() -> Self {
Self::new()
}
}
impl<'de> Deserialize<'de> for CIAppHostInfo {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
struct CIAppHostInfoVisitor;
impl<'a> Visitor<'a> for CIAppHostInfoVisitor {
type Value = CIAppHostInfo;
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 hostname: Option<String> = None;
let mut labels: Option<Vec<String>> = None;
let mut name: Option<String> = None;
let mut workspace: 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() {
"hostname" => {
if v.is_null() {
continue;
}
hostname = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"labels" => {
if v.is_null() {
continue;
}
labels = 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)?);
}
"workspace" => {
if v.is_null() {
continue;
}
workspace = 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 = CIAppHostInfo {
hostname,
labels,
name,
workspace,
additional_properties,
_unparsed,
};
Ok(content)
}
}
deserializer.deserialize_any(CIAppHostInfoVisitor)
}
}