1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#[derive(Clone, Debug, Default, PartialEq)]
pub struct Probe {
pub exec: Option<crate::api::core::v1::ExecAction>,
pub failure_threshold: Option<i32>,
pub http_get: Option<crate::api::core::v1::HTTPGetAction>,
pub initial_delay_seconds: Option<i32>,
pub period_seconds: Option<i32>,
pub success_threshold: Option<i32>,
pub tcp_socket: Option<crate::api::core::v1::TCPSocketAction>,
pub timeout_seconds: Option<i32>,
}
impl<'de> serde::Deserialize<'de> for Probe {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: serde::Deserializer<'de> {
#[allow(non_camel_case_types)]
enum Field {
Key_exec,
Key_failure_threshold,
Key_http_get,
Key_initial_delay_seconds,
Key_period_seconds,
Key_success_threshold,
Key_tcp_socket,
Key_timeout_seconds,
Other,
}
impl<'de> serde::Deserialize<'de> for Field {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: serde::Deserializer<'de> {
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = Field;
fn expecting(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.write_str("field identifier")
}
fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> where E: serde::de::Error {
Ok(match v {
"exec" => Field::Key_exec,
"failureThreshold" => Field::Key_failure_threshold,
"httpGet" => Field::Key_http_get,
"initialDelaySeconds" => Field::Key_initial_delay_seconds,
"periodSeconds" => Field::Key_period_seconds,
"successThreshold" => Field::Key_success_threshold,
"tcpSocket" => Field::Key_tcp_socket,
"timeoutSeconds" => Field::Key_timeout_seconds,
_ => Field::Other,
})
}
}
deserializer.deserialize_identifier(Visitor)
}
}
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = Probe;
fn expecting(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.write_str("Probe")
}
fn visit_map<A>(self, mut map: A) -> Result<Self::Value, A::Error> where A: serde::de::MapAccess<'de> {
let mut value_exec: Option<crate::api::core::v1::ExecAction> = None;
let mut value_failure_threshold: Option<i32> = None;
let mut value_http_get: Option<crate::api::core::v1::HTTPGetAction> = None;
let mut value_initial_delay_seconds: Option<i32> = None;
let mut value_period_seconds: Option<i32> = None;
let mut value_success_threshold: Option<i32> = None;
let mut value_tcp_socket: Option<crate::api::core::v1::TCPSocketAction> = None;
let mut value_timeout_seconds: Option<i32> = None;
while let Some(key) = serde::de::MapAccess::next_key::<Field>(&mut map)? {
match key {
Field::Key_exec => value_exec = serde::de::MapAccess::next_value(&mut map)?,
Field::Key_failure_threshold => value_failure_threshold = serde::de::MapAccess::next_value(&mut map)?,
Field::Key_http_get => value_http_get = serde::de::MapAccess::next_value(&mut map)?,
Field::Key_initial_delay_seconds => value_initial_delay_seconds = serde::de::MapAccess::next_value(&mut map)?,
Field::Key_period_seconds => value_period_seconds = serde::de::MapAccess::next_value(&mut map)?,
Field::Key_success_threshold => value_success_threshold = serde::de::MapAccess::next_value(&mut map)?,
Field::Key_tcp_socket => value_tcp_socket = serde::de::MapAccess::next_value(&mut map)?,
Field::Key_timeout_seconds => value_timeout_seconds = serde::de::MapAccess::next_value(&mut map)?,
Field::Other => { let _: serde::de::IgnoredAny = serde::de::MapAccess::next_value(&mut map)?; },
}
}
Ok(Probe {
exec: value_exec,
failure_threshold: value_failure_threshold,
http_get: value_http_get,
initial_delay_seconds: value_initial_delay_seconds,
period_seconds: value_period_seconds,
success_threshold: value_success_threshold,
tcp_socket: value_tcp_socket,
timeout_seconds: value_timeout_seconds,
})
}
}
deserializer.deserialize_struct(
"Probe",
&[
"exec",
"failureThreshold",
"httpGet",
"initialDelaySeconds",
"periodSeconds",
"successThreshold",
"tcpSocket",
"timeoutSeconds",
],
Visitor,
)
}
}
impl serde::Serialize for Probe {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: serde::Serializer {
let mut state = serializer.serialize_struct(
"Probe",
self.exec.as_ref().map_or(0, |_| 1) +
self.failure_threshold.as_ref().map_or(0, |_| 1) +
self.http_get.as_ref().map_or(0, |_| 1) +
self.initial_delay_seconds.as_ref().map_or(0, |_| 1) +
self.period_seconds.as_ref().map_or(0, |_| 1) +
self.success_threshold.as_ref().map_or(0, |_| 1) +
self.tcp_socket.as_ref().map_or(0, |_| 1) +
self.timeout_seconds.as_ref().map_or(0, |_| 1),
)?;
if let Some(value) = &self.exec {
serde::ser::SerializeStruct::serialize_field(&mut state, "exec", value)?;
}
if let Some(value) = &self.failure_threshold {
serde::ser::SerializeStruct::serialize_field(&mut state, "failureThreshold", value)?;
}
if let Some(value) = &self.http_get {
serde::ser::SerializeStruct::serialize_field(&mut state, "httpGet", value)?;
}
if let Some(value) = &self.initial_delay_seconds {
serde::ser::SerializeStruct::serialize_field(&mut state, "initialDelaySeconds", value)?;
}
if let Some(value) = &self.period_seconds {
serde::ser::SerializeStruct::serialize_field(&mut state, "periodSeconds", value)?;
}
if let Some(value) = &self.success_threshold {
serde::ser::SerializeStruct::serialize_field(&mut state, "successThreshold", value)?;
}
if let Some(value) = &self.tcp_socket {
serde::ser::SerializeStruct::serialize_field(&mut state, "tcpSocket", value)?;
}
if let Some(value) = &self.timeout_seconds {
serde::ser::SerializeStruct::serialize_field(&mut state, "timeoutSeconds", value)?;
}
serde::ser::SerializeStruct::end(state)
}
}