PropertyChangeType Enum

  • java.lang.Object
    • java.lang.Enum
      • com.azure.resourcemanager.resources.deployments.models.PropertyChangeType

public enum PropertyChangeType
extends Enum<PropertyChangeType>

The type of property change.

Fields

ARRAY

The property is an array and contains nested changes.

CREATE

The property does not exist in the current state but is present in the desired state.

DELETE

The property exists in the current state and is missing from the desired state.

MODIFY

The property exists in both current and desired state and is different.

NO_EFFECT

The property will not be set or updated.

Methods inherited from java.lang.Enum

Methods inherited from java.lang.Object

Methods

fromString(String value)

public static PropertyChangeType fromString(String value)

Parses a serialized value to a PropertyChangeType instance.

Parameters

value
String
the serialized value to parse.

Returns

the parsed PropertyChangeType object, or null if unable to parse.

toString()

public String toString()

Returns

Overrides
java.lang.Enum.toString()

valueOf(String name)

public static PropertyChangeType valueOf(String name)

Parameters

name
String

Returns

values()

public static PropertyChangeType[] values()

Returns

Applies to