ResourceGroupDefinition Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
- tags
- IDictionary<String,String>
Tags to be assigned to this resource group.
Applies to
Azure SDK for .NET