PropertyChangeType Enum

Definition

Defines values for PropertyChangeType.

[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public enum PropertyChangeType
[<Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))>]
type PropertyChangeType = 
Public Enum PropertyChangeType
Inheritance
PropertyChangeType
Attributes
Newtonsoft.Json.JsonConverterAttribute

Fields

Array 3

The property is an array and contains nested changes.

Create 0

The property does not exist in the current state but is present in the desired state. The property will be created when the deployment is executed.

Delete 1

The property exists in the current state and is missing from the desired state. It will be deleted when the deployment is executed.

Modify 2

The property exists in both current and desired state and is different. The value of the property will change when the deployment is executed.

NoEffect 4

The property will not be set or updated.

Applies to