Migration Entity Group resource.
Uses Azure REST API version 2025-03-30-preview.
Example Usage
MigrationEntityGroups_Create_MaximumSet - generated by [MaximumSet] rule - generated by [MaximumSet] rule - generated by [MaximumSet] rule - generated by [MaximumSet] rule
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var migrationEntityGroup = new AzureNative.Migrate.MigrationEntityGroup("migrationEntityGroup", new()
{
MigrationEntityGroupName = "myMigrationEntityGroupName",
ProjectName = "myProjectName",
Properties = new AzureNative.Migrate.Inputs.MigrationEntityGroupPropertiesArgs
{
ApplicationDisplayName = "ricbxbn",
ApplicationId = "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.ApplicationMigration/discoveryHubs/MyDiscoveryHub/applications/MyAppe",
AssociatedAssessmentId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment",
AssociatedWaveIds = new[]
{
"/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave",
},
MigrationPath = "PaaSPreferred",
},
ResourceGroupName = "rgwaves",
});
});
package main
import (
migrate "github.com/pulumi/pulumi-azure-native-sdk/migrate/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := migrate.NewMigrationEntityGroup(ctx, "migrationEntityGroup", &migrate.MigrationEntityGroupArgs{
MigrationEntityGroupName: pulumi.String("myMigrationEntityGroupName"),
ProjectName: pulumi.String("myProjectName"),
Properties: &migrate.MigrationEntityGroupPropertiesArgs{
ApplicationDisplayName: pulumi.String("ricbxbn"),
ApplicationId: pulumi.String("/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.ApplicationMigration/discoveryHubs/MyDiscoveryHub/applications/MyAppe"),
AssociatedAssessmentId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment"),
AssociatedWaveIds: pulumi.StringArray{
pulumi.String("/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave"),
},
MigrationPath: pulumi.String("PaaSPreferred"),
},
ResourceGroupName: pulumi.String("rgwaves"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.migrate.MigrationEntityGroup;
import com.pulumi.azurenative.migrate.MigrationEntityGroupArgs;
import com.pulumi.azurenative.migrate.inputs.MigrationEntityGroupPropertiesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var migrationEntityGroup = new MigrationEntityGroup("migrationEntityGroup", MigrationEntityGroupArgs.builder()
.migrationEntityGroupName("myMigrationEntityGroupName")
.projectName("myProjectName")
.properties(MigrationEntityGroupPropertiesArgs.builder()
.applicationDisplayName("ricbxbn")
.applicationId("/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.ApplicationMigration/discoveryHubs/MyDiscoveryHub/applications/MyAppe")
.associatedAssessmentId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment")
.associatedWaveIds("/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave")
.migrationPath("PaaSPreferred")
.build())
.resourceGroupName("rgwaves")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const migrationEntityGroup = new azure_native.migrate.MigrationEntityGroup("migrationEntityGroup", {
migrationEntityGroupName: "myMigrationEntityGroupName",
projectName: "myProjectName",
properties: {
applicationDisplayName: "ricbxbn",
applicationId: "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.ApplicationMigration/discoveryHubs/MyDiscoveryHub/applications/MyAppe",
associatedAssessmentId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment",
associatedWaveIds: ["/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave"],
migrationPath: "PaaSPreferred",
},
resourceGroupName: "rgwaves",
});
import pulumi
import pulumi_azure_native as azure_native
migration_entity_group = azure_native.migrate.MigrationEntityGroup("migrationEntityGroup",
migration_entity_group_name="myMigrationEntityGroupName",
project_name="myProjectName",
properties={
"application_display_name": "ricbxbn",
"application_id": "/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.ApplicationMigration/discoveryHubs/MyDiscoveryHub/applications/MyAppe",
"associated_assessment_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment",
"associated_wave_ids": ["/subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave"],
"migration_path": "PaaSPreferred",
},
resource_group_name="rgwaves")
resources:
migrationEntityGroup:
type: azure-native:migrate:MigrationEntityGroup
properties:
migrationEntityGroupName: myMigrationEntityGroupName
projectName: myProjectName
properties:
applicationDisplayName: ricbxbn
applicationId: /subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.ApplicationMigration/discoveryHubs/MyDiscoveryHub/applications/MyAppe
associatedAssessmentId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/assessmentprojects/myAssessmentproject/assessments/myAssessment
associatedWaveIds:
- /subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/MyResourceGroup/providers/Microsoft.Migrate/migrateProjects/MyMigrateProject/waves/myWave
migrationPath: PaaSPreferred
resourceGroupName: rgwaves
Create MigrationEntityGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MigrationEntityGroup(name: string, args: MigrationEntityGroupArgs, opts?: CustomResourceOptions);@overload
def MigrationEntityGroup(resource_name: str,
args: MigrationEntityGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MigrationEntityGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
project_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
migration_entity_group_name: Optional[str] = None,
properties: Optional[MigrationEntityGroupPropertiesArgs] = None)func NewMigrationEntityGroup(ctx *Context, name string, args MigrationEntityGroupArgs, opts ...ResourceOption) (*MigrationEntityGroup, error)public MigrationEntityGroup(string name, MigrationEntityGroupArgs args, CustomResourceOptions? opts = null)
public MigrationEntityGroup(String name, MigrationEntityGroupArgs args)
public MigrationEntityGroup(String name, MigrationEntityGroupArgs args, CustomResourceOptions options)
type: azure-native:migrate:MigrationEntityGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args MigrationEntityGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args MigrationEntityGroupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args MigrationEntityGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MigrationEntityGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MigrationEntityGroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var migrationEntityGroupResource = new AzureNative.Migrate.MigrationEntityGroup("migrationEntityGroupResource", new()
{
ProjectName = "string",
ResourceGroupName = "string",
MigrationEntityGroupName = "string",
Properties = new AzureNative.Migrate.Inputs.MigrationEntityGroupPropertiesArgs
{
ApplicationDisplayName = "string",
ApplicationId = "string",
AssociatedAssessmentId = "string",
AssociatedWaveIds = new[]
{
"string",
},
MigrationPath = "string",
},
});
example, err := migrate.NewMigrationEntityGroup(ctx, "migrationEntityGroupResource", &migrate.MigrationEntityGroupArgs{
ProjectName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
MigrationEntityGroupName: pulumi.String("string"),
Properties: &migrate.MigrationEntityGroupPropertiesArgs{
ApplicationDisplayName: pulumi.String("string"),
ApplicationId: pulumi.String("string"),
AssociatedAssessmentId: pulumi.String("string"),
AssociatedWaveIds: pulumi.StringArray{
pulumi.String("string"),
},
MigrationPath: pulumi.String("string"),
},
})
var migrationEntityGroupResource = new MigrationEntityGroup("migrationEntityGroupResource", MigrationEntityGroupArgs.builder()
.projectName("string")
.resourceGroupName("string")
.migrationEntityGroupName("string")
.properties(MigrationEntityGroupPropertiesArgs.builder()
.applicationDisplayName("string")
.applicationId("string")
.associatedAssessmentId("string")
.associatedWaveIds("string")
.migrationPath("string")
.build())
.build());
migration_entity_group_resource = azure_native.migrate.MigrationEntityGroup("migrationEntityGroupResource",
project_name="string",
resource_group_name="string",
migration_entity_group_name="string",
properties={
"application_display_name": "string",
"application_id": "string",
"associated_assessment_id": "string",
"associated_wave_ids": ["string"],
"migration_path": "string",
})
const migrationEntityGroupResource = new azure_native.migrate.MigrationEntityGroup("migrationEntityGroupResource", {
projectName: "string",
resourceGroupName: "string",
migrationEntityGroupName: "string",
properties: {
applicationDisplayName: "string",
applicationId: "string",
associatedAssessmentId: "string",
associatedWaveIds: ["string"],
migrationPath: "string",
},
});
type: azure-native:migrate:MigrationEntityGroup
properties:
migrationEntityGroupName: string
projectName: string
properties:
applicationDisplayName: string
applicationId: string
associatedAssessmentId: string
associatedWaveIds:
- string
migrationPath: string
resourceGroupName: string
MigrationEntityGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MigrationEntityGroup resource accepts the following input properties:
- Project
Name string - Migrate Project Name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Migration
Entity stringGroup Name - Migration Entity Group ARM name
- Properties
Pulumi.
Azure Native. Migrate. Inputs. Migration Entity Group Properties - The resource-specific properties for this resource.
- Project
Name string - Migrate Project Name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Migration
Entity stringGroup Name - Migration Entity Group ARM name
- Properties
Migration
Entity Group Properties Args - The resource-specific properties for this resource.
- project
Name String - Migrate Project Name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- migration
Entity StringGroup Name - Migration Entity Group ARM name
- properties
Migration
Entity Group Properties - The resource-specific properties for this resource.
- project
Name string - Migrate Project Name
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- migration
Entity stringGroup Name - Migration Entity Group ARM name
- properties
Migration
Entity Group Properties - The resource-specific properties for this resource.
- project_
name str - Migrate Project Name
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- migration_
entity_ strgroup_ name - Migration Entity Group ARM name
- properties
Migration
Entity Group Properties Args - The resource-specific properties for this resource.
- project
Name String - Migrate Project Name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- migration
Entity StringGroup Name - Migration Entity Group ARM name
- properties Property Map
- The resource-specific properties for this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the MigrationEntityGroup resource produces the following output properties:
- 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
MigrationEntityGroupProperties, MigrationEntityGroupPropertiesArgs
Migration Entity Group Properties class.- Application
Display stringName - Display Name of the Workload.
- Application
Id string - Application id
- Associated
Assessment stringId - Associated Assessment Id
- Associated
Wave List<string>Ids - associated Wave Id
- Migration
Path string - Migration path
- Application
Display stringName - Display Name of the Workload.
- Application
Id string - Application id
- Associated
Assessment stringId - Associated Assessment Id
- Associated
Wave []stringIds - associated Wave Id
- Migration
Path string - Migration path
- application
Display StringName - Display Name of the Workload.
- application
Id String - Application id
- associated
Assessment StringId - Associated Assessment Id
- associated
Wave List<String>Ids - associated Wave Id
- migration
Path String - Migration path
- application
Display stringName - Display Name of the Workload.
- application
Id string - Application id
- associated
Assessment stringId - Associated Assessment Id
- associated
Wave string[]Ids - associated Wave Id
- migration
Path string - Migration path
- application_
display_ strname - Display Name of the Workload.
- application_
id str - Application id
- associated_
assessment_ strid - Associated Assessment Id
- associated_
wave_ Sequence[str]ids - associated Wave Id
- migration_
path str - Migration path
- application
Display StringName - Display Name of the Workload.
- application
Id String - Application id
- associated
Assessment StringId - Associated Assessment Id
- associated
Wave List<String>Ids - associated Wave Id
- migration
Path String - Migration path
MigrationEntityGroupPropertiesResponse, MigrationEntityGroupPropertiesResponseArgs
Migration Entity Group Properties class.- Application
Display stringName - Display Name of the Workload.
- Application
Id string - Application id
- Execution
Start stringDate - Execution Start Date
- Execution
Status string - Migration Entity Group Status
- Provisioning
State string - The status of the last operation.
- Associated
Assessment stringId - Associated Assessment Id
- Associated
Wave List<string>Ids - associated Wave Id
- Migration
Path string - Migration path
- Application
Display stringName - Display Name of the Workload.
- Application
Id string - Application id
- Execution
Start stringDate - Execution Start Date
- Execution
Status string - Migration Entity Group Status
- Provisioning
State string - The status of the last operation.
- Associated
Assessment stringId - Associated Assessment Id
- Associated
Wave []stringIds - associated Wave Id
- Migration
Path string - Migration path
- application
Display StringName - Display Name of the Workload.
- application
Id String - Application id
- execution
Start StringDate - Execution Start Date
- execution
Status String - Migration Entity Group Status
- provisioning
State String - The status of the last operation.
- associated
Assessment StringId - Associated Assessment Id
- associated
Wave List<String>Ids - associated Wave Id
- migration
Path String - Migration path
- application
Display stringName - Display Name of the Workload.
- application
Id string - Application id
- execution
Start stringDate - Execution Start Date
- execution
Status string - Migration Entity Group Status
- provisioning
State string - The status of the last operation.
- associated
Assessment stringId - Associated Assessment Id
- associated
Wave string[]Ids - associated Wave Id
- migration
Path string - Migration path
- application_
display_ strname - Display Name of the Workload.
- application_
id str - Application id
- execution_
start_ strdate - Execution Start Date
- execution_
status str - Migration Entity Group Status
- provisioning_
state str - The status of the last operation.
- associated_
assessment_ strid - Associated Assessment Id
- associated_
wave_ Sequence[str]ids - associated Wave Id
- migration_
path str - Migration path
- application
Display StringName - Display Name of the Workload.
- application
Id String - Application id
- execution
Start StringDate - Execution Start Date
- execution
Status String - Migration Entity Group Status
- provisioning
State String - The status of the last operation.
- associated
Assessment StringId - Associated Assessment Id
- associated
Wave List<String>Ids - associated Wave Id
- migration
Path String - Migration path
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.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:migrate:MigrationEntityGroup kw /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/migrateProjects/{projectName}/migrationEntityGroups/{migrationEntityGroupName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
