Share via


ObjectMetaV1.ResourceVersion Property

Definition

Represents the specific version of a Kubernetes resource as stored in the server's database.

[YamlDotNet.Serialization.YamlMember(Alias="resourceVersion")]
public string ResourceVersion { get; set; }
[<YamlDotNet.Serialization.YamlMember(Alias="resourceVersion")>]
member this.ResourceVersion : string with get, set
Public Property ResourceVersion As String

Property Value

Attributes
YamlDotNet.Serialization.YamlMemberAttribute

Remarks

The ResourceVersion property is used to track changes to a Kubernetes resource. It is primarily used for optimistic concurrency control and to ensure that modifications to a resource do not conflict with other concurrent updates. The value of this property changes every time the resource is updated.

Applies to