Class ArmTemplateParameterPropertiesFragment
Properties of an Azure Resource Manager template parameter.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.DevTestLabs.dll
Syntax
public class ArmTemplateParameterPropertiesFragment
Constructors
ArmTemplateParameterPropertiesFragment()
Initializes a new instance of the ArmTemplateParameterPropertiesFragment class.
Declaration
public ArmTemplateParameterPropertiesFragment ();
ArmTemplateParameterPropertiesFragment(String, String)
Initializes a new instance of the ArmTemplateParameterPropertiesFragment class.
Declaration
public ArmTemplateParameterPropertiesFragment (string name = null, string value = null);
Parameters
|
String
name
The name of the template parameter. |
|
String
value
The value of the template parameter. |
Properties
Name
Gets or sets the name of the template parameter.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="name")]
public string Name { get; set; }
Property Value
|
String
|
Value
Gets or sets the value of the template parameter.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="value")]
public string Value { get; set; }
Property Value
|
String
|