Share via


ObjectMetaV1.DeletionTimestamp Property

Definition

Gets or sets the timestamp marking when the object is scheduled for deletion.

[YamlDotNet.Serialization.YamlMember(Alias="deletionTimestamp")]
public DateTime? DeletionTimestamp { get; set; }
[<YamlDotNet.Serialization.YamlMember(Alias="deletionTimestamp")>]
member this.DeletionTimestamp : Nullable<DateTime> with get, set
Public Property DeletionTimestamp As Nullable(Of DateTime)

Property Value

Attributes
YamlDotNet.Serialization.YamlMemberAttribute

Remarks

This property represents the time at which a Kubernetes resource is marked for deletion. If set, it indicates that the object is in the process of being deleted, and should not be acted upon, except for finalizers which need to complete their cleanup work. The object will be deleted once all finalizers are completed.

Applies to