ProvisioningOutput 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
ProvisioningOutput(String, BicepExpression) |
Creates a new ProvisioningOutput. |
ProvisioningOutput(String, Expression) |
Creates a new ProvisioningOutput. |
ProvisioningOutput(String, Type) |
Creates a new ProvisioningOutput. |
ProvisioningOutput(String, BicepExpression)
- Source:
- ProvisioningOutput.cs
Creates a new ProvisioningOutput.
public ProvisioningOutput (string bicepIdentifier, Azure.Provisioning.Expressions.BicepExpression type);
new Azure.Provisioning.ProvisioningOutput : string * Azure.Provisioning.Expressions.BicepExpression -> Azure.Provisioning.ProvisioningOutput
Public Sub New (bicepIdentifier As String, type As BicepExpression)
Parameters
- bicepIdentifier
- String
Bicep identifier of the output. This value can contain letters, numbers, and underscores.
- type
- BicepExpression
Type of the output.
Applies to
ProvisioningOutput(String, Expression)
- Source:
- ProvisioningOutput.cs
Creates a new ProvisioningOutput.
public ProvisioningOutput (string name, Azure.Provisioning.Expressions.Expression type);
new Azure.Provisioning.ProvisioningOutput : string * Azure.Provisioning.Expressions.Expression -> Azure.Provisioning.ProvisioningOutput
Public Sub New (name As String, type As Expression)
Parameters
- name
- String
Name of the output. This value can contain letters, numbers, and underscores.
- type
- Expression
Type of the output.
Applies to
ProvisioningOutput(String, Type)
- Source:
- ProvisioningOutput.cs
- Source:
- ProvisioningOutput.cs
Creates a new ProvisioningOutput.
public ProvisioningOutput (string bicepIdentifier, Type type);
public ProvisioningOutput (string name, Type type);
new Azure.Provisioning.ProvisioningOutput : string * Type -> Azure.Provisioning.ProvisioningOutput
new Azure.Provisioning.ProvisioningOutput : string * Type -> Azure.Provisioning.ProvisioningOutput
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 output. This value can contain letters, numbers, and underscores.
- type
- Type
Type of the output.
Applies to
Azure SDK for .NET