你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
PropertyChangeType 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 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
Name | Value | Description |
---|---|---|
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. |
Array | 3 | The property is an array and contains nested changes. |
NoEffect | 4 | The property will not be set or updated. |