Package com.pulumi.automation.events
Enum Class DiffKind
- All Implemented Interfaces:
Serializable,Comparable<DiffKind>,Constable
DiffKind describes the kind of a particular property diff.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAdd indicates that the property was added.AddReplace indicates that the property was added and requires that the resource be replaced.Delete indicates that the property was deleted.DeleteReplace indicates that the property was deleted and requires that the resource be replaced.Update indicates that the property was updated.UpdateReplace indicates that the property was updated and requires that the resource be replaced. -
Method Summary
-
Enum Constant Details
-
ADD
Add indicates that the property was added. -
ADD_REPLACE
AddReplace indicates that the property was added and requires that the resource be replaced. -
DELETE
Delete indicates that the property was deleted. -
DELETE_REPLACE
DeleteReplace indicates that the property was deleted and requires that the resource be replaced. -
UPDATE
Update indicates that the property was updated. -
UPDATE_REPLACE
UpdateReplace indicates that the property was updated and requires that the resource be replaced.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-