The managedEnvironments/dotNetComponents resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.App/managedEnvironments/dotNetComponents resource, add the following JSON to your template.
{
"type": "Microsoft.App/managedEnvironments/dotNetComponents",
"apiVersion": "2023-11-02-preview",
"name": "string",
"properties": {
"componentType": "string",
"configurations": [
{
"propertyName": "string",
"value": "string"
}
],
"serviceBinds": [
{
"name": "string",
"serviceId": "string"
}
]
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.App/managedEnvironments/dotNetComponents' |
apiVersion | The resource api version | '2023-11-02-preview' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
string (required) |
properties | .NET Component resource specific properties | DotNetComponentProperties |
Name | Description | Value |
---|---|---|
componentType | Type of the .NET Component. | 'AspireDashboard' 'AspireResourceServerApi' |
configurations | List of .NET Components configuration properties | DotNetComponentConfigurationProperty[] |
serviceBinds | List of .NET Components that are bound to the .NET component | DotNetComponentServiceBind[] |
Name | Description | Value |
---|---|---|
propertyName | The name of the property | string |
value | The value of the property | string |
Name | Description | Value |
---|---|---|
name | Name of the service bind | string |
serviceId | Resource id of the target service | string |