1. Packages
  2. Azure Native
  3. API Docs
  4. migrate
  5. MigrationEntity
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 resource.

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

    Example Usage

    MigrationEntities_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 migrationEntity = new AzureNative.Migrate.MigrationEntity("migrationEntity", new()
        {
            MigrationEntityName = "myMigrationEntityName",
            ProjectName = "myProjectName",
            Properties = new AzureNative.Migrate.Inputs.MigrationEntityPropertiesArgs
            {
                AssessedEntityArmId = "dihnjnc",
                AssociatedAssessmentId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment",
                AssociatedInventoryResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.OffAzure/VMwareSites/myVMwareSite/vmwareMachines/myDiscoveredVM",
                AssociatedMigrationEntityGroupIds = new[]
                {
                    "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/migrationEntityGroups/myMygrationEntityGroup",
                },
                AssociatedWaveId = "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave",
                InventoryDisplayName = "ywdewqxixfxzgzkkv",
                MigrationPath = "PaaSPreferred",
                MigrationSpecificProperties = null,
                MigrationTool = "Server Migration Agentless",
                PartnerResourceArmId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.RecoveryServices/vaults/MyRecoveryVault/replicationFabrics/HyperVSite/replicationProtectionContainers/HyperVContainer/replicationProtectedItems/MyVM",
                Target = "AzureVM",
                TargetAzureResourceArmId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM",
            },
            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.NewMigrationEntity(ctx, "migrationEntity", &migrate.MigrationEntityArgs{
    			MigrationEntityName: pulumi.String("myMigrationEntityName"),
    			ProjectName:         pulumi.String("myProjectName"),
    			Properties: &migrate.MigrationEntityPropertiesArgs{
    				AssessedEntityArmId:           pulumi.String("dihnjnc"),
    				AssociatedAssessmentId:        pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment"),
    				AssociatedInventoryResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.OffAzure/VMwareSites/myVMwareSite/vmwareMachines/myDiscoveredVM"),
    				AssociatedMigrationEntityGroupIds: pulumi.StringArray{
    					pulumi.String("/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/migrationEntityGroups/myMygrationEntityGroup"),
    				},
    				AssociatedWaveId:            pulumi.String("/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave"),
    				InventoryDisplayName:        pulumi.String("ywdewqxixfxzgzkkv"),
    				MigrationPath:               pulumi.String("PaaSPreferred"),
    				MigrationSpecificProperties: &migrate.ServerMigrationSpecificPropertiesArgs{},
    				MigrationTool:               pulumi.String("Server Migration Agentless"),
    				PartnerResourceArmId:        pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.RecoveryServices/vaults/MyRecoveryVault/replicationFabrics/HyperVSite/replicationProtectionContainers/HyperVContainer/replicationProtectedItems/MyVM"),
    				Target:                      pulumi.String("AzureVM"),
    				TargetAzureResourceArmId:    pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"),
    			},
    			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.MigrationEntity;
    import com.pulumi.azurenative.migrate.MigrationEntityArgs;
    import com.pulumi.azurenative.migrate.inputs.MigrationEntityPropertiesArgs;
    import com.pulumi.azurenative.migrate.inputs.ServerMigrationSpecificPropertiesArgs;
    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 migrationEntity = new MigrationEntity("migrationEntity", MigrationEntityArgs.builder()
                .migrationEntityName("myMigrationEntityName")
                .projectName("myProjectName")
                .properties(MigrationEntityPropertiesArgs.builder()
                    .assessedEntityArmId("dihnjnc")
                    .associatedAssessmentId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment")
                    .associatedInventoryResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.OffAzure/VMwareSites/myVMwareSite/vmwareMachines/myDiscoveredVM")
                    .associatedMigrationEntityGroupIds("/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/migrationEntityGroups/myMygrationEntityGroup")
                    .associatedWaveId("/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave")
                    .inventoryDisplayName("ywdewqxixfxzgzkkv")
                    .migrationPath("PaaSPreferred")
                    .migrationSpecificProperties(ServerMigrationSpecificPropertiesArgs.builder()
                        .build())
                    .migrationTool("Server Migration Agentless")
                    .partnerResourceArmId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.RecoveryServices/vaults/MyRecoveryVault/replicationFabrics/HyperVSite/replicationProtectionContainers/HyperVContainer/replicationProtectedItems/MyVM")
                    .target("AzureVM")
                    .targetAzureResourceArmId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM")
                    .build())
                .resourceGroupName("rgwaves")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const migrationEntity = new azure_native.migrate.MigrationEntity("migrationEntity", {
        migrationEntityName: "myMigrationEntityName",
        projectName: "myProjectName",
        properties: {
            assessedEntityArmId: "dihnjnc",
            associatedAssessmentId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment",
            associatedInventoryResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.OffAzure/VMwareSites/myVMwareSite/vmwareMachines/myDiscoveredVM",
            associatedMigrationEntityGroupIds: ["/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/migrationEntityGroups/myMygrationEntityGroup"],
            associatedWaveId: "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave",
            inventoryDisplayName: "ywdewqxixfxzgzkkv",
            migrationPath: "PaaSPreferred",
            migrationSpecificProperties: {},
            migrationTool: "Server Migration Agentless",
            partnerResourceArmId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.RecoveryServices/vaults/MyRecoveryVault/replicationFabrics/HyperVSite/replicationProtectionContainers/HyperVContainer/replicationProtectedItems/MyVM",
            target: "AzureVM",
            targetAzureResourceArmId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM",
        },
        resourceGroupName: "rgwaves",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    migration_entity = azure_native.migrate.MigrationEntity("migrationEntity",
        migration_entity_name="myMigrationEntityName",
        project_name="myProjectName",
        properties={
            "assessed_entity_arm_id": "dihnjnc",
            "associated_assessment_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment",
            "associated_inventory_resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.OffAzure/VMwareSites/myVMwareSite/vmwareMachines/myDiscoveredVM",
            "associated_migration_entity_group_ids": ["/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/migrationEntityGroups/myMygrationEntityGroup"],
            "associated_wave_id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave",
            "inventory_display_name": "ywdewqxixfxzgzkkv",
            "migration_path": "PaaSPreferred",
            "migration_specific_properties": {},
            "migration_tool": "Server Migration Agentless",
            "partner_resource_arm_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.RecoveryServices/vaults/MyRecoveryVault/replicationFabrics/HyperVSite/replicationProtectionContainers/HyperVContainer/replicationProtectedItems/MyVM",
            "target": "AzureVM",
            "target_azure_resource_arm_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM",
        },
        resource_group_name="rgwaves")
    
    resources:
      migrationEntity:
        type: azure-native:migrate:MigrationEntity
        properties:
          migrationEntityName: myMigrationEntityName
          projectName: myProjectName
          properties:
            assessedEntityArmId: dihnjnc
            associatedAssessmentId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment
            associatedInventoryResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.OffAzure/VMwareSites/myVMwareSite/vmwareMachines/myDiscoveredVM
            associatedMigrationEntityGroupIds:
              - /subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/migrationEntityGroups/myMygrationEntityGroup
            associatedWaveId: /subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave
            inventoryDisplayName: ywdewqxixfxzgzkkv
            migrationPath: PaaSPreferred
            migrationSpecificProperties: {}
            migrationTool: Server Migration Agentless
            partnerResourceArmId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.RecoveryServices/vaults/MyRecoveryVault/replicationFabrics/HyperVSite/replicationProtectionContainers/HyperVContainer/replicationProtectedItems/MyVM
            target: AzureVM
            targetAzureResourceArmId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM
          resourceGroupName: rgwaves
    

    Create MigrationEntity Resource

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

    Constructor syntax

    new MigrationEntity(name: string, args: MigrationEntityArgs, opts?: CustomResourceOptions);
    @overload
    def MigrationEntity(resource_name: str,
                        args: MigrationEntityArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def MigrationEntity(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        project_name: Optional[str] = None,
                        resource_group_name: Optional[str] = None,
                        migration_entity_name: Optional[str] = None,
                        properties: Optional[MigrationEntityPropertiesArgs] = None)
    func NewMigrationEntity(ctx *Context, name string, args MigrationEntityArgs, opts ...ResourceOption) (*MigrationEntity, error)
    public MigrationEntity(string name, MigrationEntityArgs args, CustomResourceOptions? opts = null)
    public MigrationEntity(String name, MigrationEntityArgs args)
    public MigrationEntity(String name, MigrationEntityArgs args, CustomResourceOptions options)
    
    type: azure-native:migrate:MigrationEntity
    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 MigrationEntityArgs
    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 MigrationEntityArgs
    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 MigrationEntityArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MigrationEntityArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MigrationEntityArgs
    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 migrationEntityResource = new AzureNative.Migrate.MigrationEntity("migrationEntityResource", new()
    {
        ProjectName = "string",
        ResourceGroupName = "string",
        MigrationEntityName = "string",
        Properties = new AzureNative.Migrate.Inputs.MigrationEntityPropertiesArgs
        {
            AssociatedInventoryResourceId = "string",
            InventoryDisplayName = "string",
            AssessedEntityArmId = "string",
            AssociatedAssessmentId = "string",
            AssociatedMigrationEntityGroupIds = new[]
            {
                "string",
            },
            AssociatedWaveId = "string",
            MigrationPath = "string",
            MigrationSpecificProperties = new AzureNative.Migrate.Inputs.ServerMigrationSpecificPropertiesArgs
            {
                InstanceType = "ServerMigration",
                CurrentJobId = "string",
                DrApplianceInventoryId = "string",
            },
            MigrationTool = "string",
            PartnerResourceArmId = "string",
            Target = "string",
            TargetAzureResourceArmId = "string",
        },
    });
    
    example, err := migrate.NewMigrationEntity(ctx, "migrationEntityResource", &migrate.MigrationEntityArgs{
    	ProjectName:         pulumi.String("string"),
    	ResourceGroupName:   pulumi.String("string"),
    	MigrationEntityName: pulumi.String("string"),
    	Properties: &migrate.MigrationEntityPropertiesArgs{
    		AssociatedInventoryResourceId: pulumi.String("string"),
    		InventoryDisplayName:          pulumi.String("string"),
    		AssessedEntityArmId:           pulumi.String("string"),
    		AssociatedAssessmentId:        pulumi.String("string"),
    		AssociatedMigrationEntityGroupIds: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		AssociatedWaveId: pulumi.String("string"),
    		MigrationPath:    pulumi.String("string"),
    		MigrationSpecificProperties: &migrate.ServerMigrationSpecificPropertiesArgs{
    			InstanceType:           pulumi.String("ServerMigration"),
    			CurrentJobId:           pulumi.String("string"),
    			DrApplianceInventoryId: pulumi.String("string"),
    		},
    		MigrationTool:            pulumi.String("string"),
    		PartnerResourceArmId:     pulumi.String("string"),
    		Target:                   pulumi.String("string"),
    		TargetAzureResourceArmId: pulumi.String("string"),
    	},
    })
    
    var migrationEntityResource = new MigrationEntity("migrationEntityResource", MigrationEntityArgs.builder()
        .projectName("string")
        .resourceGroupName("string")
        .migrationEntityName("string")
        .properties(MigrationEntityPropertiesArgs.builder()
            .associatedInventoryResourceId("string")
            .inventoryDisplayName("string")
            .assessedEntityArmId("string")
            .associatedAssessmentId("string")
            .associatedMigrationEntityGroupIds("string")
            .associatedWaveId("string")
            .migrationPath("string")
            .migrationSpecificProperties(Map.ofEntries(
                Map.entry("instanceType", "ServerMigration"),
                Map.entry("currentJobId", "string"),
                Map.entry("drApplianceInventoryId", "string")
            ))
            .migrationTool("string")
            .partnerResourceArmId("string")
            .target("string")
            .targetAzureResourceArmId("string")
            .build())
        .build());
    
    migration_entity_resource = azure_native.migrate.MigrationEntity("migrationEntityResource",
        project_name="string",
        resource_group_name="string",
        migration_entity_name="string",
        properties={
            "associated_inventory_resource_id": "string",
            "inventory_display_name": "string",
            "assessed_entity_arm_id": "string",
            "associated_assessment_id": "string",
            "associated_migration_entity_group_ids": ["string"],
            "associated_wave_id": "string",
            "migration_path": "string",
            "migration_specific_properties": {
                "instance_type": "ServerMigration",
                "current_job_id": "string",
                "dr_appliance_inventory_id": "string",
            },
            "migration_tool": "string",
            "partner_resource_arm_id": "string",
            "target": "string",
            "target_azure_resource_arm_id": "string",
        })
    
    const migrationEntityResource = new azure_native.migrate.MigrationEntity("migrationEntityResource", {
        projectName: "string",
        resourceGroupName: "string",
        migrationEntityName: "string",
        properties: {
            associatedInventoryResourceId: "string",
            inventoryDisplayName: "string",
            assessedEntityArmId: "string",
            associatedAssessmentId: "string",
            associatedMigrationEntityGroupIds: ["string"],
            associatedWaveId: "string",
            migrationPath: "string",
            migrationSpecificProperties: {
                instanceType: "ServerMigration",
                currentJobId: "string",
                drApplianceInventoryId: "string",
            },
            migrationTool: "string",
            partnerResourceArmId: "string",
            target: "string",
            targetAzureResourceArmId: "string",
        },
    });
    
    type: azure-native:migrate:MigrationEntity
    properties:
        migrationEntityName: string
        projectName: string
        properties:
            assessedEntityArmId: string
            associatedAssessmentId: string
            associatedInventoryResourceId: string
            associatedMigrationEntityGroupIds:
                - string
            associatedWaveId: string
            inventoryDisplayName: string
            migrationPath: string
            migrationSpecificProperties:
                currentJobId: string
                drApplianceInventoryId: string
                instanceType: ServerMigration
            migrationTool: string
            partnerResourceArmId: string
            target: string
            targetAzureResourceArmId: string
        resourceGroupName: string
    

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

    ProjectName string
    Migrate Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    MigrationEntityName string
    Migration Entity ARM name
    Properties Pulumi.AzureNative.Migrate.Inputs.MigrationEntityProperties
    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.
    MigrationEntityName string
    Migration Entity ARM name
    Properties MigrationEntityPropertiesArgs
    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.
    migrationEntityName String
    Migration Entity ARM name
    properties MigrationEntityProperties
    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.
    migrationEntityName string
    Migration Entity ARM name
    properties MigrationEntityProperties
    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_name str
    Migration Entity ARM name
    properties MigrationEntityPropertiesArgs
    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.
    migrationEntityName String
    Migration Entity ARM name
    properties Property Map
    The resource-specific properties for this resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the MigrationEntity 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

    MigrationEntityProperties, MigrationEntityPropertiesArgs

    Migration Entity Properties class.
    AssociatedInventoryResourceId string
    inventory resource id
    InventoryDisplayName string
    Display Name of the Workload.
    AssessedEntityArmId string
    Assessed Entity ARM Id
    AssociatedAssessmentId string
    Associated Assessment Id
    AssociatedMigrationEntityGroupIds List<string>
    associated Migration Entity Group Id
    AssociatedWaveId string
    associated Wave Id
    MigrationPath string
    Migration path
    MigrationSpecificProperties Pulumi.AzureNative.Migrate.Inputs.ServerMigrationSpecificProperties
    Migration specific properties for the entity.
    MigrationTool string
    Migration Tool of the Migration Entity.
    PartnerResourceArmId string
    ARM Resource Identifier for the partner resource.
    Target string
    Target of the Migration Entity.
    TargetAzureResourceArmId string
    target Azure Resource ARM Id.
    AssociatedInventoryResourceId string
    inventory resource id
    InventoryDisplayName string
    Display Name of the Workload.
    AssessedEntityArmId string
    Assessed Entity ARM Id
    AssociatedAssessmentId string
    Associated Assessment Id
    AssociatedMigrationEntityGroupIds []string
    associated Migration Entity Group Id
    AssociatedWaveId string
    associated Wave Id
    MigrationPath string
    Migration path
    MigrationSpecificProperties ServerMigrationSpecificProperties
    Migration specific properties for the entity.
    MigrationTool string
    Migration Tool of the Migration Entity.
    PartnerResourceArmId string
    ARM Resource Identifier for the partner resource.
    Target string
    Target of the Migration Entity.
    TargetAzureResourceArmId string
    target Azure Resource ARM Id.
    associatedInventoryResourceId String
    inventory resource id
    inventoryDisplayName String
    Display Name of the Workload.
    assessedEntityArmId String
    Assessed Entity ARM Id
    associatedAssessmentId String
    Associated Assessment Id
    associatedMigrationEntityGroupIds List<String>
    associated Migration Entity Group Id
    associatedWaveId String
    associated Wave Id
    migrationPath String
    Migration path
    migrationSpecificProperties ServerMigrationSpecificProperties
    Migration specific properties for the entity.
    migrationTool String
    Migration Tool of the Migration Entity.
    partnerResourceArmId String
    ARM Resource Identifier for the partner resource.
    target String
    Target of the Migration Entity.
    targetAzureResourceArmId String
    target Azure Resource ARM Id.
    associatedInventoryResourceId string
    inventory resource id
    inventoryDisplayName string
    Display Name of the Workload.
    assessedEntityArmId string
    Assessed Entity ARM Id
    associatedAssessmentId string
    Associated Assessment Id
    associatedMigrationEntityGroupIds string[]
    associated Migration Entity Group Id
    associatedWaveId string
    associated Wave Id
    migrationPath string
    Migration path
    migrationSpecificProperties ServerMigrationSpecificProperties
    Migration specific properties for the entity.
    migrationTool string
    Migration Tool of the Migration Entity.
    partnerResourceArmId string
    ARM Resource Identifier for the partner resource.
    target string
    Target of the Migration Entity.
    targetAzureResourceArmId string
    target Azure Resource ARM Id.
    associated_inventory_resource_id str
    inventory resource id
    inventory_display_name str
    Display Name of the Workload.
    assessed_entity_arm_id str
    Assessed Entity ARM Id
    associated_assessment_id str
    Associated Assessment Id
    associated_migration_entity_group_ids Sequence[str]
    associated Migration Entity Group Id
    associated_wave_id str
    associated Wave Id
    migration_path str
    Migration path
    migration_specific_properties ServerMigrationSpecificProperties
    Migration specific properties for the entity.
    migration_tool str
    Migration Tool of the Migration Entity.
    partner_resource_arm_id str
    ARM Resource Identifier for the partner resource.
    target str
    Target of the Migration Entity.
    target_azure_resource_arm_id str
    target Azure Resource ARM Id.
    associatedInventoryResourceId String
    inventory resource id
    inventoryDisplayName String
    Display Name of the Workload.
    assessedEntityArmId String
    Assessed Entity ARM Id
    associatedAssessmentId String
    Associated Assessment Id
    associatedMigrationEntityGroupIds List<String>
    associated Migration Entity Group Id
    associatedWaveId String
    associated Wave Id
    migrationPath String
    Migration path
    migrationSpecificProperties Property Map
    Migration specific properties for the entity.
    migrationTool String
    Migration Tool of the Migration Entity.
    partnerResourceArmId String
    ARM Resource Identifier for the partner resource.
    target String
    Target of the Migration Entity.
    targetAzureResourceArmId String
    target Azure Resource ARM Id.

    MigrationEntityPropertiesResponse, MigrationEntityPropertiesResponseArgs

    Migration Entity Properties class.
    AssociatedInventoryResourceId string
    inventory resource id
    ExecutionReadiness string
    Execution Readiness of Migration Entity.
    ExecutionStage string
    Execution Stage of Migration Entity.
    ExecutionStartDate string
    Execution start date for Migration Entity.
    ExecutionStatus string
    Execution Status of Migration Entity.
    InventoryDisplayName string
    Display Name of the Workload.
    MigrationStrategy string
    Strategy of Migration Entity.
    ProvisioningState string
    The status of the last operation.
    AssessedEntityArmId string
    Assessed Entity ARM Id
    AssociatedAssessmentId string
    Associated Assessment Id
    AssociatedMigrationEntityGroupIds List<string>
    associated Migration Entity Group Id
    AssociatedWaveId string
    associated Wave Id
    MigrationPath string
    Migration path
    MigrationSpecificProperties Pulumi.AzureNative.Migrate.Inputs.ServerMigrationSpecificPropertiesResponse
    Migration specific properties for the entity.
    MigrationTool string
    Migration Tool of the Migration Entity.
    PartnerResourceArmId string
    ARM Resource Identifier for the partner resource.
    Target string
    Target of the Migration Entity.
    TargetAzureResourceArmId string
    target Azure Resource ARM Id.
    AssociatedInventoryResourceId string
    inventory resource id
    ExecutionReadiness string
    Execution Readiness of Migration Entity.
    ExecutionStage string
    Execution Stage of Migration Entity.
    ExecutionStartDate string
    Execution start date for Migration Entity.
    ExecutionStatus string
    Execution Status of Migration Entity.
    InventoryDisplayName string
    Display Name of the Workload.
    MigrationStrategy string
    Strategy of Migration Entity.
    ProvisioningState string
    The status of the last operation.
    AssessedEntityArmId string
    Assessed Entity ARM Id
    AssociatedAssessmentId string
    Associated Assessment Id
    AssociatedMigrationEntityGroupIds []string
    associated Migration Entity Group Id
    AssociatedWaveId string
    associated Wave Id
    MigrationPath string
    Migration path
    MigrationSpecificProperties ServerMigrationSpecificPropertiesResponse
    Migration specific properties for the entity.
    MigrationTool string
    Migration Tool of the Migration Entity.
    PartnerResourceArmId string
    ARM Resource Identifier for the partner resource.
    Target string
    Target of the Migration Entity.
    TargetAzureResourceArmId string
    target Azure Resource ARM Id.
    associatedInventoryResourceId String
    inventory resource id
    executionReadiness String
    Execution Readiness of Migration Entity.
    executionStage String
    Execution Stage of Migration Entity.
    executionStartDate String
    Execution start date for Migration Entity.
    executionStatus String
    Execution Status of Migration Entity.
    inventoryDisplayName String
    Display Name of the Workload.
    migrationStrategy String
    Strategy of Migration Entity.
    provisioningState String
    The status of the last operation.
    assessedEntityArmId String
    Assessed Entity ARM Id
    associatedAssessmentId String
    Associated Assessment Id
    associatedMigrationEntityGroupIds List<String>
    associated Migration Entity Group Id
    associatedWaveId String
    associated Wave Id
    migrationPath String
    Migration path
    migrationSpecificProperties ServerMigrationSpecificPropertiesResponse
    Migration specific properties for the entity.
    migrationTool String
    Migration Tool of the Migration Entity.
    partnerResourceArmId String
    ARM Resource Identifier for the partner resource.
    target String
    Target of the Migration Entity.
    targetAzureResourceArmId String
    target Azure Resource ARM Id.
    associatedInventoryResourceId string
    inventory resource id
    executionReadiness string
    Execution Readiness of Migration Entity.
    executionStage string
    Execution Stage of Migration Entity.
    executionStartDate string
    Execution start date for Migration Entity.
    executionStatus string
    Execution Status of Migration Entity.
    inventoryDisplayName string
    Display Name of the Workload.
    migrationStrategy string
    Strategy of Migration Entity.
    provisioningState string
    The status of the last operation.
    assessedEntityArmId string
    Assessed Entity ARM Id
    associatedAssessmentId string
    Associated Assessment Id
    associatedMigrationEntityGroupIds string[]
    associated Migration Entity Group Id
    associatedWaveId string
    associated Wave Id
    migrationPath string
    Migration path
    migrationSpecificProperties ServerMigrationSpecificPropertiesResponse
    Migration specific properties for the entity.
    migrationTool string
    Migration Tool of the Migration Entity.
    partnerResourceArmId string
    ARM Resource Identifier for the partner resource.
    target string
    Target of the Migration Entity.
    targetAzureResourceArmId string
    target Azure Resource ARM Id.
    associated_inventory_resource_id str
    inventory resource id
    execution_readiness str
    Execution Readiness of Migration Entity.
    execution_stage str
    Execution Stage of Migration Entity.
    execution_start_date str
    Execution start date for Migration Entity.
    execution_status str
    Execution Status of Migration Entity.
    inventory_display_name str
    Display Name of the Workload.
    migration_strategy str
    Strategy of Migration Entity.
    provisioning_state str
    The status of the last operation.
    assessed_entity_arm_id str
    Assessed Entity ARM Id
    associated_assessment_id str
    Associated Assessment Id
    associated_migration_entity_group_ids Sequence[str]
    associated Migration Entity Group Id
    associated_wave_id str
    associated Wave Id
    migration_path str
    Migration path
    migration_specific_properties ServerMigrationSpecificPropertiesResponse
    Migration specific properties for the entity.
    migration_tool str
    Migration Tool of the Migration Entity.
    partner_resource_arm_id str
    ARM Resource Identifier for the partner resource.
    target str
    Target of the Migration Entity.
    target_azure_resource_arm_id str
    target Azure Resource ARM Id.
    associatedInventoryResourceId String
    inventory resource id
    executionReadiness String
    Execution Readiness of Migration Entity.
    executionStage String
    Execution Stage of Migration Entity.
    executionStartDate String
    Execution start date for Migration Entity.
    executionStatus String
    Execution Status of Migration Entity.
    inventoryDisplayName String
    Display Name of the Workload.
    migrationStrategy String
    Strategy of Migration Entity.
    provisioningState String
    The status of the last operation.
    assessedEntityArmId String
    Assessed Entity ARM Id
    associatedAssessmentId String
    Associated Assessment Id
    associatedMigrationEntityGroupIds List<String>
    associated Migration Entity Group Id
    associatedWaveId String
    associated Wave Id
    migrationPath String
    Migration path
    migrationSpecificProperties Property Map
    Migration specific properties for the entity.
    migrationTool String
    Migration Tool of the Migration Entity.
    partnerResourceArmId String
    ARM Resource Identifier for the partner resource.
    target String
    Target of the Migration Entity.
    targetAzureResourceArmId String
    target Azure Resource ARM Id.

    ServerMigrationSpecificProperties, ServerMigrationSpecificPropertiesArgs

    Represents a Server Migration Specific properties base model.
    CurrentJobId string
    A type definition that refers the id to an Azure Resource Manager resource.
    DrApplianceInventoryId string
    A type definition that refers the id to an Azure Resource Manager resource.
    CurrentJobId string
    A type definition that refers the id to an Azure Resource Manager resource.
    DrApplianceInventoryId string
    A type definition that refers the id to an Azure Resource Manager resource.
    currentJobId String
    A type definition that refers the id to an Azure Resource Manager resource.
    drApplianceInventoryId String
    A type definition that refers the id to an Azure Resource Manager resource.
    currentJobId string
    A type definition that refers the id to an Azure Resource Manager resource.
    drApplianceInventoryId string
    A type definition that refers the id to an Azure Resource Manager resource.
    current_job_id str
    A type definition that refers the id to an Azure Resource Manager resource.
    dr_appliance_inventory_id str
    A type definition that refers the id to an Azure Resource Manager resource.
    currentJobId String
    A type definition that refers the id to an Azure Resource Manager resource.
    drApplianceInventoryId String
    A type definition that refers the id to an Azure Resource Manager resource.

    ServerMigrationSpecificPropertiesResponse, ServerMigrationSpecificPropertiesResponseArgs

    Represents a Server Migration Specific properties base model.
    CurrentJobId string
    A type definition that refers the id to an Azure Resource Manager resource.
    DrApplianceInventoryId string
    A type definition that refers the id to an Azure Resource Manager resource.
    CurrentJobId string
    A type definition that refers the id to an Azure Resource Manager resource.
    DrApplianceInventoryId string
    A type definition that refers the id to an Azure Resource Manager resource.
    currentJobId String
    A type definition that refers the id to an Azure Resource Manager resource.
    drApplianceInventoryId String
    A type definition that refers the id to an Azure Resource Manager resource.
    currentJobId string
    A type definition that refers the id to an Azure Resource Manager resource.
    drApplianceInventoryId string
    A type definition that refers the id to an Azure Resource Manager resource.
    current_job_id str
    A type definition that refers the id to an Azure Resource Manager resource.
    dr_appliance_inventory_id str
    A type definition that refers the id to an Azure Resource Manager resource.
    currentJobId String
    A type definition that refers the id to an Azure Resource Manager resource.
    drApplianceInventoryId String
    A type definition that refers the id to an Azure Resource Manager resource.

    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:MigrationEntity txhtkdqewu /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/migrateProjects/{projectName}/migrationEntities/{migrationEntityName} 
    

    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