ActionOnUnmanage Constructors

Definition

Overloads

Name Description
ActionOnUnmanage()

Initializes a new instance of the ActionOnUnmanage class.

ActionOnUnmanage(String, String, String, String)

Initializes a new instance of the ActionOnUnmanage class.

ActionOnUnmanage()

Initializes a new instance of the ActionOnUnmanage class.

public ActionOnUnmanage();
Public Sub New ()

Applies to

ActionOnUnmanage(String, String, String, String)

Initializes a new instance of the ActionOnUnmanage class.

public ActionOnUnmanage(string resources, string resourceGroups = default, string managementGroups = default, string resourcesWithoutDeleteSupport = default);
new Microsoft.Azure.Management.Resources.DeploymentStacks.Models.ActionOnUnmanage : string * string * string * string -> Microsoft.Azure.Management.Resources.DeploymentStacks.Models.ActionOnUnmanage
Public Sub New (resources As String, Optional resourceGroups As String = Nothing, Optional managementGroups As String = Nothing, Optional resourcesWithoutDeleteSupport As String = Nothing)

Parameters

resources
String

Specifies an action for a newly unmanaged resource. Possible values include: 'delete', 'detach'

resourceGroups
String

Specifies an action for a newly unmanaged resource group. Possible values include: 'delete', 'detach'

managementGroups
String

Specifies an action for a newly unmanaged resource management group. Possible values include: 'delete', 'detach'

resourcesWithoutDeleteSupport
String

Some resources do not support deletion. This flag will denote how the stack should handle those resources. Possible values include: 'detach', 'fail'

Applies to