Enum Class DiffKind

java.lang.Object
java.lang.Enum<DiffKind>
com.pulumi.automation.events.DiffKind
All Implemented Interfaces:
Serializable, Comparable<DiffKind>, Constable

public enum DiffKind extends Enum<DiffKind>
DiffKind describes the kind of a particular property diff.
  • Enum Constant Details

    • ADD

      public static final DiffKind ADD
      Add indicates that the property was added.
    • ADD_REPLACE

      public static final DiffKind ADD_REPLACE
      AddReplace indicates that the property was added and requires that the resource be replaced.
    • DELETE

      public static final DiffKind DELETE
      Delete indicates that the property was deleted.
    • DELETE_REPLACE

      public static final DiffKind DELETE_REPLACE
      DeleteReplace indicates that the property was deleted and requires that the resource be replaced.
    • UPDATE

      public static final DiffKind UPDATE
      Update indicates that the property was updated.
    • UPDATE_REPLACE

      public static final DiffKind UPDATE_REPLACE
      UpdateReplace indicates that the property was updated and requires that the resource be replaced.
  • Method Details

    • values

      public static DiffKind[] 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

      public static DiffKind valueOf(String name)
      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 name
      NullPointerException - if the argument is null