ObjectMetaV1.Finalizers Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A list of strings that describes the finalization steps for a Kubernetes resource.
[YamlDotNet.Serialization.YamlMember(Alias="finalizers")]
public System.Collections.Generic.List<string> Finalizers { get; }
[<YamlDotNet.Serialization.YamlMember(Alias="finalizers")>]
member this.Finalizers : System.Collections.Generic.List<string>
Public ReadOnly Property Finalizers As List(Of String)
Property Value
- Attributes
-
YamlDotNet.Serialization.YamlMemberAttribute
Remarks
Finalizers are used to ensure certain cleanup operations are completed before the resource is permanently removed. This property contains the names of finalizers associated with the resource, specifying additional actions or processes to be executed prior to deletion. Once all finalizers are cleared from the list, the resource deletion is finalized. Adding or removing entries in this list must align with the desired cleanup or finalization logic for the resource.