1. Packages
  2. Azure Native
  3. API Docs
  4. migrate
  5. MigrationEntityGroup
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.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
azure-native logo
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.13.0 published on Wednesday, Jan 28, 2026 by Pulumi

    Migration Entity Group resource.

    Uses Azure REST API version 2025-03-30-preview.

    Example Usage

    MigrationEntityGroups_Create_MaximumSet - generated by [MaximumSet] rule - generated by [MaximumSet] rule - generated by [MaximumSet] rule - generated by [MaximumSet] rule

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var migrationEntityGroup = new AzureNative.Migrate.MigrationEntityGroup("migrationEntityGroup", new()
        {
            MigrationEntityGroupName = "myMigrationEntityGroupName",
            ProjectName = "myProjectName",
            Properties = new AzureNative.Migrate.Inputs.MigrationEntityGroupPropertiesArgs
            {
                ApplicationDisplayName = "ricbxbn",
                ApplicationId = "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.ApplicationMigration/discoveryHubs/MyDiscoveryHub/applications/MyAppe",
                AssociatedAssessmentId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment",
                AssociatedWaveIds = new[]
                {
                    "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave",
                },
                MigrationPath = "PaaSPreferred",
            },
            ResourceGroupName = "rgwaves",
        });
    
    });
    
    package main
    
    import (
    	migrate "github.com/pulumi/pulumi-azure-native-sdk/migrate/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := migrate.NewMigrationEntityGroup(ctx, "migrationEntityGroup", &migrate.MigrationEntityGroupArgs{
    			MigrationEntityGroupName: pulumi.String("myMigrationEntityGroupName"),
    			ProjectName:              pulumi.String("myProjectName"),
    			Properties: &migrate.MigrationEntityGroupPropertiesArgs{
    				ApplicationDisplayName: pulumi.String("ricbxbn"),
    				ApplicationId:          pulumi.String("/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.ApplicationMigration/discoveryHubs/MyDiscoveryHub/applications/MyAppe"),
    				AssociatedAssessmentId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment"),
    				AssociatedWaveIds: pulumi.StringArray{
    					pulumi.String("/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave"),
    				},
    				MigrationPath: pulumi.String("PaaSPreferred"),
    			},
    			ResourceGroupName: pulumi.String("rgwaves"),
    		})
    		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.migrate.MigrationEntityGroup;
    import com.pulumi.azurenative.migrate.MigrationEntityGroupArgs;
    import com.pulumi.azurenative.migrate.inputs.MigrationEntityGroupPropertiesArgs;
    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 migrationEntityGroup = new MigrationEntityGroup("migrationEntityGroup", MigrationEntityGroupArgs.builder()
                .migrationEntityGroupName("myMigrationEntityGroupName")
                .projectName("myProjectName")
                .properties(MigrationEntityGroupPropertiesArgs.builder()
                    .applicationDisplayName("ricbxbn")
                    .applicationId("/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.ApplicationMigration/discoveryHubs/MyDiscoveryHub/applications/MyAppe")
                    .associatedAssessmentId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment")
                    .associatedWaveIds("/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave")
                    .migrationPath("PaaSPreferred")
                    .build())
                .resourceGroupName("rgwaves")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const migrationEntityGroup = new azure_native.migrate.MigrationEntityGroup("migrationEntityGroup", {
        migrationEntityGroupName: "myMigrationEntityGroupName",
        projectName: "myProjectName",
        properties: {
            applicationDisplayName: "ricbxbn",
            applicationId: "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.ApplicationMigration/discoveryHubs/MyDiscoveryHub/applications/MyAppe",
            associatedAssessmentId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment",
            associatedWaveIds: ["/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave"],
            migrationPath: "PaaSPreferred",
        },
        resourceGroupName: "rgwaves",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    migration_entity_group = azure_native.migrate.MigrationEntityGroup("migrationEntityGroup",
        migration_entity_group_name="myMigrationEntityGroupName",
        project_name="myProjectName",
        properties={
            "application_display_name": "ricbxbn",
            "application_id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.ApplicationMigration/discoveryHubs/MyDiscoveryHub/applications/MyAppe",
            "associated_assessment_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment",
            "associated_wave_ids": ["/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave"],
            "migration_path": "PaaSPreferred",
        },
        resource_group_name="rgwaves")
    
    resources:
      migrationEntityGroup:
        type: azure-native:migrate:MigrationEntityGroup
        properties:
          migrationEntityGroupName: myMigrationEntityGroupName
          projectName: myProjectName
          properties:
            applicationDisplayName: ricbxbn
            applicationId: /subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.ApplicationMigration/discoveryHubs/MyDiscoveryHub/applications/MyAppe
            associatedAssessmentId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment
            associatedWaveIds:
              - /subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave
            migrationPath: PaaSPreferred
          resourceGroupName: rgwaves
    

    Create MigrationEntityGroup Resource

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

    Constructor syntax

    new MigrationEntityGroup(name: string, args: MigrationEntityGroupArgs, opts?: CustomResourceOptions);
    @overload
    def MigrationEntityGroup(resource_name: str,
                             args: MigrationEntityGroupArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def MigrationEntityGroup(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             project_name: Optional[str] = None,
                             resource_group_name: Optional[str] = None,
                             migration_entity_group_name: Optional[str] = None,
                             properties: Optional[MigrationEntityGroupPropertiesArgs] = None)
    func NewMigrationEntityGroup(ctx *Context, name string, args MigrationEntityGroupArgs, opts ...ResourceOption) (*MigrationEntityGroup, error)
    public MigrationEntityGroup(string name, MigrationEntityGroupArgs args, CustomResourceOptions? opts = null)
    public MigrationEntityGroup(String name, MigrationEntityGroupArgs args)
    public MigrationEntityGroup(String name, MigrationEntityGroupArgs args, CustomResourceOptions options)
    
    type: azure-native:migrate:MigrationEntityGroup
    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 MigrationEntityGroupArgs
    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 MigrationEntityGroupArgs
    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 MigrationEntityGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MigrationEntityGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MigrationEntityGroupArgs
    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 migrationEntityGroupResource = new AzureNative.Migrate.MigrationEntityGroup("migrationEntityGroupResource", new()
    {
        ProjectName = "string",
        ResourceGroupName = "string",
        MigrationEntityGroupName = "string",
        Properties = new AzureNative.Migrate.Inputs.MigrationEntityGroupPropertiesArgs
        {
            ApplicationDisplayName = "string",
            ApplicationId = "string",
            AssociatedAssessmentId = "string",
            AssociatedWaveIds = new[]
            {
                "string",
            },
            MigrationPath = "string",
        },
    });
    
    example, err := migrate.NewMigrationEntityGroup(ctx, "migrationEntityGroupResource", &migrate.MigrationEntityGroupArgs{
    	ProjectName:              pulumi.String("string"),
    	ResourceGroupName:        pulumi.String("string"),
    	MigrationEntityGroupName: pulumi.String("string"),
    	Properties: &migrate.MigrationEntityGroupPropertiesArgs{
    		ApplicationDisplayName: pulumi.String("string"),
    		ApplicationId:          pulumi.String("string"),
    		AssociatedAssessmentId: pulumi.String("string"),
    		AssociatedWaveIds: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		MigrationPath: pulumi.String("string"),
    	},
    })
    
    var migrationEntityGroupResource = new MigrationEntityGroup("migrationEntityGroupResource", MigrationEntityGroupArgs.builder()
        .projectName("string")
        .resourceGroupName("string")
        .migrationEntityGroupName("string")
        .properties(MigrationEntityGroupPropertiesArgs.builder()
            .applicationDisplayName("string")
            .applicationId("string")
            .associatedAssessmentId("string")
            .associatedWaveIds("string")
            .migrationPath("string")
            .build())
        .build());
    
    migration_entity_group_resource = azure_native.migrate.MigrationEntityGroup("migrationEntityGroupResource",
        project_name="string",
        resource_group_name="string",
        migration_entity_group_name="string",
        properties={
            "application_display_name": "string",
            "application_id": "string",
            "associated_assessment_id": "string",
            "associated_wave_ids": ["string"],
            "migration_path": "string",
        })
    
    const migrationEntityGroupResource = new azure_native.migrate.MigrationEntityGroup("migrationEntityGroupResource", {
        projectName: "string",
        resourceGroupName: "string",
        migrationEntityGroupName: "string",
        properties: {
            applicationDisplayName: "string",
            applicationId: "string",
            associatedAssessmentId: "string",
            associatedWaveIds: ["string"],
            migrationPath: "string",
        },
    });
    
    type: azure-native:migrate:MigrationEntityGroup
    properties:
        migrationEntityGroupName: string
        projectName: string
        properties:
            applicationDisplayName: string
            applicationId: string
            associatedAssessmentId: string
            associatedWaveIds:
                - string
            migrationPath: string
        resourceGroupName: string
    

    MigrationEntityGroup 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 MigrationEntityGroup resource accepts the following input properties:

    ProjectName string
    Migrate Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    MigrationEntityGroupName string
    Migration Entity Group ARM name
    Properties Pulumi.AzureNative.Migrate.Inputs.MigrationEntityGroupProperties
    The resource-specific properties for this resource.
    ProjectName string
    Migrate Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    MigrationEntityGroupName string
    Migration Entity Group ARM name
    Properties MigrationEntityGroupPropertiesArgs
    The resource-specific properties for this resource.
    projectName String
    Migrate Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    migrationEntityGroupName String
    Migration Entity Group ARM name
    properties MigrationEntityGroupProperties
    The resource-specific properties for this resource.
    projectName string
    Migrate Project Name
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    migrationEntityGroupName string
    Migration Entity Group ARM name
    properties MigrationEntityGroupProperties
    The resource-specific properties for this resource.
    project_name str
    Migrate Project Name
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    migration_entity_group_name str
    Migration Entity Group ARM name
    properties MigrationEntityGroupPropertiesArgs
    The resource-specific properties for this resource.
    projectName String
    Migrate Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    migrationEntityGroupName String
    Migration Entity Group ARM name
    properties Property Map
    The resource-specific properties for this resource.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    ETag string
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.Migrate.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.
    ETag string
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    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.
    eTag String
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    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.
    eTag string
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    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.
    e_tag str
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    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.
    eTag String
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    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

    MigrationEntityGroupProperties, MigrationEntityGroupPropertiesArgs

    Migration Entity Group Properties class.
    ApplicationDisplayName string
    Display Name of the Workload.
    ApplicationId string
    Application id
    AssociatedAssessmentId string
    Associated Assessment Id
    AssociatedWaveIds List<string>
    associated Wave Id
    MigrationPath string
    Migration path
    ApplicationDisplayName string
    Display Name of the Workload.
    ApplicationId string
    Application id
    AssociatedAssessmentId string
    Associated Assessment Id
    AssociatedWaveIds []string
    associated Wave Id
    MigrationPath string
    Migration path
    applicationDisplayName String
    Display Name of the Workload.
    applicationId String
    Application id
    associatedAssessmentId String
    Associated Assessment Id
    associatedWaveIds List<String>
    associated Wave Id
    migrationPath String
    Migration path
    applicationDisplayName string
    Display Name of the Workload.
    applicationId string
    Application id
    associatedAssessmentId string
    Associated Assessment Id
    associatedWaveIds string[]
    associated Wave Id
    migrationPath string
    Migration path
    application_display_name str
    Display Name of the Workload.
    application_id str
    Application id
    associated_assessment_id str
    Associated Assessment Id
    associated_wave_ids Sequence[str]
    associated Wave Id
    migration_path str
    Migration path
    applicationDisplayName String
    Display Name of the Workload.
    applicationId String
    Application id
    associatedAssessmentId String
    Associated Assessment Id
    associatedWaveIds List<String>
    associated Wave Id
    migrationPath String
    Migration path

    MigrationEntityGroupPropertiesResponse, MigrationEntityGroupPropertiesResponseArgs

    Migration Entity Group Properties class.
    ApplicationDisplayName string
    Display Name of the Workload.
    ApplicationId string
    Application id
    ExecutionStartDate string
    Execution Start Date
    ExecutionStatus string
    Migration Entity Group Status
    ProvisioningState string
    The status of the last operation.
    AssociatedAssessmentId string
    Associated Assessment Id
    AssociatedWaveIds List<string>
    associated Wave Id
    MigrationPath string
    Migration path
    ApplicationDisplayName string
    Display Name of the Workload.
    ApplicationId string
    Application id
    ExecutionStartDate string
    Execution Start Date
    ExecutionStatus string
    Migration Entity Group Status
    ProvisioningState string
    The status of the last operation.
    AssociatedAssessmentId string
    Associated Assessment Id
    AssociatedWaveIds []string
    associated Wave Id
    MigrationPath string
    Migration path
    applicationDisplayName String
    Display Name of the Workload.
    applicationId String
    Application id
    executionStartDate String
    Execution Start Date
    executionStatus String
    Migration Entity Group Status
    provisioningState String
    The status of the last operation.
    associatedAssessmentId String
    Associated Assessment Id
    associatedWaveIds List<String>
    associated Wave Id
    migrationPath String
    Migration path
    applicationDisplayName string
    Display Name of the Workload.
    applicationId string
    Application id
    executionStartDate string
    Execution Start Date
    executionStatus string
    Migration Entity Group Status
    provisioningState string
    The status of the last operation.
    associatedAssessmentId string
    Associated Assessment Id
    associatedWaveIds string[]
    associated Wave Id
    migrationPath string
    Migration path
    application_display_name str
    Display Name of the Workload.
    application_id str
    Application id
    execution_start_date str
    Execution Start Date
    execution_status str
    Migration Entity Group Status
    provisioning_state str
    The status of the last operation.
    associated_assessment_id str
    Associated Assessment Id
    associated_wave_ids Sequence[str]
    associated Wave Id
    migration_path str
    Migration path
    applicationDisplayName String
    Display Name of the Workload.
    applicationId String
    Application id
    executionStartDate String
    Execution Start Date
    executionStatus String
    Migration Entity Group Status
    provisioningState String
    The status of the last operation.
    associatedAssessmentId String
    Associated Assessment Id
    associatedWaveIds List<String>
    associated Wave Id
    migrationPath String
    Migration path

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of 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.
    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:migrate:MigrationEntityGroup kw /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/migrateProjects/{projectName}/migrationEntityGroups/{migrationEntityGroupName} 
    

    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 v2 docs if using the v2 version of this package.
    Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate