ManagedResourceReference Constructors

Definition

Overloads

Name Description
ManagedResourceReference()

Initializes a new instance of the ManagedResourceReference class.

ManagedResourceReference(String, DeploymentExtension, String, IDictionary<String,Object>, String, String, String)

Initializes a new instance of the ManagedResourceReference class.

ManagedResourceReference()

Initializes a new instance of the ManagedResourceReference class.

public ManagedResourceReference();
Public Sub New ()

Applies to

ManagedResourceReference(String, DeploymentExtension, String, IDictionary<String,Object>, String, String, String)

Initializes a new instance of the ManagedResourceReference class.

public ManagedResourceReference(string id = default, Microsoft.Azure.Management.Resources.DeploymentStacks.Models.DeploymentExtension extension = default, string type = default, System.Collections.Generic.IDictionary<string,object> identifiers = default, string apiVersion = default, string status = default, string denyStatus = default);
new Microsoft.Azure.Management.Resources.DeploymentStacks.Models.ManagedResourceReference : string * Microsoft.Azure.Management.Resources.DeploymentStacks.Models.DeploymentExtension * string * System.Collections.Generic.IDictionary<string, obj> * string * string * string -> Microsoft.Azure.Management.Resources.DeploymentStacks.Models.ManagedResourceReference
Public Sub New (Optional id As String = Nothing, Optional extension As DeploymentExtension = Nothing, Optional type As String = Nothing, Optional identifiers As IDictionary(Of String, Object) = Nothing, Optional apiVersion As String = Nothing, Optional status As String = Nothing, Optional denyStatus As String = Nothing)

Parameters

id
String

The ARM Resource ID of a resource managed by the deployment stack.

extension
DeploymentExtension

The extension the resource was deployed with.

type
String

The resource type.

identifiers
IDictionary<String,Object>

The extensible resource identifiers.

apiVersion
String

The API version the resource was deployed with

status
String

Current management state of the resource in the deployment stack. Possible values include: 'managed', 'removeDenyFailed', 'deleteFailed'

denyStatus
String

denyAssignment settings applied to the resource. Possible values include: 'denyDelete', 'notSupported', 'inapplicable', 'denyWriteAndDelete', 'removedBySystem', 'none', 'unknown'

Applies to