Share via


ResourceGroupDefinition Constructors

Definition

Overloads

ResourceGroupDefinition()

Initializes a new instance of the ResourceGroupDefinition class.

ResourceGroupDefinition(String, String, String, String, String, IList<String>, IDictionary<String,String>)

Initializes a new instance of the ResourceGroupDefinition class.

ResourceGroupDefinition()

Initializes a new instance of the ResourceGroupDefinition class.

public ResourceGroupDefinition ();
Public Sub New ()

Applies to

ResourceGroupDefinition(String, String, String, String, String, IList<String>, IDictionary<String,String>)

Initializes a new instance of the ResourceGroupDefinition class.

public ResourceGroupDefinition (string name = default, string location = default, string displayName = default, string description = default, string strongType = default, System.Collections.Generic.IList<string> dependsOn = default, System.Collections.Generic.IDictionary<string,string> tags = default);
new Microsoft.Azure.Management.Blueprint.Models.ResourceGroupDefinition : string * string * string * string * string * System.Collections.Generic.IList<string> * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.Blueprint.Models.ResourceGroupDefinition
Public Sub New (Optional name As String = Nothing, Optional location As String = Nothing, Optional displayName As String = Nothing, Optional description As String = Nothing, Optional strongType As String = Nothing, Optional dependsOn As IList(Of String) = Nothing, Optional tags As IDictionary(Of String, String) = Nothing)

Parameters

name
String

Name of this resourceGroup. Leave empty if the resource group name will be specified during the blueprint assignment.

location
String

Location of this resourceGroup. Leave empty if the resource group location will be specified during the blueprint assignment.

displayName
String

DisplayName of this parameter/resourceGroup.

description
String

Description of this parameter/resourceGroup.

strongType
String

StrongType for UI to render rich experience during blueprint assignment. Supported strong types are resourceType, principalId and location.

dependsOn
IList<String>

Artifacts which need to be deployed before this resource group.

tags
IDictionary<String,String>

Tags to be assigned to this resource group.

Applies to