ChangeType Enum

Definition

Defines values for ChangeType.

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

Fields

Create 0

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

Delete 1

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

Deploy 3

The resource exists in the current state and the desired state and will be redeployed when the deployment is executed. The properties of the resource may or may not change.

Ignore 2

The resource exists in the current state and is missing from the desired state. The resource will not be deployed or modified when the deployment is executed.

Modify 5

The resource exists in the current state and the desired state and will be redeployed when the deployment is executed. The properties of the resource will change.

NoChange 4

The resource exists in the current state and the desired state and will be redeployed when the deployment is executed. The properties of the resource will not change.

Unsupported 6

The resource is not supported by What-If.

Applies to