ChangeType Enum

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

public enum ChangeType
extends Enum<ChangeType>

Type of change that will be made to the resource when the deployment is executed.

Fields

CREATE

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

DELETE

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

DEPLOY

The resource exists in the current state and the desired state and will be redeployed when the deployment is executed.

IGNORE

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

MODIFY

The resource exists in the current state and the desired state and will be redeployed when the deployment is executed.

NO_CHANGE

The resource exists in the current state and the desired state and will be redeployed when the deployment is executed.

UNSUPPORTED

The resource is not supported by What-If.

Methods inherited from java.lang.Enum

Methods inherited from java.lang.Object

Methods

fromString(String value)

public static ChangeType fromString(String value)

Parses a serialized value to a ChangeType instance.

Parameters

value
String
the serialized value to parse.

Returns

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

toString()

public String toString()

Returns

Overrides
java.lang.Enum.toString()

valueOf(String name)

public static ChangeType valueOf(String name)

Parameters

name
String

Returns

values()

public static ChangeType[] values()

Returns

Applies to