ChangeType Enum
Definition
Defines values for ChangeType.
public enum ChangeType extends Enum<ChangeType>
- Inheritance
-
java.lang.Objectjava.lang.EnumChangeType
Inherited Members
Fields
| CREATE | 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 | 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 | 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 | 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 | 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. |
| NO_CHANGE | 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. |