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

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

    Example Usage

    Waves_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 wave = new AzureNative.Migrate.Wave("wave", new()
        {
            ProjectName = "myProjectName",
            Properties = new AzureNative.Migrate.Inputs.WavePropertiesArgs
            {
                Arg = new AzureNative.Migrate.Inputs.ArgArgs
                {
                    Query = "shcijfglntriaccyqiwjipqneiqlm",
                },
                Description = "ukktsjlknnsvbrt",
                DisplayName = "bhypoxylsythumuxqozo",
                PlannedCompletionDate = "2025-07-07T05:56:49.292Z",
                PlannedStartDate = "2025-07-07T05:56:49.292Z",
            },
            ResourceGroupName = "rgwaves",
            WaveName = "myWaveName",
        });
    
    });
    
    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.NewWave(ctx, "wave", &migrate.WaveArgs{
    			ProjectName: pulumi.String("myProjectName"),
    			Properties: &migrate.WavePropertiesArgs{
    				Arg: &migrate.ArgArgs{
    					Query: pulumi.String("shcijfglntriaccyqiwjipqneiqlm"),
    				},
    				Description:           pulumi.String("ukktsjlknnsvbrt"),
    				DisplayName:           pulumi.String("bhypoxylsythumuxqozo"),
    				PlannedCompletionDate: pulumi.String("2025-07-07T05:56:49.292Z"),
    				PlannedStartDate:      pulumi.String("2025-07-07T05:56:49.292Z"),
    			},
    			ResourceGroupName: pulumi.String("rgwaves"),
    			WaveName:          pulumi.String("myWaveName"),
    		})
    		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.Wave;
    import com.pulumi.azurenative.migrate.WaveArgs;
    import com.pulumi.azurenative.migrate.inputs.WavePropertiesArgs;
    import com.pulumi.azurenative.migrate.inputs.ArgArgs;
    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 wave = new Wave("wave", WaveArgs.builder()
                .projectName("myProjectName")
                .properties(WavePropertiesArgs.builder()
                    .arg(ArgArgs.builder()
                        .query("shcijfglntriaccyqiwjipqneiqlm")
                        .build())
                    .description("ukktsjlknnsvbrt")
                    .displayName("bhypoxylsythumuxqozo")
                    .plannedCompletionDate("2025-07-07T05:56:49.292Z")
                    .plannedStartDate("2025-07-07T05:56:49.292Z")
                    .build())
                .resourceGroupName("rgwaves")
                .waveName("myWaveName")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const wave = new azure_native.migrate.Wave("wave", {
        projectName: "myProjectName",
        properties: {
            arg: {
                query: "shcijfglntriaccyqiwjipqneiqlm",
            },
            description: "ukktsjlknnsvbrt",
            displayName: "bhypoxylsythumuxqozo",
            plannedCompletionDate: "2025-07-07T05:56:49.292Z",
            plannedStartDate: "2025-07-07T05:56:49.292Z",
        },
        resourceGroupName: "rgwaves",
        waveName: "myWaveName",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    wave = azure_native.migrate.Wave("wave",
        project_name="myProjectName",
        properties={
            "arg": {
                "query": "shcijfglntriaccyqiwjipqneiqlm",
            },
            "description": "ukktsjlknnsvbrt",
            "display_name": "bhypoxylsythumuxqozo",
            "planned_completion_date": "2025-07-07T05:56:49.292Z",
            "planned_start_date": "2025-07-07T05:56:49.292Z",
        },
        resource_group_name="rgwaves",
        wave_name="myWaveName")
    
    resources:
      wave:
        type: azure-native:migrate:Wave
        properties:
          projectName: myProjectName
          properties:
            arg:
              query: shcijfglntriaccyqiwjipqneiqlm
            description: ukktsjlknnsvbrt
            displayName: bhypoxylsythumuxqozo
            plannedCompletionDate: 2025-07-07T05:56:49.292Z
            plannedStartDate: 2025-07-07T05:56:49.292Z
          resourceGroupName: rgwaves
          waveName: myWaveName
    

    Create Wave Resource

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

    Constructor syntax

    new Wave(name: string, args: WaveArgs, opts?: CustomResourceOptions);
    @overload
    def Wave(resource_name: str,
             args: WaveArgs,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Wave(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             project_name: Optional[str] = None,
             resource_group_name: Optional[str] = None,
             properties: Optional[WavePropertiesArgs] = None,
             wave_name: Optional[str] = None)
    func NewWave(ctx *Context, name string, args WaveArgs, opts ...ResourceOption) (*Wave, error)
    public Wave(string name, WaveArgs args, CustomResourceOptions? opts = null)
    public Wave(String name, WaveArgs args)
    public Wave(String name, WaveArgs args, CustomResourceOptions options)
    
    type: azure-native:migrate:Wave
    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 WaveArgs
    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 WaveArgs
    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 WaveArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WaveArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WaveArgs
    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 waveResource = new AzureNative.Migrate.Wave("waveResource", new()
    {
        ProjectName = "string",
        ResourceGroupName = "string",
        Properties = new AzureNative.Migrate.Inputs.WavePropertiesArgs
        {
            Arg = new AzureNative.Migrate.Inputs.ArgArgs
            {
                Query = "string",
            },
            DisplayName = "string",
            PlannedStartDate = "string",
            Description = "string",
            PlannedCompletionDate = "string",
        },
        WaveName = "string",
    });
    
    example, err := migrate.NewWave(ctx, "waveResource", &migrate.WaveArgs{
    	ProjectName:       pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	Properties: &migrate.WavePropertiesArgs{
    		Arg: &migrate.ArgArgs{
    			Query: pulumi.String("string"),
    		},
    		DisplayName:           pulumi.String("string"),
    		PlannedStartDate:      pulumi.String("string"),
    		Description:           pulumi.String("string"),
    		PlannedCompletionDate: pulumi.String("string"),
    	},
    	WaveName: pulumi.String("string"),
    })
    
    var waveResource = new Wave("waveResource", WaveArgs.builder()
        .projectName("string")
        .resourceGroupName("string")
        .properties(WavePropertiesArgs.builder()
            .arg(ArgArgs.builder()
                .query("string")
                .build())
            .displayName("string")
            .plannedStartDate("string")
            .description("string")
            .plannedCompletionDate("string")
            .build())
        .waveName("string")
        .build());
    
    wave_resource = azure_native.migrate.Wave("waveResource",
        project_name="string",
        resource_group_name="string",
        properties={
            "arg": {
                "query": "string",
            },
            "display_name": "string",
            "planned_start_date": "string",
            "description": "string",
            "planned_completion_date": "string",
        },
        wave_name="string")
    
    const waveResource = new azure_native.migrate.Wave("waveResource", {
        projectName: "string",
        resourceGroupName: "string",
        properties: {
            arg: {
                query: "string",
            },
            displayName: "string",
            plannedStartDate: "string",
            description: "string",
            plannedCompletionDate: "string",
        },
        waveName: "string",
    });
    
    type: azure-native:migrate:Wave
    properties:
        projectName: string
        properties:
            arg:
                query: string
            description: string
            displayName: string
            plannedCompletionDate: string
            plannedStartDate: string
        resourceGroupName: string
        waveName: string
    

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

    ProjectName string
    Migrate Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Properties Pulumi.AzureNative.Migrate.Inputs.WaveProperties
    The resource-specific properties for this resource.
    WaveName string
    Migration Wave Resource
    ProjectName string
    Migrate Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Properties WavePropertiesArgs
    The resource-specific properties for this resource.
    WaveName string
    Migration Wave Resource
    projectName String
    Migrate Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    properties WaveProperties
    The resource-specific properties for this resource.
    waveName String
    Migration Wave Resource
    projectName string
    Migrate Project Name
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    properties WaveProperties
    The resource-specific properties for this resource.
    waveName string
    Migration Wave Resource
    project_name str
    Migrate Project Name
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    properties WavePropertiesArgs
    The resource-specific properties for this resource.
    wave_name str
    Migration Wave Resource
    projectName String
    Migrate Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    properties Property Map
    The resource-specific properties for this resource.
    waveName String
    Migration Wave Resource

    Outputs

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

    Arg, ArgArgs

    ARG query and other details to create workloads within a wave.
    Query string
    The query to create workloads within the wave.
    Query string
    The query to create workloads within the wave.
    query String
    The query to create workloads within the wave.
    query string
    The query to create workloads within the wave.
    query str
    The query to create workloads within the wave.
    query String
    The query to create workloads within the wave.

    ArgResponse, ArgResponseArgs

    ARG query and other details to create workloads within a wave.
    Query string
    The query to create workloads within the wave.
    Query string
    The query to create workloads within the wave.
    query String
    The query to create workloads within the wave.
    query string
    The query to create workloads within the wave.
    query str
    The query to create workloads within the wave.
    query String
    The query to create workloads within the wave.

    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.

    WaveProperties, WavePropertiesArgs

    Migration Wave Properties class.
    Arg Pulumi.AzureNative.Migrate.Inputs.Arg
    ARG query and other details to create workloads within a wave
    DisplayName string
    Display Name of the wave.
    PlannedStartDate string
    Planned start date of the wave.
    Description string
    Description of the wave.
    PlannedCompletionDate string
    Planned completion date of the wave.
    Arg Arg
    ARG query and other details to create workloads within a wave
    DisplayName string
    Display Name of the wave.
    PlannedStartDate string
    Planned start date of the wave.
    Description string
    Description of the wave.
    PlannedCompletionDate string
    Planned completion date of the wave.
    arg Arg
    ARG query and other details to create workloads within a wave
    displayName String
    Display Name of the wave.
    plannedStartDate String
    Planned start date of the wave.
    description String
    Description of the wave.
    plannedCompletionDate String
    Planned completion date of the wave.
    arg Arg
    ARG query and other details to create workloads within a wave
    displayName string
    Display Name of the wave.
    plannedStartDate string
    Planned start date of the wave.
    description string
    Description of the wave.
    plannedCompletionDate string
    Planned completion date of the wave.
    arg Arg
    ARG query and other details to create workloads within a wave
    display_name str
    Display Name of the wave.
    planned_start_date str
    Planned start date of the wave.
    description str
    Description of the wave.
    planned_completion_date str
    Planned completion date of the wave.
    arg Property Map
    ARG query and other details to create workloads within a wave
    displayName String
    Display Name of the wave.
    plannedStartDate String
    Planned start date of the wave.
    description String
    Description of the wave.
    plannedCompletionDate String
    Planned completion date of the wave.

    WavePropertiesResponse, WavePropertiesResponseArgs

    Migration Wave Properties class.
    ActualStartDate string
    Actual start date of the wave.
    Arg Pulumi.AzureNative.Migrate.Inputs.ArgResponse
    ARG query and other details to create workloads within a wave
    DisplayName string
    Display Name of the wave.
    PlannedStartDate string
    Planned start date of the wave.
    ProvisioningState string
    The status of the last operation.
    Stage string
    The current stage of the wave.
    Status string
    The status of the wave.
    Description string
    Description of the wave.
    PlannedCompletionDate string
    Planned completion date of the wave.
    ActualStartDate string
    Actual start date of the wave.
    Arg ArgResponse
    ARG query and other details to create workloads within a wave
    DisplayName string
    Display Name of the wave.
    PlannedStartDate string
    Planned start date of the wave.
    ProvisioningState string
    The status of the last operation.
    Stage string
    The current stage of the wave.
    Status string
    The status of the wave.
    Description string
    Description of the wave.
    PlannedCompletionDate string
    Planned completion date of the wave.
    actualStartDate String
    Actual start date of the wave.
    arg ArgResponse
    ARG query and other details to create workloads within a wave
    displayName String
    Display Name of the wave.
    plannedStartDate String
    Planned start date of the wave.
    provisioningState String
    The status of the last operation.
    stage String
    The current stage of the wave.
    status String
    The status of the wave.
    description String
    Description of the wave.
    plannedCompletionDate String
    Planned completion date of the wave.
    actualStartDate string
    Actual start date of the wave.
    arg ArgResponse
    ARG query and other details to create workloads within a wave
    displayName string
    Display Name of the wave.
    plannedStartDate string
    Planned start date of the wave.
    provisioningState string
    The status of the last operation.
    stage string
    The current stage of the wave.
    status string
    The status of the wave.
    description string
    Description of the wave.
    plannedCompletionDate string
    Planned completion date of the wave.
    actual_start_date str
    Actual start date of the wave.
    arg ArgResponse
    ARG query and other details to create workloads within a wave
    display_name str
    Display Name of the wave.
    planned_start_date str
    Planned start date of the wave.
    provisioning_state str
    The status of the last operation.
    stage str
    The current stage of the wave.
    status str
    The status of the wave.
    description str
    Description of the wave.
    planned_completion_date str
    Planned completion date of the wave.
    actualStartDate String
    Actual start date of the wave.
    arg Property Map
    ARG query and other details to create workloads within a wave
    displayName String
    Display Name of the wave.
    plannedStartDate String
    Planned start date of the wave.
    provisioningState String
    The status of the last operation.
    stage String
    The current stage of the wave.
    status String
    The status of the wave.
    description String
    Description of the wave.
    plannedCompletionDate String
    Planned completion date of the wave.

    Import

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

    $ pulumi import azure-native:migrate:Wave tgmjblyar /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/migrateProjects/{projectName}/waves/{waveName} 
    

    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