Microsoft.App managedEnvironments/dotNetComponents 2024-02-02-preview

Bicep resource definition

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.

Resource format

To create a Microsoft.App/managedEnvironments/dotNetComponents resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.App/managedEnvironments/dotNetComponents@2024-02-02-preview' = {
  parent: resourceSymbolicName
  name: 'string'
  properties: {
    componentType: 'string'
    configurations: [
      {
        propertyName: 'string'
        value: 'string'
      }
    ]
    serviceBinds: [
      {
        name: 'string'
        serviceId: 'string'
      }
    ]
  }
}

Property values

DotNetComponentConfigurationProperty

Name Description Value
propertyName The name of the property string
value The value of the property string

DotNetComponentProperties

Name Description Value
componentType Type of the .NET Component. 'AspireDashboard'
configurations List of .NET Components configuration properties DotNetComponentConfigurationProperty[]
serviceBinds List of .NET Components that are bound to the .NET component DotNetComponentServiceBind[]

DotNetComponentServiceBind

Name Description Value
name Name of the service bind string
serviceId Resource id of the target service string

Microsoft.App/managedEnvironments/dotNetComponents

Name Description Value
name The resource name string

Constraints:
Pattern = ^[-\w\._\(\)]+$ (required)
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: managedEnvironments
properties .NET Component resource specific properties DotNetComponentProperties

ARM template resource definition

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.

Resource format

To create a Microsoft.App/managedEnvironments/dotNetComponents resource, add the following JSON to your template.

{
  "type": "Microsoft.App/managedEnvironments/dotNetComponents",
  "apiVersion": "2024-02-02-preview",
  "name": "string",
  "properties": {
    "componentType": "string",
    "configurations": [
      {
        "propertyName": "string",
        "value": "string"
      }
    ],
    "serviceBinds": [
      {
        "name": "string",
        "serviceId": "string"
      }
    ]
  }
}

Property values

DotNetComponentConfigurationProperty

Name Description Value
propertyName The name of the property string
value The value of the property string

DotNetComponentProperties

Name Description Value
componentType Type of the .NET Component. 'AspireDashboard'
configurations List of .NET Components configuration properties DotNetComponentConfigurationProperty[]
serviceBinds List of .NET Components that are bound to the .NET component DotNetComponentServiceBind[]

DotNetComponentServiceBind

Name Description Value
name Name of the service bind string
serviceId Resource id of the target service string

Microsoft.App/managedEnvironments/dotNetComponents

Name Description Value
apiVersion The api version '2024-02-02-preview'
name The resource name string

Constraints:
Pattern = ^[-\w\._\(\)]+$ (required)
properties .NET Component resource specific properties DotNetComponentProperties
type The resource type 'Microsoft.App/managedEnvironments/dotNetComponents'

Terraform (AzAPI provider) resource definition

The managedEnvironments/dotNetComponents resource type can be deployed with operations that target:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.App/managedEnvironments/dotNetComponents resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.App/managedEnvironments/dotNetComponents@2024-02-02-preview"
  name = "string"
  body = jsonencode({
    properties = {
      componentType = "string"
      configurations = [
        {
          propertyName = "string"
          value = "string"
        }
      ]
      serviceBinds = [
        {
          name = "string"
          serviceId = "string"
        }
      ]
    }
  })
}

Property values

DotNetComponentConfigurationProperty

Name Description Value
propertyName The name of the property string
value The value of the property string

DotNetComponentProperties

Name Description Value
componentType Type of the .NET Component. 'AspireDashboard'
configurations List of .NET Components configuration properties DotNetComponentConfigurationProperty[]
serviceBinds List of .NET Components that are bound to the .NET component DotNetComponentServiceBind[]

DotNetComponentServiceBind

Name Description Value
name Name of the service bind string
serviceId Resource id of the target service string

Microsoft.App/managedEnvironments/dotNetComponents

Name Description Value
name The resource name string

Constraints:
Pattern = ^[-\w\._\(\)]+$ (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: managedEnvironments
properties .NET Component resource specific properties DotNetComponentProperties
type The resource type "Microsoft.App/managedEnvironments/dotNetComponents@2024-02-02-preview"