Condividi tramite


DeploymentStacksWhatIfChangeType Struct

Definition

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

public readonly struct DeploymentStacksWhatIfChangeType : IEquatable<Azure.ResourceManager.Resources.DeploymentStacks.Models.DeploymentStacksWhatIfChangeType>
type DeploymentStacksWhatIfChangeType = struct
Public Structure DeploymentStacksWhatIfChangeType
Implements IEquatable(Of DeploymentStacksWhatIfChangeType)
Inheritance
DeploymentStacksWhatIfChangeType
Implements

Constructors

Name Description
DeploymentStacksWhatIfChangeType(String)

Initializes a new instance of DeploymentStacksWhatIfChangeType.

Properties

Name Description
Create

The resource does not exist in the current state but is present in the desired state. The resource will be created when the deployment is executed.

Delete

The resource exists in the current state and is missing from the desired state. The resource will be deleted from Azure after the deployment is executed.

Detach

The resource exists in the current state and is missing from the desired state. The resource will be removed from the deployment stack, but will remain in Azure, after the deployment is executed.

Modify

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

NoChange

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

Unsupported

The resource is not supported by What-If.

Methods

Name Description
Equals(DeploymentStacksWhatIfChangeType)

Indicates whether the current object is equal to another object of the same type.

ToString()

Returns the fully qualified type name of this instance.

Operators

Name Description
Equality(DeploymentStacksWhatIfChangeType, DeploymentStacksWhatIfChangeType)

Determines if two DeploymentStacksWhatIfChangeType values are the same.

Implicit(String to DeploymentStacksWhatIfChangeType)

Converts a string to a DeploymentStacksWhatIfChangeType.

Implicit(String to Nullable<DeploymentStacksWhatIfChangeType>)
Inequality(DeploymentStacksWhatIfChangeType, DeploymentStacksWhatIfChangeType)

Determines if two DeploymentStacksWhatIfChangeType values are not the same.

Applies to