1. Packages
  2. Azure Native
  3. API Docs
  4. app
  5. DotNetComponent
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.app.DotNetComponent

Explore with Pulumi AI

.NET Component.

Uses Azure REST API version 2024-10-02-preview. In version 2.x of the Azure Native provider, it used API version 2023-11-02-preview.

Other available API versions: 2023-11-02-preview, 2024-02-02-preview, 2024-08-02-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native app [ApiVersion]. See the version guide for details.

Example Usage

Create or Update .NET Component

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var dotNetComponent = new AzureNative.App.DotNetComponent("dotNetComponent", new()
    {
        ComponentType = AzureNative.App.DotNetComponentType.AspireDashboard,
        Configurations = new[]
        {
            new AzureNative.App.Inputs.DotNetComponentConfigurationPropertyArgs
            {
                PropertyName = "dashboard-theme",
                Value = "dark",
            },
        },
        EnvironmentName = "myenvironment",
        Name = "mydotnetcomponent",
        ResourceGroupName = "examplerg",
    });

});
Copy
package main

import (
	app "github.com/pulumi/pulumi-azure-native-sdk/app/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := app.NewDotNetComponent(ctx, "dotNetComponent", &app.DotNetComponentArgs{
			ComponentType: pulumi.String(app.DotNetComponentTypeAspireDashboard),
			Configurations: app.DotNetComponentConfigurationPropertyArray{
				&app.DotNetComponentConfigurationPropertyArgs{
					PropertyName: pulumi.String("dashboard-theme"),
					Value:        pulumi.String("dark"),
				},
			},
			EnvironmentName:   pulumi.String("myenvironment"),
			Name:              pulumi.String("mydotnetcomponent"),
			ResourceGroupName: pulumi.String("examplerg"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.app.DotNetComponent;
import com.pulumi.azurenative.app.DotNetComponentArgs;
import com.pulumi.azurenative.app.inputs.DotNetComponentConfigurationPropertyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var dotNetComponent = new DotNetComponent("dotNetComponent", DotNetComponentArgs.builder()
            .componentType("AspireDashboard")
            .configurations(DotNetComponentConfigurationPropertyArgs.builder()
                .propertyName("dashboard-theme")
                .value("dark")
                .build())
            .environmentName("myenvironment")
            .name("mydotnetcomponent")
            .resourceGroupName("examplerg")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const dotNetComponent = new azure_native.app.DotNetComponent("dotNetComponent", {
    componentType: azure_native.app.DotNetComponentType.AspireDashboard,
    configurations: [{
        propertyName: "dashboard-theme",
        value: "dark",
    }],
    environmentName: "myenvironment",
    name: "mydotnetcomponent",
    resourceGroupName: "examplerg",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

dot_net_component = azure_native.app.DotNetComponent("dotNetComponent",
    component_type=azure_native.app.DotNetComponentType.ASPIRE_DASHBOARD,
    configurations=[{
        "property_name": "dashboard-theme",
        "value": "dark",
    }],
    environment_name="myenvironment",
    name="mydotnetcomponent",
    resource_group_name="examplerg")
Copy
resources:
  dotNetComponent:
    type: azure-native:app:DotNetComponent
    properties:
      componentType: AspireDashboard
      configurations:
        - propertyName: dashboard-theme
          value: dark
      environmentName: myenvironment
      name: mydotnetcomponent
      resourceGroupName: examplerg
Copy

Create or Update .NET Component with ServiceBinds

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var dotNetComponent = new AzureNative.App.DotNetComponent("dotNetComponent", new()
    {
        ComponentType = AzureNative.App.DotNetComponentType.AspireDashboard,
        Configurations = new[]
        {
            new AzureNative.App.Inputs.DotNetComponentConfigurationPropertyArgs
            {
                PropertyName = "dashboard-theme",
                Value = "dark",
            },
        },
        EnvironmentName = "myenvironment",
        Name = "mydotnetcomponent",
        ResourceGroupName = "examplerg",
        ServiceBinds = new[]
        {
            new AzureNative.App.Inputs.DotNetComponentServiceBindArgs
            {
                Name = "yellowcat",
                ServiceId = "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/dotNetComponents/yellowcat",
            },
        },
    });

});
Copy
package main

import (
	app "github.com/pulumi/pulumi-azure-native-sdk/app/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := app.NewDotNetComponent(ctx, "dotNetComponent", &app.DotNetComponentArgs{
			ComponentType: pulumi.String(app.DotNetComponentTypeAspireDashboard),
			Configurations: app.DotNetComponentConfigurationPropertyArray{
				&app.DotNetComponentConfigurationPropertyArgs{
					PropertyName: pulumi.String("dashboard-theme"),
					Value:        pulumi.String("dark"),
				},
			},
			EnvironmentName:   pulumi.String("myenvironment"),
			Name:              pulumi.String("mydotnetcomponent"),
			ResourceGroupName: pulumi.String("examplerg"),
			ServiceBinds: app.DotNetComponentServiceBindArray{
				&app.DotNetComponentServiceBindArgs{
					Name:      pulumi.String("yellowcat"),
					ServiceId: pulumi.String("/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/dotNetComponents/yellowcat"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.app.DotNetComponent;
import com.pulumi.azurenative.app.DotNetComponentArgs;
import com.pulumi.azurenative.app.inputs.DotNetComponentConfigurationPropertyArgs;
import com.pulumi.azurenative.app.inputs.DotNetComponentServiceBindArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var dotNetComponent = new DotNetComponent("dotNetComponent", DotNetComponentArgs.builder()
            .componentType("AspireDashboard")
            .configurations(DotNetComponentConfigurationPropertyArgs.builder()
                .propertyName("dashboard-theme")
                .value("dark")
                .build())
            .environmentName("myenvironment")
            .name("mydotnetcomponent")
            .resourceGroupName("examplerg")
            .serviceBinds(DotNetComponentServiceBindArgs.builder()
                .name("yellowcat")
                .serviceId("/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/dotNetComponents/yellowcat")
                .build())
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const dotNetComponent = new azure_native.app.DotNetComponent("dotNetComponent", {
    componentType: azure_native.app.DotNetComponentType.AspireDashboard,
    configurations: [{
        propertyName: "dashboard-theme",
        value: "dark",
    }],
    environmentName: "myenvironment",
    name: "mydotnetcomponent",
    resourceGroupName: "examplerg",
    serviceBinds: [{
        name: "yellowcat",
        serviceId: "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/dotNetComponents/yellowcat",
    }],
});
Copy
import pulumi
import pulumi_azure_native as azure_native

dot_net_component = azure_native.app.DotNetComponent("dotNetComponent",
    component_type=azure_native.app.DotNetComponentType.ASPIRE_DASHBOARD,
    configurations=[{
        "property_name": "dashboard-theme",
        "value": "dark",
    }],
    environment_name="myenvironment",
    name="mydotnetcomponent",
    resource_group_name="examplerg",
    service_binds=[{
        "name": "yellowcat",
        "service_id": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/dotNetComponents/yellowcat",
    }])
Copy
resources:
  dotNetComponent:
    type: azure-native:app:DotNetComponent
    properties:
      componentType: AspireDashboard
      configurations:
        - propertyName: dashboard-theme
          value: dark
      environmentName: myenvironment
      name: mydotnetcomponent
      resourceGroupName: examplerg
      serviceBinds:
        - name: yellowcat
          serviceId: /subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/dotNetComponents/yellowcat
Copy

Create DotNetComponent Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new DotNetComponent(name: string, args: DotNetComponentArgs, opts?: CustomResourceOptions);
@overload
def DotNetComponent(resource_name: str,
                    args: DotNetComponentArgs,
                    opts: Optional[ResourceOptions] = None)

@overload
def DotNetComponent(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    environment_name: Optional[str] = None,
                    resource_group_name: Optional[str] = None,
                    component_type: Optional[Union[str, DotNetComponentType]] = None,
                    configurations: Optional[Sequence[DotNetComponentConfigurationPropertyArgs]] = None,
                    name: Optional[str] = None,
                    service_binds: Optional[Sequence[DotNetComponentServiceBindArgs]] = None)
func NewDotNetComponent(ctx *Context, name string, args DotNetComponentArgs, opts ...ResourceOption) (*DotNetComponent, error)
public DotNetComponent(string name, DotNetComponentArgs args, CustomResourceOptions? opts = null)
public DotNetComponent(String name, DotNetComponentArgs args)
public DotNetComponent(String name, DotNetComponentArgs args, CustomResourceOptions options)
type: azure-native:app:DotNetComponent
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DotNetComponentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DotNetComponentArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DotNetComponentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DotNetComponentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DotNetComponentArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var dotNetComponentResource = new AzureNative.App.DotNetComponent("dotNetComponentResource", new()
{
    EnvironmentName = "string",
    ResourceGroupName = "string",
    ComponentType = "string",
    Configurations = new[]
    {
        new AzureNative.App.Inputs.DotNetComponentConfigurationPropertyArgs
        {
            PropertyName = "string",
            Value = "string",
        },
    },
    Name = "string",
    ServiceBinds = new[]
    {
        new AzureNative.App.Inputs.DotNetComponentServiceBindArgs
        {
            Name = "string",
            ServiceId = "string",
        },
    },
});
Copy
example, err := app.NewDotNetComponent(ctx, "dotNetComponentResource", &app.DotNetComponentArgs{
	EnvironmentName:   pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	ComponentType:     pulumi.String("string"),
	Configurations: app.DotNetComponentConfigurationPropertyArray{
		&app.DotNetComponentConfigurationPropertyArgs{
			PropertyName: pulumi.String("string"),
			Value:        pulumi.String("string"),
		},
	},
	Name: pulumi.String("string"),
	ServiceBinds: app.DotNetComponentServiceBindArray{
		&app.DotNetComponentServiceBindArgs{
			Name:      pulumi.String("string"),
			ServiceId: pulumi.String("string"),
		},
	},
})
Copy
var dotNetComponentResource = new DotNetComponent("dotNetComponentResource", DotNetComponentArgs.builder()
    .environmentName("string")
    .resourceGroupName("string")
    .componentType("string")
    .configurations(DotNetComponentConfigurationPropertyArgs.builder()
        .propertyName("string")
        .value("string")
        .build())
    .name("string")
    .serviceBinds(DotNetComponentServiceBindArgs.builder()
        .name("string")
        .serviceId("string")
        .build())
    .build());
Copy
dot_net_component_resource = azure_native.app.DotNetComponent("dotNetComponentResource",
    environment_name="string",
    resource_group_name="string",
    component_type="string",
    configurations=[{
        "property_name": "string",
        "value": "string",
    }],
    name="string",
    service_binds=[{
        "name": "string",
        "service_id": "string",
    }])
Copy
const dotNetComponentResource = new azure_native.app.DotNetComponent("dotNetComponentResource", {
    environmentName: "string",
    resourceGroupName: "string",
    componentType: "string",
    configurations: [{
        propertyName: "string",
        value: "string",
    }],
    name: "string",
    serviceBinds: [{
        name: "string",
        serviceId: "string",
    }],
});
Copy
type: azure-native:app:DotNetComponent
properties:
    componentType: string
    configurations:
        - propertyName: string
          value: string
    environmentName: string
    name: string
    resourceGroupName: string
    serviceBinds:
        - name: string
          serviceId: string
Copy

DotNetComponent Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The DotNetComponent resource accepts the following input properties:

EnvironmentName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Managed Environment.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ComponentType string | Pulumi.AzureNative.App.DotNetComponentType
Type of the .NET Component.
Configurations List<Pulumi.AzureNative.App.Inputs.DotNetComponentConfigurationProperty>
List of .NET Components configuration properties
Name Changes to this property will trigger replacement. string
Name of the .NET Component.
ServiceBinds List<Pulumi.AzureNative.App.Inputs.DotNetComponentServiceBind>
List of .NET Components that are bound to the .NET component
EnvironmentName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Managed Environment.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ComponentType string | DotNetComponentType
Type of the .NET Component.
Configurations []DotNetComponentConfigurationPropertyArgs
List of .NET Components configuration properties
Name Changes to this property will trigger replacement. string
Name of the .NET Component.
ServiceBinds []DotNetComponentServiceBindArgs
List of .NET Components that are bound to the .NET component
environmentName
This property is required.
Changes to this property will trigger replacement.
String
Name of the Managed Environment.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
componentType String | DotNetComponentType
Type of the .NET Component.
configurations List<DotNetComponentConfigurationProperty>
List of .NET Components configuration properties
name Changes to this property will trigger replacement. String
Name of the .NET Component.
serviceBinds List<DotNetComponentServiceBind>
List of .NET Components that are bound to the .NET component
environmentName
This property is required.
Changes to this property will trigger replacement.
string
Name of the Managed Environment.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
componentType string | DotNetComponentType
Type of the .NET Component.
configurations DotNetComponentConfigurationProperty[]
List of .NET Components configuration properties
name Changes to this property will trigger replacement. string
Name of the .NET Component.
serviceBinds DotNetComponentServiceBind[]
List of .NET Components that are bound to the .NET component
environment_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the Managed Environment.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
component_type str | DotNetComponentType
Type of the .NET Component.
configurations Sequence[DotNetComponentConfigurationPropertyArgs]
List of .NET Components configuration properties
name Changes to this property will trigger replacement. str
Name of the .NET Component.
service_binds Sequence[DotNetComponentServiceBindArgs]
List of .NET Components that are bound to the .NET component
environmentName
This property is required.
Changes to this property will trigger replacement.
String
Name of the Managed Environment.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
componentType String | "AspireDashboard"
Type of the .NET Component.
configurations List<Property Map>
List of .NET Components configuration properties
name Changes to this property will trigger replacement. String
Name of the .NET Component.
serviceBinds List<Property Map>
List of .NET Components that are bound to the .NET component

Outputs

All input properties are implicitly available as output properties. Additionally, the DotNetComponent resource produces the following output properties:

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
Provisioning state of the .NET Component.
SystemData Pulumi.AzureNative.App.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
Provisioning state of the .NET Component.
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
Provisioning state of the .NET Component.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
provisioningState string
Provisioning state of the .NET Component.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
provisioning_state str
Provisioning state of the .NET Component.
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
Provisioning state of the .NET Component.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

DotNetComponentConfigurationProperty
, DotNetComponentConfigurationPropertyArgs

PropertyName string
The name of the property
Value string
The value of the property
PropertyName string
The name of the property
Value string
The value of the property
propertyName String
The name of the property
value String
The value of the property
propertyName string
The name of the property
value string
The value of the property
property_name str
The name of the property
value str
The value of the property
propertyName String
The name of the property
value String
The value of the property

DotNetComponentConfigurationPropertyResponse
, DotNetComponentConfigurationPropertyResponseArgs

PropertyName string
The name of the property
Value string
The value of the property
PropertyName string
The name of the property
Value string
The value of the property
propertyName String
The name of the property
value String
The value of the property
propertyName string
The name of the property
value string
The value of the property
property_name str
The name of the property
value str
The value of the property
propertyName String
The name of the property
value String
The value of the property

DotNetComponentServiceBind
, DotNetComponentServiceBindArgs

Name string
Name of the service bind
ServiceId string
Resource id of the target service
Name string
Name of the service bind
ServiceId string
Resource id of the target service
name String
Name of the service bind
serviceId String
Resource id of the target service
name string
Name of the service bind
serviceId string
Resource id of the target service
name str
Name of the service bind
service_id str
Resource id of the target service
name String
Name of the service bind
serviceId String
Resource id of the target service

DotNetComponentServiceBindResponse
, DotNetComponentServiceBindResponseArgs

Name string
Name of the service bind
ServiceId string
Resource id of the target service
Name string
Name of the service bind
ServiceId string
Resource id of the target service
name String
Name of the service bind
serviceId String
Resource id of the target service
name string
Name of the service bind
serviceId string
Resource id of the target service
name str
Name of the service bind
service_id str
Resource id of the target service
name String
Name of the service bind
serviceId String
Resource id of the target service

DotNetComponentType
, DotNetComponentTypeArgs

AspireDashboard
AspireDashboard
DotNetComponentTypeAspireDashboard
AspireDashboard
AspireDashboard
AspireDashboard
AspireDashboard
AspireDashboard
ASPIRE_DASHBOARD
AspireDashboard
"AspireDashboard"
AspireDashboard

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:app:DotNetComponent mydotnetcomponent /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/dotNetComponents/{name} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0