Skip to content
Docs Try Aspire

ManagedFieldsEntryV1 Properties

Class Properties 7 members
Represents an entry detailing managed fields within a Kubernetes resource metadata.
ApiVersion Section titled ApiVersion string
Gets or sets the API version of the resource being managed.
public string ApiVersion { get; set; }
This property represents the API version used in the managed fields entry. It is a critical component for versioning resources in Kubernetes and ensures compatibility with the defined API specifications.
FieldsType Section titled FieldsType string
Represents the type of managed fields for a Kubernetes resource.
public string FieldsType { get; set; }
The FieldsType property identifies the type of field management information associated with a Kubernetes resource entry. It is part of the serialization structure for managed fields in Kubernetes.
Represents a structure used for describing serialized field data in Kubernetes resources.
public FieldsV1 FieldsV1 { get; set; }
This class is part of the Kubernetes resource management utilities and allows for defining field-level information associated with Kubernetes objects. It is generally used in conjunction with ManagedFieldsEntryV1 to provide detailed information about managed fields within a Kubernetes resource object.
Gets or sets the name of the entity, application, or process that is managing the resource.
public string Manager { get; set; }
The Manager property identifies the controller or user responsible for making updates or changes to the managed fields. This information is typically used for auditing and tracking purposes within Kubernetes-managed resources.
Represents the operation type performed on the Kubernetes resource.
public string Operation { get; set; }
The Operation property specifies the type of operation (e.g., Apply, Update, etc.) that was executed on the managed resource. It is used to track the state changes performed by various controllers or users in the Kubernetes system.
Subresource Section titled Subresource string
Gets or sets the subresource associated with the managed fields entry.
public string Subresource { get; set; }
This property specifies the subresource of the Kubernetes object that the managed fields are applied to. It is typically used to provide context about the specific subresource being accessed or managed.
Time Section titled Time nullable DateTime?
Gets or sets the timestamp indicating the time of the operation described in the managed fields entry.
public DateTime? Time { get; set; }
Represents the date and time of the action associated with this entry in the managed fields. The value is nullable, meaning it can be null if the time is not specified or unavailable.