Secret.Immutable 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.
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.