#[derive(Clone, Debug, Default, PartialEq)]
pub struct ReplicaSetStatus {
pub available_replicas: Option<i32>,
pub conditions: Option<std::vec::Vec<crate::api::apps::v1::ReplicaSetCondition>>,
pub fully_labeled_replicas: Option<i32>,
pub observed_generation: Option<i64>,
pub ready_replicas: Option<i32>,
pub replicas: i32,
pub terminating_replicas: Option<i32>,
}
impl crate::DeepMerge for ReplicaSetStatus {
fn merge_from(&mut self, other: Self) {
crate::DeepMerge::merge_from(&mut self.available_replicas, other.available_replicas);
crate::merge_strategies::list::map(
&mut self.conditions,
other.conditions,
&[|lhs, rhs| lhs.type_ == rhs.type_],
|current_item, other_item| {
crate::DeepMerge::merge_from(current_item, other_item);
},
);
crate::DeepMerge::merge_from(&mut self.fully_labeled_replicas, other.fully_labeled_replicas);
crate::DeepMerge::merge_from(&mut self.observed_generation, other.observed_generation);
crate::DeepMerge::merge_from(&mut self.ready_replicas, other.ready_replicas);
crate::DeepMerge::merge_from(&mut self.replicas, other.replicas);
crate::DeepMerge::merge_from(&mut self.terminating_replicas, other.terminating_replicas);
}
}
impl<'de> crate::serde::Deserialize<'de> for ReplicaSetStatus {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: crate::serde::Deserializer<'de> {
#[allow(non_camel_case_types)]
enum Field {
Key_available_replicas,
Key_conditions,
Key_fully_labeled_replicas,
Key_observed_generation,
Key_ready_replicas,
Key_replicas,
Key_terminating_replicas,
Other,
}
impl<'de> crate::serde::Deserialize<'de> for Field {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: crate::serde::Deserializer<'de> {
struct Visitor;
impl crate::serde::de::Visitor<'_> for Visitor {
type Value = Field;
fn expecting(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.write_str("field identifier")
}
fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> where E: crate::serde::de::Error {
Ok(match v {
"availableReplicas" => Field::Key_available_replicas,
"conditions" => Field::Key_conditions,
"fullyLabeledReplicas" => Field::Key_fully_labeled_replicas,
"observedGeneration" => Field::Key_observed_generation,
"readyReplicas" => Field::Key_ready_replicas,
"replicas" => Field::Key_replicas,
"terminatingReplicas" => Field::Key_terminating_replicas,
_ => Field::Other,
})
}
}
deserializer.deserialize_identifier(Visitor)
}
}
struct Visitor;
impl<'de> crate::serde::de::Visitor<'de> for Visitor {
type Value = ReplicaSetStatus;
fn expecting(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.write_str("ReplicaSetStatus")
}
fn visit_map<A>(self, mut map: A) -> Result<Self::Value, A::Error> where A: crate::serde::de::MapAccess<'de> {
let mut value_available_replicas: Option<i32> = None;
let mut value_conditions: Option<std::vec::Vec<crate::api::apps::v1::ReplicaSetCondition>> = None;
let mut value_fully_labeled_replicas: Option<i32> = None;
let mut value_observed_generation: Option<i64> = None;
let mut value_ready_replicas: Option<i32> = None;
let mut value_replicas: Option<i32> = None;
let mut value_terminating_replicas: Option<i32> = None;
while let Some(key) = crate::serde::de::MapAccess::next_key::<Field>(&mut map)? {
match key {
Field::Key_available_replicas => value_available_replicas = crate::serde::de::MapAccess::next_value(&mut map)?,
Field::Key_conditions => value_conditions = crate::serde::de::MapAccess::next_value(&mut map)?,
Field::Key_fully_labeled_replicas => value_fully_labeled_replicas = crate::serde::de::MapAccess::next_value(&mut map)?,
Field::Key_observed_generation => value_observed_generation = crate::serde::de::MapAccess::next_value(&mut map)?,
Field::Key_ready_replicas => value_ready_replicas = crate::serde::de::MapAccess::next_value(&mut map)?,
Field::Key_replicas => value_replicas = crate::serde::de::MapAccess::next_value(&mut map)?,
Field::Key_terminating_replicas => value_terminating_replicas = crate::serde::de::MapAccess::next_value(&mut map)?,
Field::Other => { let _: crate::serde::de::IgnoredAny = crate::serde::de::MapAccess::next_value(&mut map)?; },
}
}
Ok(ReplicaSetStatus {
available_replicas: value_available_replicas,
conditions: value_conditions,
fully_labeled_replicas: value_fully_labeled_replicas,
observed_generation: value_observed_generation,
ready_replicas: value_ready_replicas,
replicas: value_replicas.unwrap_or_default(),
terminating_replicas: value_terminating_replicas,
})
}
}
deserializer.deserialize_struct(
"ReplicaSetStatus",
&[
"availableReplicas",
"conditions",
"fullyLabeledReplicas",
"observedGeneration",
"readyReplicas",
"replicas",
"terminatingReplicas",
],
Visitor,
)
}
}
impl crate::serde::Serialize for ReplicaSetStatus {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: crate::serde::Serializer {
let mut state = serializer.serialize_struct(
"ReplicaSetStatus",
1 +
self.available_replicas.as_ref().map_or(0, |_| 1) +
self.conditions.as_ref().map_or(0, |_| 1) +
self.fully_labeled_replicas.as_ref().map_or(0, |_| 1) +
self.observed_generation.as_ref().map_or(0, |_| 1) +
self.ready_replicas.as_ref().map_or(0, |_| 1) +
self.terminating_replicas.as_ref().map_or(0, |_| 1),
)?;
if let Some(value) = &self.available_replicas {
crate::serde::ser::SerializeStruct::serialize_field(&mut state, "availableReplicas", value)?;
}
if let Some(value) = &self.conditions {
crate::serde::ser::SerializeStruct::serialize_field(&mut state, "conditions", value)?;
}
if let Some(value) = &self.fully_labeled_replicas {
crate::serde::ser::SerializeStruct::serialize_field(&mut state, "fullyLabeledReplicas", value)?;
}
if let Some(value) = &self.observed_generation {
crate::serde::ser::SerializeStruct::serialize_field(&mut state, "observedGeneration", value)?;
}
if let Some(value) = &self.ready_replicas {
crate::serde::ser::SerializeStruct::serialize_field(&mut state, "readyReplicas", value)?;
}
crate::serde::ser::SerializeStruct::serialize_field(&mut state, "replicas", &self.replicas)?;
if let Some(value) = &self.terminating_replicas {
crate::serde::ser::SerializeStruct::serialize_field(&mut state, "terminatingReplicas", value)?;
}
crate::serde::ser::SerializeStruct::end(state)
}
}
#[cfg(feature = "schemars")]
impl crate::schemars::JsonSchema for ReplicaSetStatus {
fn schema_name() -> std::borrow::Cow<'static, str> {
"io.k8s.api.apps.v1.ReplicaSetStatus".into()
}
fn json_schema(__gen: &mut crate::schemars::SchemaGenerator) -> crate::schemars::Schema {
crate::schemars::json_schema!({
"description": "ReplicaSetStatus represents the current status of a ReplicaSet.",
"type": "object",
"properties": {
"availableReplicas": {
"description": "The number of available non-terminating pods (ready for at least minReadySeconds) for this replica set.",
"type": "integer",
"format": "int32",
},
"conditions": {
"description": "Represents the latest available observations of a replica set's current state.",
"type": "array",
"items": (__gen.subschema_for::<crate::api::apps::v1::ReplicaSetCondition>()),
},
"fullyLabeledReplicas": {
"description": "The number of non-terminating pods that have labels matching the labels of the pod template of the replicaset.",
"type": "integer",
"format": "int32",
},
"observedGeneration": {
"description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.",
"type": "integer",
"format": "int64",
},
"readyReplicas": {
"description": "The number of non-terminating pods targeted by this ReplicaSet with a Ready Condition.",
"type": "integer",
"format": "int32",
},
"replicas": {
"description": "Replicas is the most recently observed number of non-terminating pods. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset",
"type": "integer",
"format": "int32",
},
"terminatingReplicas": {
"description": "The number of terminating pods for this replica set. Terminating pods have a non-null .metadata.deletionTimestamp and have not yet reached the Failed or Succeeded .status.phase.\n\nThis is a beta field and requires enabling DeploymentReplicaSetTerminatingReplicas feature (enabled by default).",
"type": "integer",
"format": "int32",
},
},
"required": [
"replicas",
],
})
}
}