Struct k8s_openapi::apimachinery::pkg::apis::meta::v1::ManagedFieldsEntry
source · pub struct ManagedFieldsEntry {
pub api_version: Option<String>,
pub fields_type: Option<String>,
pub fields_v1: Option<FieldsV1>,
pub manager: Option<String>,
pub operation: Option<String>,
pub subresource: Option<String>,
pub time: Option<Time>,
}
Expand description
ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.
Fields§
§api_version: Option<String>
APIVersion defines the version of this resource that this field set applies to. The format is “group/version” just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
fields_type: Option<String>
FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: “FieldsV1”
fields_v1: Option<FieldsV1>
FieldsV1 holds the first JSON version format as described in the “FieldsV1” type.
manager: Option<String>
Manager is an identifier of the workflow managing these fields.
operation: Option<String>
Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are ‘Apply’ and ‘Update’.
subresource: Option<String>
Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
time: Option<Time>
Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.
Trait Implementations§
source§impl Clone for ManagedFieldsEntry
impl Clone for ManagedFieldsEntry
source§fn clone(&self) -> ManagedFieldsEntry
fn clone(&self) -> ManagedFieldsEntry
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ManagedFieldsEntry
impl Debug for ManagedFieldsEntry
source§impl DeepMerge for ManagedFieldsEntry
impl DeepMerge for ManagedFieldsEntry
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
other
into self
.source§impl Default for ManagedFieldsEntry
impl Default for ManagedFieldsEntry
source§fn default() -> ManagedFieldsEntry
fn default() -> ManagedFieldsEntry
source§impl<'de> Deserialize<'de> for ManagedFieldsEntry
impl<'de> Deserialize<'de> for ManagedFieldsEntry
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
source§impl PartialEq<ManagedFieldsEntry> for ManagedFieldsEntry
impl PartialEq<ManagedFieldsEntry> for ManagedFieldsEntry
source§fn eq(&self, other: &ManagedFieldsEntry) -> bool
fn eq(&self, other: &ManagedFieldsEntry) -> bool
self
and other
values to be equal, and is used
by ==
.