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
#[derive(
Clone,
Default,
PartialEq,
serde::Deserialize,
serde::Serialize,
std::fmt::Debug
)]
/// DeviceRequest is a request for devices required for a claim. This is typically a request for a single resource like a device, but can also ask for several identical devices.
///
/// A DeviceClassName is currently required. Clients must check that it is indeed set. It's absence indicates that something changed in a way that is not supported by the client yet, in which case it must refuse to handle the request.
#[serde(rename_all = "camelCase", deny_unknown_fields)]
pub struct DeviceRequestAc {
/// AdminAccess indicates that this is a claim for administrative access to the device(s). Claims with AdminAccess are expected to be used for monitoring or other management services for a device. They ignore all ordinary claims to the device with respect to access modes and any resource allocations.
///
/// This is an alpha field and requires enabling the DRAAdminAccess feature gate. Admin access is disabled if this field is unset or set to false, otherwise it is enabled.
#[serde(skip_serializing_if = "Option::is_none")]
pub admin_access: Option<bool>,
/// AllocationMode and its related fields define how devices are allocated to satisfy this request. Supported values are:
///
/// - ExactCount: This request is for a specific number of devices.
/// This is the default. The exact number is provided in the
/// count field.
///
/// - All: This request is for all of the matching devices in a pool.
/// Allocation will fail if some devices are already allocated,
/// unless adminAccess is requested.
///
/// If AlloctionMode is not specified, the default mode is ExactCount. If the mode is ExactCount and count is not specified, the default count is one. Any other requests must specify this field.
///
/// More modes may get added in the future. Clients must refuse to handle requests with unknown modes.
#[serde(skip_serializing_if = "Option::is_none")]
pub allocation_mode: Option<std::string::String>,
/// Count is used only when the count mode is "ExactCount". Must be greater than zero. If AllocationMode is ExactCount and this field is not specified, the default is one.
#[serde(skip_serializing_if = "Option::is_none")]
pub count: Option<i64>,
/// DeviceClassName references a specific DeviceClass, which can define additional configuration and selectors to be inherited by this request.
///
/// A class is required. Which classes are available depends on the cluster.
///
/// Administrators may use this to restrict which devices may get requested by only installing classes with selectors for permitted devices. If users are free to request anything without restrictions, then administrators can create an empty DeviceClass for users to reference.
#[serde(skip_serializing_if = "Option::is_none")]
pub device_class_name: Option<std::string::String>,
/// Name can be used to reference this request in a pod.spec.containers\[\].resources.claims entry and in a constraint of the claim.
///
/// Must be a DNS label.
#[serde(skip_serializing_if = "Option::is_none")]
pub name: Option<std::string::String>,
/// Selectors define criteria which must be satisfied by a specific device in order for that device to be considered for this request. All selectors must be satisfied for a device to be considered.
#[serde(skip_serializing_if = "Option::is_none")]
pub selectors: Option<
std::vec::Vec<
<::k8s_openapi027::api::resource::v1beta1::DeviceSelector as crate::Optionable>::Optioned,
>,
>,
}
#[automatically_derived]
impl crate::Optionable for k8s_openapi027::api::resource::v1beta1::DeviceRequest {
type Optioned = DeviceRequestAc;
}
#[automatically_derived]
impl crate::Optionable for DeviceRequestAc {
type Optioned = DeviceRequestAc;
}
#[automatically_derived]
#[cfg(feature = "k8s_openapi_convert")]
impl crate::OptionableConvert for k8s_openapi027::api::resource::v1beta1::DeviceRequest {
fn into_optioned(self) -> DeviceRequestAc {
DeviceRequestAc {
admin_access: self.admin_access,
allocation_mode: self.allocation_mode,
count: self.count,
device_class_name: Some(self.device_class_name),
name: Some(self.name),
selectors: crate::OptionableConvert::into_optioned(self.selectors),
}
}
fn try_from_optioned(value: DeviceRequestAc) -> Result<Self, crate::Error> {
Ok(Self {
admin_access: value.admin_access,
allocation_mode: value.allocation_mode,
count: value.count,
device_class_name: value
.device_class_name
.ok_or(crate::Error {
missing_field: "device_class_name",
})?,
name: value
.name
.ok_or(crate::Error {
missing_field: "name",
})?,
selectors: crate::OptionableConvert::try_from_optioned(value.selectors)?,
})
}
fn merge(&mut self, other: DeviceRequestAc) -> Result<(), crate::Error> {
if self.admin_access.is_none() {
self.admin_access = crate::OptionableConvert::try_from_optioned(
other.admin_access,
)?;
} else if let Some(self_value) = self.admin_access.as_mut()
&& let Some(other_value) = other.admin_access
{
crate::OptionableConvert::merge(self_value, other_value)?;
}
if self.allocation_mode.is_none() {
self.allocation_mode = crate::OptionableConvert::try_from_optioned(
other.allocation_mode,
)?;
} else if let Some(self_value) = self.allocation_mode.as_mut()
&& let Some(other_value) = other.allocation_mode
{
crate::OptionableConvert::merge(self_value, other_value)?;
}
if self.count.is_none() {
self.count = crate::OptionableConvert::try_from_optioned(other.count)?;
} else if let Some(self_value) = self.count.as_mut()
&& let Some(other_value) = other.count
{
crate::OptionableConvert::merge(self_value, other_value)?;
}
if let Some(other_value) = other.device_class_name {
self.device_class_name = crate::OptionableConvert::try_from_optioned(
other_value,
)?;
}
if let Some(other_value) = other.name {
self.name = crate::OptionableConvert::try_from_optioned(other_value)?;
}
if self.selectors.is_none() {
self.selectors = crate::OptionableConvert::try_from_optioned(
other.selectors,
)?;
} else if let Some(self_value) = self.selectors.as_mut()
&& let Some(other_value) = other.selectors
{
*self_value = crate::OptionableConvert::try_from_optioned(other_value)?;
}
Ok(())
}
}
#[automatically_derived]
#[cfg(feature = "k8s_openapi_convert")]
impl crate::OptionedConvert<k8s_openapi027::api::resource::v1beta1::DeviceRequest>
for DeviceRequestAc {
fn from_optionable(
value: k8s_openapi027::api::resource::v1beta1::DeviceRequest,
) -> Self {
crate::OptionableConvert::into_optioned(value)
}
fn try_into_optionable(
self,
) -> Result<k8s_openapi027::api::resource::v1beta1::DeviceRequest, crate::Error> {
crate::OptionableConvert::try_from_optioned(self)
}
fn merge_into(
self,
other: &mut k8s_openapi027::api::resource::v1beta1::DeviceRequest,
) -> Result<(), crate::Error> {
crate::OptionableConvert::merge(other, self)
}
}