#[derive(Clone, Debug, Default, PartialEq)]
pub struct DeviceClaim {
pub config: Option<std::vec::Vec<crate::api::resource::v1::DeviceClaimConfiguration>>,
pub constraints: Option<std::vec::Vec<crate::api::resource::v1::DeviceConstraint>>,
pub requests: Option<std::vec::Vec<crate::api::resource::v1::DeviceRequest>>,
}
impl crate::DeepMerge for DeviceClaim {
fn merge_from(&mut self, other: Self) {
crate::merge_strategies::list::atomic(&mut self.config, other.config);
crate::merge_strategies::list::atomic(&mut self.constraints, other.constraints);
crate::merge_strategies::list::atomic(&mut self.requests, other.requests);
}
}
impl<'de> crate::serde::Deserialize<'de> for DeviceClaim {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: crate::serde::Deserializer<'de> {
#[allow(non_camel_case_types)]
enum Field {
Key_config,
Key_constraints,
Key_requests,
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 {
"config" => Field::Key_config,
"constraints" => Field::Key_constraints,
"requests" => Field::Key_requests,
_ => Field::Other,
})
}
}
deserializer.deserialize_identifier(Visitor)
}
}
struct Visitor;
impl<'de> crate::serde::de::Visitor<'de> for Visitor {
type Value = DeviceClaim;
fn expecting(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.write_str("DeviceClaim")
}
fn visit_map<A>(self, mut map: A) -> Result<Self::Value, A::Error> where A: crate::serde::de::MapAccess<'de> {
let mut value_config: Option<std::vec::Vec<crate::api::resource::v1::DeviceClaimConfiguration>> = None;
let mut value_constraints: Option<std::vec::Vec<crate::api::resource::v1::DeviceConstraint>> = None;
let mut value_requests: Option<std::vec::Vec<crate::api::resource::v1::DeviceRequest>> = None;
while let Some(key) = crate::serde::de::MapAccess::next_key::<Field>(&mut map)? {
match key {
Field::Key_config => value_config = crate::serde::de::MapAccess::next_value(&mut map)?,
Field::Key_constraints => value_constraints = crate::serde::de::MapAccess::next_value(&mut map)?,
Field::Key_requests => value_requests = crate::serde::de::MapAccess::next_value(&mut map)?,
Field::Other => { let _: crate::serde::de::IgnoredAny = crate::serde::de::MapAccess::next_value(&mut map)?; },
}
}
Ok(DeviceClaim {
config: value_config,
constraints: value_constraints,
requests: value_requests,
})
}
}
deserializer.deserialize_struct(
"DeviceClaim",
&[
"config",
"constraints",
"requests",
],
Visitor,
)
}
}
impl crate::serde::Serialize for DeviceClaim {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: crate::serde::Serializer {
let mut state = serializer.serialize_struct(
"DeviceClaim",
self.config.as_ref().map_or(0, |_| 1) +
self.constraints.as_ref().map_or(0, |_| 1) +
self.requests.as_ref().map_or(0, |_| 1),
)?;
if let Some(value) = &self.config {
crate::serde::ser::SerializeStruct::serialize_field(&mut state, "config", value)?;
}
if let Some(value) = &self.constraints {
crate::serde::ser::SerializeStruct::serialize_field(&mut state, "constraints", value)?;
}
if let Some(value) = &self.requests {
crate::serde::ser::SerializeStruct::serialize_field(&mut state, "requests", value)?;
}
crate::serde::ser::SerializeStruct::end(state)
}
}
#[cfg(feature = "schemars")]
impl crate::schemars::JsonSchema for DeviceClaim {
fn schema_name() -> std::borrow::Cow<'static, str> {
"io.k8s.api.resource.v1.DeviceClaim".into()
}
fn json_schema(__gen: &mut crate::schemars::SchemaGenerator) -> crate::schemars::Schema {
crate::schemars::json_schema!({
"description": "DeviceClaim defines how to request devices with a ResourceClaim.",
"type": "object",
"properties": {
"config": {
"description": "This field holds configuration for multiple potential drivers which could satisfy requests in this claim. It is ignored while allocating the claim.",
"type": "array",
"items": (__gen.subschema_for::<crate::api::resource::v1::DeviceClaimConfiguration>()),
},
"constraints": {
"description": "These constraints must be satisfied by the set of devices that get allocated for the claim.",
"type": "array",
"items": (__gen.subschema_for::<crate::api::resource::v1::DeviceConstraint>()),
},
"requests": {
"description": "Requests represent individual requests for distinct devices which must all be satisfied. If empty, nothing needs to be allocated.",
"type": "array",
"items": (__gen.subschema_for::<crate::api::resource::v1::DeviceRequest>()),
},
},
})
}
}