Package com.pulumi.automation.events
Class PropertyDiff
- java.lang.Object
-
- com.pulumi.automation.events.PropertyDiff
-
public class PropertyDiff extends java.lang.Object
PropertyDiff
describes the difference between a single property's old and new values.
-
-
Constructor Summary
Constructors Constructor Description PropertyDiff(DiffKind kind, boolean inputDiff)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isInputDiff()
True if this is a difference between old and new inputs rather than old state and new inputs.DiffKind
kind()
Gets the kind of difference.
-
-
-
Constructor Detail
-
PropertyDiff
public PropertyDiff(DiffKind kind, boolean inputDiff)
-
-
Method Detail
-
kind
public DiffKind kind()
Gets the kind of difference.- Returns:
- the difference kind
-
isInputDiff
public boolean isInputDiff()
True if this is a difference between old and new inputs rather than old state and new inputs.- Returns:
- true if this is a difference between old and new inputs
-
-