k8s_openapi/v1_30/apimachinery/pkg/apis/meta/v1/
object_meta.rs

1// Generated from definition io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta
2
3/// ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
4#[derive(Clone, Debug, Default, PartialEq)]
5pub struct ObjectMeta {
6    /// Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
7    pub annotations: Option<std::collections::BTreeMap<String, String>>,
8
9    /// CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
10    ///
11    /// Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
12    pub creation_timestamp: Option<crate::apimachinery::pkg::apis::meta::v1::Time>,
13
14    /// Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
15    pub deletion_grace_period_seconds: Option<i64>,
16
17    /// DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.
18    ///
19    /// Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
20    pub deletion_timestamp: Option<crate::apimachinery::pkg::apis::meta::v1::Time>,
21
22    /// Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
23    pub finalizers: Option<Vec<String>>,
24
25    /// GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.
26    ///
27    /// If this field is specified and the generated name exists, the server will return a 409.
28    ///
29    /// Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency
30    pub generate_name: Option<String>,
31
32    /// A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
33    pub generation: Option<i64>,
34
35    /// Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
36    pub labels: Option<std::collections::BTreeMap<String, String>>,
37
38    /// ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
39    pub managed_fields: Option<Vec<crate::apimachinery::pkg::apis::meta::v1::ManagedFieldsEntry>>,
40
41    /// Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
42    pub name: Option<String>,
43
44    /// Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.
45    ///
46    /// Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces
47    pub namespace: Option<String>,
48
49    /// List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
50    pub owner_references: Option<Vec<crate::apimachinery::pkg::apis::meta::v1::OwnerReference>>,
51
52    /// An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.
53    ///
54    /// Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
55    pub resource_version: Option<String>,
56
57    /// Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
58    pub self_link: Option<String>,
59
60    /// UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.
61    ///
62    /// Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
63    pub uid: Option<String>,
64}
65
66impl crate::DeepMerge for ObjectMeta {
67    fn merge_from(&mut self, other: Self) {
68        crate::merge_strategies::map::granular(&mut self.annotations, other.annotations, |current_item, other_item| {
69            crate::DeepMerge::merge_from(current_item, other_item);
70        });
71        crate::DeepMerge::merge_from(&mut self.creation_timestamp, other.creation_timestamp);
72        crate::DeepMerge::merge_from(&mut self.deletion_grace_period_seconds, other.deletion_grace_period_seconds);
73        crate::DeepMerge::merge_from(&mut self.deletion_timestamp, other.deletion_timestamp);
74        crate::merge_strategies::list::set(&mut self.finalizers, other.finalizers);
75        crate::DeepMerge::merge_from(&mut self.generate_name, other.generate_name);
76        crate::DeepMerge::merge_from(&mut self.generation, other.generation);
77        crate::merge_strategies::map::granular(&mut self.labels, other.labels, |current_item, other_item| {
78            crate::DeepMerge::merge_from(current_item, other_item);
79        });
80        crate::merge_strategies::list::atomic(&mut self.managed_fields, other.managed_fields);
81        crate::DeepMerge::merge_from(&mut self.name, other.name);
82        crate::DeepMerge::merge_from(&mut self.namespace, other.namespace);
83        crate::merge_strategies::list::map(
84            &mut self.owner_references,
85            other.owner_references,
86            &[|lhs, rhs| lhs.uid == rhs.uid],
87            |current_item, other_item| {
88                crate::DeepMerge::merge_from(current_item, other_item);
89            },
90        );
91        crate::DeepMerge::merge_from(&mut self.resource_version, other.resource_version);
92        crate::DeepMerge::merge_from(&mut self.self_link, other.self_link);
93        crate::DeepMerge::merge_from(&mut self.uid, other.uid);
94    }
95}
96
97impl<'de> crate::serde::Deserialize<'de> for ObjectMeta {
98    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: crate::serde::Deserializer<'de> {
99        #[allow(non_camel_case_types)]
100        enum Field {
101            Key_annotations,
102            Key_creation_timestamp,
103            Key_deletion_grace_period_seconds,
104            Key_deletion_timestamp,
105            Key_finalizers,
106            Key_generate_name,
107            Key_generation,
108            Key_labels,
109            Key_managed_fields,
110            Key_name,
111            Key_namespace,
112            Key_owner_references,
113            Key_resource_version,
114            Key_self_link,
115            Key_uid,
116            Other,
117        }
118
119        impl<'de> crate::serde::Deserialize<'de> for Field {
120            fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: crate::serde::Deserializer<'de> {
121                struct Visitor;
122
123                impl<'de> crate::serde::de::Visitor<'de> for Visitor {
124                    type Value = Field;
125
126                    fn expecting(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
127                        f.write_str("field identifier")
128                    }
129
130                    fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> where E: crate::serde::de::Error {
131                        Ok(match v {
132                            "annotations" => Field::Key_annotations,
133                            "creationTimestamp" => Field::Key_creation_timestamp,
134                            "deletionGracePeriodSeconds" => Field::Key_deletion_grace_period_seconds,
135                            "deletionTimestamp" => Field::Key_deletion_timestamp,
136                            "finalizers" => Field::Key_finalizers,
137                            "generateName" => Field::Key_generate_name,
138                            "generation" => Field::Key_generation,
139                            "labels" => Field::Key_labels,
140                            "managedFields" => Field::Key_managed_fields,
141                            "name" => Field::Key_name,
142                            "namespace" => Field::Key_namespace,
143                            "ownerReferences" => Field::Key_owner_references,
144                            "resourceVersion" => Field::Key_resource_version,
145                            "selfLink" => Field::Key_self_link,
146                            "uid" => Field::Key_uid,
147                            _ => Field::Other,
148                        })
149                    }
150                }
151
152                deserializer.deserialize_identifier(Visitor)
153            }
154        }
155
156        struct Visitor;
157
158        impl<'de> crate::serde::de::Visitor<'de> for Visitor {
159            type Value = ObjectMeta;
160
161            fn expecting(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
162                f.write_str("ObjectMeta")
163            }
164
165            fn visit_map<A>(self, mut map: A) -> Result<Self::Value, A::Error> where A: crate::serde::de::MapAccess<'de> {
166                let mut value_annotations: Option<std::collections::BTreeMap<String, String>> = None;
167                let mut value_creation_timestamp: Option<crate::apimachinery::pkg::apis::meta::v1::Time> = None;
168                let mut value_deletion_grace_period_seconds: Option<i64> = None;
169                let mut value_deletion_timestamp: Option<crate::apimachinery::pkg::apis::meta::v1::Time> = None;
170                let mut value_finalizers: Option<Vec<String>> = None;
171                let mut value_generate_name: Option<String> = None;
172                let mut value_generation: Option<i64> = None;
173                let mut value_labels: Option<std::collections::BTreeMap<String, String>> = None;
174                let mut value_managed_fields: Option<Vec<crate::apimachinery::pkg::apis::meta::v1::ManagedFieldsEntry>> = None;
175                let mut value_name: Option<String> = None;
176                let mut value_namespace: Option<String> = None;
177                let mut value_owner_references: Option<Vec<crate::apimachinery::pkg::apis::meta::v1::OwnerReference>> = None;
178                let mut value_resource_version: Option<String> = None;
179                let mut value_self_link: Option<String> = None;
180                let mut value_uid: Option<String> = None;
181
182                while let Some(key) = crate::serde::de::MapAccess::next_key::<Field>(&mut map)? {
183                    match key {
184                        Field::Key_annotations => value_annotations = crate::serde::de::MapAccess::next_value(&mut map)?,
185                        Field::Key_creation_timestamp => value_creation_timestamp = crate::serde::de::MapAccess::next_value(&mut map)?,
186                        Field::Key_deletion_grace_period_seconds => value_deletion_grace_period_seconds = crate::serde::de::MapAccess::next_value(&mut map)?,
187                        Field::Key_deletion_timestamp => value_deletion_timestamp = crate::serde::de::MapAccess::next_value(&mut map)?,
188                        Field::Key_finalizers => value_finalizers = crate::serde::de::MapAccess::next_value(&mut map)?,
189                        Field::Key_generate_name => value_generate_name = crate::serde::de::MapAccess::next_value(&mut map)?,
190                        Field::Key_generation => value_generation = crate::serde::de::MapAccess::next_value(&mut map)?,
191                        Field::Key_labels => value_labels = crate::serde::de::MapAccess::next_value(&mut map)?,
192                        Field::Key_managed_fields => value_managed_fields = crate::serde::de::MapAccess::next_value(&mut map)?,
193                        Field::Key_name => value_name = crate::serde::de::MapAccess::next_value(&mut map)?,
194                        Field::Key_namespace => value_namespace = crate::serde::de::MapAccess::next_value(&mut map)?,
195                        Field::Key_owner_references => value_owner_references = crate::serde::de::MapAccess::next_value(&mut map)?,
196                        Field::Key_resource_version => value_resource_version = crate::serde::de::MapAccess::next_value(&mut map)?,
197                        Field::Key_self_link => value_self_link = crate::serde::de::MapAccess::next_value(&mut map)?,
198                        Field::Key_uid => value_uid = crate::serde::de::MapAccess::next_value(&mut map)?,
199                        Field::Other => { let _: crate::serde::de::IgnoredAny = crate::serde::de::MapAccess::next_value(&mut map)?; },
200                    }
201                }
202
203                Ok(ObjectMeta {
204                    annotations: value_annotations,
205                    creation_timestamp: value_creation_timestamp,
206                    deletion_grace_period_seconds: value_deletion_grace_period_seconds,
207                    deletion_timestamp: value_deletion_timestamp,
208                    finalizers: value_finalizers,
209                    generate_name: value_generate_name,
210                    generation: value_generation,
211                    labels: value_labels,
212                    managed_fields: value_managed_fields,
213                    name: value_name,
214                    namespace: value_namespace,
215                    owner_references: value_owner_references,
216                    resource_version: value_resource_version,
217                    self_link: value_self_link,
218                    uid: value_uid,
219                })
220            }
221        }
222
223        deserializer.deserialize_struct(
224            "ObjectMeta",
225            &[
226                "annotations",
227                "creationTimestamp",
228                "deletionGracePeriodSeconds",
229                "deletionTimestamp",
230                "finalizers",
231                "generateName",
232                "generation",
233                "labels",
234                "managedFields",
235                "name",
236                "namespace",
237                "ownerReferences",
238                "resourceVersion",
239                "selfLink",
240                "uid",
241            ],
242            Visitor,
243        )
244    }
245}
246
247impl crate::serde::Serialize for ObjectMeta {
248    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: crate::serde::Serializer {
249        let mut state = serializer.serialize_struct(
250            "ObjectMeta",
251            self.annotations.as_ref().map_or(0, |_| 1) +
252            self.creation_timestamp.as_ref().map_or(0, |_| 1) +
253            self.deletion_grace_period_seconds.as_ref().map_or(0, |_| 1) +
254            self.deletion_timestamp.as_ref().map_or(0, |_| 1) +
255            self.finalizers.as_ref().map_or(0, |_| 1) +
256            self.generate_name.as_ref().map_or(0, |_| 1) +
257            self.generation.as_ref().map_or(0, |_| 1) +
258            self.labels.as_ref().map_or(0, |_| 1) +
259            self.managed_fields.as_ref().map_or(0, |_| 1) +
260            self.name.as_ref().map_or(0, |_| 1) +
261            self.namespace.as_ref().map_or(0, |_| 1) +
262            self.owner_references.as_ref().map_or(0, |_| 1) +
263            self.resource_version.as_ref().map_or(0, |_| 1) +
264            self.self_link.as_ref().map_or(0, |_| 1) +
265            self.uid.as_ref().map_or(0, |_| 1),
266        )?;
267        if let Some(value) = &self.annotations {
268            crate::serde::ser::SerializeStruct::serialize_field(&mut state, "annotations", value)?;
269        }
270        if let Some(value) = &self.creation_timestamp {
271            crate::serde::ser::SerializeStruct::serialize_field(&mut state, "creationTimestamp", value)?;
272        }
273        if let Some(value) = &self.deletion_grace_period_seconds {
274            crate::serde::ser::SerializeStruct::serialize_field(&mut state, "deletionGracePeriodSeconds", value)?;
275        }
276        if let Some(value) = &self.deletion_timestamp {
277            crate::serde::ser::SerializeStruct::serialize_field(&mut state, "deletionTimestamp", value)?;
278        }
279        if let Some(value) = &self.finalizers {
280            crate::serde::ser::SerializeStruct::serialize_field(&mut state, "finalizers", value)?;
281        }
282        if let Some(value) = &self.generate_name {
283            crate::serde::ser::SerializeStruct::serialize_field(&mut state, "generateName", value)?;
284        }
285        if let Some(value) = &self.generation {
286            crate::serde::ser::SerializeStruct::serialize_field(&mut state, "generation", value)?;
287        }
288        if let Some(value) = &self.labels {
289            crate::serde::ser::SerializeStruct::serialize_field(&mut state, "labels", value)?;
290        }
291        if let Some(value) = &self.managed_fields {
292            crate::serde::ser::SerializeStruct::serialize_field(&mut state, "managedFields", value)?;
293        }
294        if let Some(value) = &self.name {
295            crate::serde::ser::SerializeStruct::serialize_field(&mut state, "name", value)?;
296        }
297        if let Some(value) = &self.namespace {
298            crate::serde::ser::SerializeStruct::serialize_field(&mut state, "namespace", value)?;
299        }
300        if let Some(value) = &self.owner_references {
301            crate::serde::ser::SerializeStruct::serialize_field(&mut state, "ownerReferences", value)?;
302        }
303        if let Some(value) = &self.resource_version {
304            crate::serde::ser::SerializeStruct::serialize_field(&mut state, "resourceVersion", value)?;
305        }
306        if let Some(value) = &self.self_link {
307            crate::serde::ser::SerializeStruct::serialize_field(&mut state, "selfLink", value)?;
308        }
309        if let Some(value) = &self.uid {
310            crate::serde::ser::SerializeStruct::serialize_field(&mut state, "uid", value)?;
311        }
312        crate::serde::ser::SerializeStruct::end(state)
313    }
314}
315
316#[cfg(feature = "schemars")]
317impl crate::schemars::JsonSchema for ObjectMeta {
318    fn schema_name() -> String {
319        "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta".to_owned()
320    }
321
322    fn json_schema(__gen: &mut crate::schemars::gen::SchemaGenerator) -> crate::schemars::schema::Schema {
323        crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
324            metadata: Some(Box::new(crate::schemars::schema::Metadata {
325                description: Some("ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.".to_owned()),
326                ..Default::default()
327            })),
328            instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::Object))),
329            object: Some(Box::new(crate::schemars::schema::ObjectValidation {
330                properties: [
331                    (
332                        "annotations".to_owned(),
333                        crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
334                            metadata: Some(Box::new(crate::schemars::schema::Metadata {
335                                description: Some("Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations".to_owned()),
336                                ..Default::default()
337                            })),
338                            instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::Object))),
339                            object: Some(Box::new(crate::schemars::schema::ObjectValidation {
340                                additional_properties: Some(Box::new(
341                                    crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
342                                        instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::String))),
343                                        ..Default::default()
344                                    })
345                                )),
346                                ..Default::default()
347                            })),
348                            ..Default::default()
349                        }),
350                    ),
351                    (
352                        "creationTimestamp".to_owned(),
353                        {
354                            let mut schema_obj = __gen.subschema_for::<crate::apimachinery::pkg::apis::meta::v1::Time>().into_object();
355                            schema_obj.metadata = Some(Box::new(crate::schemars::schema::Metadata {
356                                description: Some("CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata".to_owned()),
357                                ..Default::default()
358                            }));
359                            crate::schemars::schema::Schema::Object(schema_obj)
360                        },
361                    ),
362                    (
363                        "deletionGracePeriodSeconds".to_owned(),
364                        crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
365                            metadata: Some(Box::new(crate::schemars::schema::Metadata {
366                                description: Some("Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.".to_owned()),
367                                ..Default::default()
368                            })),
369                            instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::Integer))),
370                            format: Some("int64".to_owned()),
371                            ..Default::default()
372                        }),
373                    ),
374                    (
375                        "deletionTimestamp".to_owned(),
376                        {
377                            let mut schema_obj = __gen.subschema_for::<crate::apimachinery::pkg::apis::meta::v1::Time>().into_object();
378                            schema_obj.metadata = Some(Box::new(crate::schemars::schema::Metadata {
379                                description: Some("DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata".to_owned()),
380                                ..Default::default()
381                            }));
382                            crate::schemars::schema::Schema::Object(schema_obj)
383                        },
384                    ),
385                    (
386                        "finalizers".to_owned(),
387                        crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
388                            metadata: Some(Box::new(crate::schemars::schema::Metadata {
389                                description: Some("Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.".to_owned()),
390                                ..Default::default()
391                            })),
392                            instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::Array))),
393                            array: Some(Box::new(crate::schemars::schema::ArrayValidation {
394                                items: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(
395                                    crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
396                                        instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::String))),
397                                        ..Default::default()
398                                    })
399                                ))),
400                                ..Default::default()
401                            })),
402                            ..Default::default()
403                        }),
404                    ),
405                    (
406                        "generateName".to_owned(),
407                        crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
408                            metadata: Some(Box::new(crate::schemars::schema::Metadata {
409                                description: Some("GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency".to_owned()),
410                                ..Default::default()
411                            })),
412                            instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::String))),
413                            ..Default::default()
414                        }),
415                    ),
416                    (
417                        "generation".to_owned(),
418                        crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
419                            metadata: Some(Box::new(crate::schemars::schema::Metadata {
420                                description: Some("A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.".to_owned()),
421                                ..Default::default()
422                            })),
423                            instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::Integer))),
424                            format: Some("int64".to_owned()),
425                            ..Default::default()
426                        }),
427                    ),
428                    (
429                        "labels".to_owned(),
430                        crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
431                            metadata: Some(Box::new(crate::schemars::schema::Metadata {
432                                description: Some("Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels".to_owned()),
433                                ..Default::default()
434                            })),
435                            instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::Object))),
436                            object: Some(Box::new(crate::schemars::schema::ObjectValidation {
437                                additional_properties: Some(Box::new(
438                                    crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
439                                        instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::String))),
440                                        ..Default::default()
441                                    })
442                                )),
443                                ..Default::default()
444                            })),
445                            ..Default::default()
446                        }),
447                    ),
448                    (
449                        "managedFields".to_owned(),
450                        crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
451                            metadata: Some(Box::new(crate::schemars::schema::Metadata {
452                                description: Some("ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.".to_owned()),
453                                ..Default::default()
454                            })),
455                            instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::Array))),
456                            array: Some(Box::new(crate::schemars::schema::ArrayValidation {
457                                items: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(__gen.subschema_for::<crate::apimachinery::pkg::apis::meta::v1::ManagedFieldsEntry>()))),
458                                ..Default::default()
459                            })),
460                            ..Default::default()
461                        }),
462                    ),
463                    (
464                        "name".to_owned(),
465                        crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
466                            metadata: Some(Box::new(crate::schemars::schema::Metadata {
467                                description: Some("Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names".to_owned()),
468                                ..Default::default()
469                            })),
470                            instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::String))),
471                            ..Default::default()
472                        }),
473                    ),
474                    (
475                        "namespace".to_owned(),
476                        crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
477                            metadata: Some(Box::new(crate::schemars::schema::Metadata {
478                                description: Some("Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces".to_owned()),
479                                ..Default::default()
480                            })),
481                            instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::String))),
482                            ..Default::default()
483                        }),
484                    ),
485                    (
486                        "ownerReferences".to_owned(),
487                        crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
488                            metadata: Some(Box::new(crate::schemars::schema::Metadata {
489                                description: Some("List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.".to_owned()),
490                                ..Default::default()
491                            })),
492                            instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::Array))),
493                            array: Some(Box::new(crate::schemars::schema::ArrayValidation {
494                                items: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(__gen.subschema_for::<crate::apimachinery::pkg::apis::meta::v1::OwnerReference>()))),
495                                ..Default::default()
496                            })),
497                            ..Default::default()
498                        }),
499                    ),
500                    (
501                        "resourceVersion".to_owned(),
502                        crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
503                            metadata: Some(Box::new(crate::schemars::schema::Metadata {
504                                description: Some("An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency".to_owned()),
505                                ..Default::default()
506                            })),
507                            instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::String))),
508                            ..Default::default()
509                        }),
510                    ),
511                    (
512                        "selfLink".to_owned(),
513                        crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
514                            metadata: Some(Box::new(crate::schemars::schema::Metadata {
515                                description: Some("Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.".to_owned()),
516                                ..Default::default()
517                            })),
518                            instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::String))),
519                            ..Default::default()
520                        }),
521                    ),
522                    (
523                        "uid".to_owned(),
524                        crate::schemars::schema::Schema::Object(crate::schemars::schema::SchemaObject {
525                            metadata: Some(Box::new(crate::schemars::schema::Metadata {
526                                description: Some("UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids".to_owned()),
527                                ..Default::default()
528                            })),
529                            instance_type: Some(crate::schemars::schema::SingleOrVec::Single(Box::new(crate::schemars::schema::InstanceType::String))),
530                            ..Default::default()
531                        }),
532                    ),
533                ].into(),
534                ..Default::default()
535            })),
536            ..Default::default()
537        })
538    }
539}