ChangeType Enum
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.
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
Name | Value | Description |
---|---|---|
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. |
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. |
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. |
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. |
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. |
Unsupported | 6 | The resource is not supported by What-If. |