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