Share via


Secret.Immutable Property

Definition

Indicates whether the Secret is immutable.

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

Property Value

Attributes
YamlDotNet.Serialization.YamlMemberAttribute

Remarks

When set to true, the Secret object becomes immutable, meaning that its contents cannot be altered after creation. This ensures the integrity of the data stored in the Secret and prevents unintended modifications. If null or set to false, the Secret can be updated.

Applies to