ParameterDefinition Constructors

Definition

Overloads

ParameterDefinition()

Initializes a new instance of the ParameterDefinition class.

ParameterDefinition(String, String, String, String, Object, IList<Object>)

Initializes a new instance of the ParameterDefinition class.

ParameterDefinition()

Initializes a new instance of the ParameterDefinition class.

public ParameterDefinition ();
Public Sub New ()

Applies to

ParameterDefinition(String, String, String, String, Object, IList<Object>)

Initializes a new instance of the ParameterDefinition class.

public ParameterDefinition (string type, string displayName = default, string description = default, string strongType = default, object defaultValue = default, System.Collections.Generic.IList<object> allowedValues = default);
new Microsoft.Azure.Management.Blueprint.Models.ParameterDefinition : string * string * string * string * obj * System.Collections.Generic.IList<obj> -> Microsoft.Azure.Management.Blueprint.Models.ParameterDefinition
Public Sub New (type As String, Optional displayName As String = Nothing, Optional description As String = Nothing, Optional strongType As String = Nothing, Optional defaultValue As Object = Nothing, Optional allowedValues As IList(Of Object) = Nothing)

Parameters

type
String

Allowed data types for Resource Manager template parameters. Possible values include: 'string', 'array', 'bool', 'int', 'object', 'secureObject', 'secureString'

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.

defaultValue
Object

Default Value for this parameter.

allowedValues
IList<Object>

Array of allowed values for this parameter.

Applies to