1. Packages
  2. Azure Native
  3. API Docs
  4. app
  5. DotNetComponent
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.app.DotNetComponent

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

    .NET Component. Azure REST API version: 2023-11-02-preview.

    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",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/app/v2"
    	"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
    	})
    }
    
    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());
    
        }
    }
    
    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=[azure_native.app.DotNetComponentConfigurationPropertyArgs(
            property_name="dashboard-theme",
            value="dark",
        )],
        environment_name="myenvironment",
        name="mydotnetcomponent",
        resource_group_name="examplerg")
    
    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",
    });
    
    resources:
      dotNetComponent:
        type: azure-native:app:DotNetComponent
        properties:
          componentType: AspireDashboard
          configurations:
            - propertyName: dashboard-theme
              value: dark
          environmentName: myenvironment
          name: mydotnetcomponent
          resourceGroupName: examplerg
    

    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",
                },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/app/v2"
    	"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
    	})
    }
    
    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());
    
        }
    }
    
    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=[azure_native.app.DotNetComponentConfigurationPropertyArgs(
            property_name="dashboard-theme",
            value="dark",
        )],
        environment_name="myenvironment",
        name="mydotnetcomponent",
        resource_group_name="examplerg",
        service_binds=[azure_native.app.DotNetComponentServiceBindArgs(
            name="yellowcat",
            service_id="/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/dotNetComponents/yellowcat",
        )])
    
    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",
        }],
    });
    
    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
    

    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 string
    The unique name of the resource.
    args DotNetComponentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args DotNetComponentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DotNetComponentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DotNetComponentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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",
            },
        },
    });
    
    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"),
    },
    },
    })
    
    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());
    
    dot_net_component_resource = azure_native.app.DotNetComponent("dotNetComponentResource",
        environment_name="string",
        resource_group_name="string",
        component_type="string",
        configurations=[azure_native.app.DotNetComponentConfigurationPropertyArgs(
            property_name="string",
            value="string",
        )],
        name="string",
        service_binds=[azure_native.app.DotNetComponentServiceBindArgs(
            name="string",
            service_id="string",
        )])
    
    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",
        }],
    });
    
    type: azure-native:app:DotNetComponent
    properties:
        componentType: string
        configurations:
            - propertyName: string
              value: string
        environmentName: string
        name: string
        resourceGroupName: string
        serviceBinds:
            - name: string
              serviceId: string
    

    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

    The DotNetComponent resource accepts the following input properties:

    EnvironmentName string
    Name of the Managed Environment.
    ResourceGroupName 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 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 string
    Name of the Managed Environment.
    ResourceGroupName 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 string
    Name of the .NET Component.
    ServiceBinds []DotNetComponentServiceBindArgs
    List of .NET Components that are bound to the .NET component
    environmentName String
    Name of the Managed Environment.
    resourceGroupName 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 String
    Name of the .NET Component.
    serviceBinds List<DotNetComponentServiceBind>
    List of .NET Components that are bound to the .NET component
    environmentName string
    Name of the Managed Environment.
    resourceGroupName 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 string
    Name of the .NET Component.
    serviceBinds DotNetComponentServiceBind[]
    List of .NET Components that are bound to the .NET component
    environment_name str
    Name of the Managed Environment.
    resource_group_name 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 str
    Name of the .NET Component.
    service_binds Sequence[DotNetComponentServiceBindArgs]
    List of .NET Components that are bound to the .NET component
    environmentName String
    Name of the Managed Environment.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    componentType String | "AspireDashboard" | "AspireResourceServerApi"
    Type of the .NET Component.
    configurations List<Property Map>
    List of .NET Components configuration properties
    name 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:

    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"
    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"
    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"
    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"
    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"
    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
    AspireResourceServerApi
    AspireResourceServerApi
    DotNetComponentTypeAspireDashboard
    AspireDashboard
    DotNetComponentTypeAspireResourceServerApi
    AspireResourceServerApi
    AspireDashboard
    AspireDashboard
    AspireResourceServerApi
    AspireResourceServerApi
    AspireDashboard
    AspireDashboard
    AspireResourceServerApi
    AspireResourceServerApi
    ASPIRE_DASHBOARD
    AspireDashboard
    ASPIRE_RESOURCE_SERVER_API
    AspireResourceServerApi
    "AspireDashboard"
    AspireDashboard
    "AspireResourceServerApi"
    AspireResourceServerApi

    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} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi