DeploymentStackTemplateDefinition Constructors

Definition

Overloads

Name Description
DeploymentStackTemplateDefinition()

Initializes a new instance of the DeploymentStackTemplateDefinition class.

DeploymentStackTemplateDefinition(IDictionary<String,Object>, DeploymentStacksTemplateLink)

Initializes a new instance of the DeploymentStackTemplateDefinition class.

DeploymentStackTemplateDefinition()

Initializes a new instance of the DeploymentStackTemplateDefinition class.

public DeploymentStackTemplateDefinition();
Public Sub New ()

Applies to

DeploymentStackTemplateDefinition(IDictionary<String,Object>, DeploymentStacksTemplateLink)

Initializes a new instance of the DeploymentStackTemplateDefinition class.

public DeploymentStackTemplateDefinition(System.Collections.Generic.IDictionary<string,object> template = default, Microsoft.Azure.Management.Resources.DeploymentStacks.Models.DeploymentStacksTemplateLink templateLink = default);
new Microsoft.Azure.Management.Resources.DeploymentStacks.Models.DeploymentStackTemplateDefinition : System.Collections.Generic.IDictionary<string, obj> * Microsoft.Azure.Management.Resources.DeploymentStacks.Models.DeploymentStacksTemplateLink -> Microsoft.Azure.Management.Resources.DeploymentStacks.Models.DeploymentStackTemplateDefinition
Public Sub New (Optional template As IDictionary(Of String, Object) = Nothing, Optional templateLink As DeploymentStacksTemplateLink = Nothing)

Parameters

template
IDictionary<String,Object>

The template content. Use this element to pass the template syntax directly in the request rather than link to an existing template. It can be a JObject or well-formed JSON string. Use either the templateLink property or the template property, but not both.

templateLink
DeploymentStacksTemplateLink

The URI of the template. Use either the templateLink property or the template property, but not both.

Applies to