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)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:
- Project
Name string - Migrate Project Name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Properties
Pulumi.
Azure Native. Migrate. Inputs. Wave Properties - The resource-specific properties for this resource.
- Wave
Name string - Migration Wave Resource
- Project
Name string - Migrate Project Name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Properties
Wave
Properties Args - The resource-specific properties for this resource.
- Wave
Name string - Migration Wave Resource
- project
Name String - Migrate Project Name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- properties
Wave
Properties - The resource-specific properties for this resource.
- wave
Name String - Migration Wave Resource
- project
Name string - Migrate Project Name
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- properties
Wave
Properties - The resource-specific properties for this resource.
- wave
Name string - Migration Wave Resource
- project_
name str - Migrate Project Name
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- properties
Wave
Properties Args - The resource-specific properties for this resource.
- wave_
name str - Migration Wave Resource
- project
Name String - Migrate Project Name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- properties Property Map
- The resource-specific properties for this resource.
- wave
Name String - Migration Wave Resource
Outputs
All input properties are implicitly available as output properties. Additionally, the Wave resource produces the following output properties:
- Azure
Api stringVersion - 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
- System
Data Pulumi.Azure Native. Migrate. Outputs. System Data Response - 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 stringVersion - 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
- System
Data SystemData Response - 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 StringVersion - The Azure API version of the resource.
- e
Tag 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
- system
Data SystemData Response - 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 stringVersion - The Azure API version of the resource.
- e
Tag 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
- system
Data SystemData Response - 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_ strversion - 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 SystemData Response - 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"
- azure
Api StringVersion - The Azure API version of the resource.
- e
Tag 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
- system
Data 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.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
WaveProperties, WavePropertiesArgs
Migration Wave Properties class.- Arg
Pulumi.
Azure Native. Migrate. Inputs. Arg - ARG query and other details to create workloads within a wave
- Display
Name string - Display Name of the wave.
- Planned
Start stringDate - Planned start date of the wave.
- Description string
- Description of the wave.
- Planned
Completion stringDate - Planned completion date of the wave.
- Arg Arg
- ARG query and other details to create workloads within a wave
- Display
Name string - Display Name of the wave.
- Planned
Start stringDate - Planned start date of the wave.
- Description string
- Description of the wave.
- Planned
Completion stringDate - Planned completion date of the wave.
- arg Arg
- ARG query and other details to create workloads within a wave
- display
Name String - Display Name of the wave.
- planned
Start StringDate - Planned start date of the wave.
- description String
- Description of the wave.
- planned
Completion StringDate - Planned completion date of the wave.
- arg Arg
- ARG query and other details to create workloads within a wave
- display
Name string - Display Name of the wave.
- planned
Start stringDate - Planned start date of the wave.
- description string
- Description of the wave.
- planned
Completion stringDate - 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_ strdate - Planned start date of the wave.
- description str
- Description of the wave.
- planned_
completion_ strdate - Planned completion date of the wave.
- arg Property Map
- ARG query and other details to create workloads within a wave
- display
Name String - Display Name of the wave.
- planned
Start StringDate - Planned start date of the wave.
- description String
- Description of the wave.
- planned
Completion StringDate - Planned completion date of the wave.
WavePropertiesResponse, WavePropertiesResponseArgs
Migration Wave Properties class.- Actual
Start stringDate - Actual start date of the wave.
- Arg
Pulumi.
Azure Native. Migrate. Inputs. Arg Response - ARG query and other details to create workloads within a wave
- Display
Name string - Display Name of the wave.
- Planned
Start stringDate - Planned start date of the wave.
- Provisioning
State 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.
- Planned
Completion stringDate - Planned completion date of the wave.
- Actual
Start stringDate - Actual start date of the wave.
- Arg
Arg
Response - ARG query and other details to create workloads within a wave
- Display
Name string - Display Name of the wave.
- Planned
Start stringDate - Planned start date of the wave.
- Provisioning
State 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.
- Planned
Completion stringDate - Planned completion date of the wave.
- actual
Start StringDate - Actual start date of the wave.
- arg
Arg
Response - ARG query and other details to create workloads within a wave
- display
Name String - Display Name of the wave.
- planned
Start StringDate - Planned start date of the wave.
- provisioning
State 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.
- planned
Completion StringDate - Planned completion date of the wave.
- actual
Start stringDate - Actual start date of the wave.
- arg
Arg
Response - ARG query and other details to create workloads within a wave
- display
Name string - Display Name of the wave.
- planned
Start stringDate - Planned start date of the wave.
- provisioning
State 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.
- planned
Completion stringDate - Planned completion date of the wave.
- actual_
start_ strdate - Actual start date of the wave.
- arg
Arg
Response - ARG query and other details to create workloads within a wave
- display_
name str - Display Name of the wave.
- planned_
start_ strdate - 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_ strdate - Planned completion date of the wave.
- actual
Start StringDate - Actual start date of the wave.
- arg Property Map
- ARG query and other details to create workloads within a wave
- display
Name String - Display Name of the wave.
- planned
Start StringDate - Planned start date of the wave.
- provisioning
State 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.
- planned
Completion StringDate - 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
