ProvisioningVariable 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
| Name | Description |
|---|---|
| ProvisioningVariable(String, Type) |
Creates a new ProvisioningVariable. |
| ProvisioningVariable(String, BicepExpression, BicepValue<Object>) |
Creates a new ProvisioningVariable. |
ProvisioningVariable(String, Type)
- Source:
- ProvisioningVariable.cs
- Source:
- ProvisioningVariable.cs
Creates a new ProvisioningVariable.
public ProvisioningVariable(string bicepIdentifier, Type type);
new Azure.Provisioning.ProvisioningVariable : string * Type -> Azure.Provisioning.ProvisioningVariable
Public Sub New (bicepIdentifier As String, type As Type)
Parameters
- bicepIdentifier
- String
Bicep identifier of the variable. This value can contain letters, numbers, and underscores.
- type
- Type
Type of the variable.
Applies to
ProvisioningVariable(String, BicepExpression, BicepValue<Object>)
- Source:
- ProvisioningVariable.cs
- Source:
- ProvisioningVariable.cs
Creates a new ProvisioningVariable.
protected ProvisioningVariable(string bicepIdentifier, Azure.Provisioning.Expressions.BicepExpression type, Azure.Provisioning.BicepValue<object>? value);
new Azure.Provisioning.ProvisioningVariable : string * Azure.Provisioning.Expressions.BicepExpression * Azure.Provisioning.BicepValue<obj> -> Azure.Provisioning.ProvisioningVariable
Protected Sub New (bicepIdentifier As String, type As BicepExpression, value As BicepValue(Of Object))
Parameters
- bicepIdentifier
- String
Bicep identifier of the variable. This value can contain letters, numbers, and underscores.
- type
- BicepExpression
Type of the variable.
- value
- BicepValue<Object>
Default value of the variable.