ResourceReference Constructors

Definition

Overloads

Name Description
ResourceReference()

Initializes a new instance of the ResourceReference class.

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

Initializes a new instance of the ResourceReference class.

ResourceReference()

Initializes a new instance of the ResourceReference class.

public ResourceReference();
Public Sub New ()

Applies to

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

Initializes a new instance of the ResourceReference class.

public ResourceReference(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);
new Microsoft.Azure.Management.Resources.DeploymentStacks.Models.ResourceReference : string * Microsoft.Azure.Management.Resources.DeploymentStacks.Models.DeploymentExtension * string * System.Collections.Generic.IDictionary<string, obj> * string -> Microsoft.Azure.Management.Resources.DeploymentStacks.Models.ResourceReference
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)

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

Applies to