Share via


TemplateArtifact Constructors

Definition

Overloads

TemplateArtifact()

Initializes a new instance of the TemplateArtifact class.

TemplateArtifact(Object, IDictionary<String,ParameterValue>, String, String, String, String, String, IList<String>, String)

Initializes a new instance of the TemplateArtifact class.

TemplateArtifact()

Initializes a new instance of the TemplateArtifact class.

public TemplateArtifact ();
Public Sub New ()

Applies to

TemplateArtifact(Object, IDictionary<String,ParameterValue>, String, String, String, String, String, IList<String>, String)

Initializes a new instance of the TemplateArtifact class.

public TemplateArtifact (object template, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Blueprint.Models.ParameterValue> parameters, string id = default, string type = default, string name = default, string displayName = default, string description = default, System.Collections.Generic.IList<string> dependsOn = default, string resourceGroup = default);
new Microsoft.Azure.Management.Blueprint.Models.TemplateArtifact : obj * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Blueprint.Models.ParameterValue> * string * string * string * string * string * System.Collections.Generic.IList<string> * string -> Microsoft.Azure.Management.Blueprint.Models.TemplateArtifact
Public Sub New (template As Object, parameters As IDictionary(Of String, ParameterValue), Optional id As String = Nothing, Optional type As String = Nothing, Optional name As String = Nothing, Optional displayName As String = Nothing, Optional description As String = Nothing, Optional dependsOn As IList(Of String) = Nothing, Optional resourceGroup As String = Nothing)

Parameters

template
Object

The Resource Manager template blueprint artifact body.

parameters
IDictionary<String,ParameterValue>

Resource Manager template blueprint artifact parameter values.

id
String

String Id used to locate any resource on Azure.

type
String

Type of this resource.

name
String

Name of this resource.

displayName
String

One-liner string explain this resource.

description
String

Multi-line explain this resource.

dependsOn
IList<String>

Artifacts which need to be deployed before the specified artifact.

resourceGroup
String

If applicable, the name of the resource group placeholder to which the Resource Manager template blueprint artifact will be deployed.

Applies to