1. Packages
  2. Azure Native
  3. API Docs
  4. migrate
  5. CompoundAssessmentOperation
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.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.migrate.CompoundAssessmentOperation

Explore with Pulumi AI

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.3.0 published on Monday, Apr 28, 2025 by Pulumi

    Compound assessment resource.

    Uses Azure REST API version 2024-03-03-preview.

    Example Usage

    CompoundAssessmentOperations_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var compoundAssessmentOperation = new AzureNative.Migrate.CompoundAssessmentOperation("compoundAssessmentOperation", new()
        {
            CompoundAssessmentName = "assessmentName",
            ProjectName = "contosoProject",
            Properties = new AzureNative.Migrate.Inputs.CompoundAssessmentPropertiesArgs
            {
                FallbackMachineAssessmentArmId = "/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/assessments/nameOfAssessment",
                TargetAssessmentArmIds = new AzureNative.Migrate.Inputs.TargetAssessmentArmIdsArgs
                {
                    Aks = "/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/aksAssessments/nameOfAssessment",
                    AzureAppService = "/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/webAppAssessments/nameOfAssessment",
                    AzureAppServiceContainer = "/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/webAppAssessments/nameOfAssessment",
                },
            },
            ResourceGroupName = "rgwebAppCompoundAssessments",
        });
    
    });
    
    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.NewCompoundAssessmentOperation(ctx, "compoundAssessmentOperation", &migrate.CompoundAssessmentOperationArgs{
    			CompoundAssessmentName: pulumi.String("assessmentName"),
    			ProjectName:            pulumi.String("contosoProject"),
    			Properties: &migrate.CompoundAssessmentPropertiesArgs{
    				FallbackMachineAssessmentArmId: pulumi.String("/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/assessments/nameOfAssessment"),
    				TargetAssessmentArmIds: &migrate.TargetAssessmentArmIdsArgs{
    					Aks:                      pulumi.String("/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/aksAssessments/nameOfAssessment"),
    					AzureAppService:          pulumi.String("/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/webAppAssessments/nameOfAssessment"),
    					AzureAppServiceContainer: pulumi.String("/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/webAppAssessments/nameOfAssessment"),
    				},
    			},
    			ResourceGroupName: pulumi.String("rgwebAppCompoundAssessments"),
    		})
    		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.CompoundAssessmentOperation;
    import com.pulumi.azurenative.migrate.CompoundAssessmentOperationArgs;
    import com.pulumi.azurenative.migrate.inputs.CompoundAssessmentPropertiesArgs;
    import com.pulumi.azurenative.migrate.inputs.TargetAssessmentArmIdsArgs;
    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 compoundAssessmentOperation = new CompoundAssessmentOperation("compoundAssessmentOperation", CompoundAssessmentOperationArgs.builder()
                .compoundAssessmentName("assessmentName")
                .projectName("contosoProject")
                .properties(CompoundAssessmentPropertiesArgs.builder()
                    .fallbackMachineAssessmentArmId("/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/assessments/nameOfAssessment")
                    .targetAssessmentArmIds(TargetAssessmentArmIdsArgs.builder()
                        .aks("/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/aksAssessments/nameOfAssessment")
                        .azureAppService("/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/webAppAssessments/nameOfAssessment")
                        .azureAppServiceContainer("/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/webAppAssessments/nameOfAssessment")
                        .build())
                    .build())
                .resourceGroupName("rgwebAppCompoundAssessments")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const compoundAssessmentOperation = new azure_native.migrate.CompoundAssessmentOperation("compoundAssessmentOperation", {
        compoundAssessmentName: "assessmentName",
        projectName: "contosoProject",
        properties: {
            fallbackMachineAssessmentArmId: "/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/assessments/nameOfAssessment",
            targetAssessmentArmIds: {
                aks: "/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/aksAssessments/nameOfAssessment",
                azureAppService: "/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/webAppAssessments/nameOfAssessment",
                azureAppServiceContainer: "/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/webAppAssessments/nameOfAssessment",
            },
        },
        resourceGroupName: "rgwebAppCompoundAssessments",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    compound_assessment_operation = azure_native.migrate.CompoundAssessmentOperation("compoundAssessmentOperation",
        compound_assessment_name="assessmentName",
        project_name="contosoProject",
        properties={
            "fallback_machine_assessment_arm_id": "/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/assessments/nameOfAssessment",
            "target_assessment_arm_ids": {
                "aks": "/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/aksAssessments/nameOfAssessment",
                "azure_app_service": "/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/webAppAssessments/nameOfAssessment",
                "azure_app_service_container": "/subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/webAppAssessments/nameOfAssessment",
            },
        },
        resource_group_name="rgwebAppCompoundAssessments")
    
    resources:
      compoundAssessmentOperation:
        type: azure-native:migrate:CompoundAssessmentOperation
        properties:
          compoundAssessmentName: assessmentName
          projectName: contosoProject
          properties:
            fallbackMachineAssessmentArmId: /subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/assessments/nameOfAssessment
            targetAssessmentArmIds:
              aks: /subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/aksAssessments/nameOfAssessment
              azureAppService: /subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/webAppAssessments/nameOfAssessment
              azureAppServiceContainer: /subscriptions/6898488D-BBF0-40FC-A5E3-3DF2C00C5F21/resourceGroups/rgwebAppCompoundAssessments/providers/Microsoft.Migrate/assessmentprojects/contosoProject/webAppAssessments/nameOfAssessment
          resourceGroupName: rgwebAppCompoundAssessments
    

    Create CompoundAssessmentOperation Resource

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

    Constructor syntax

    new CompoundAssessmentOperation(name: string, args: CompoundAssessmentOperationArgs, opts?: CustomResourceOptions);
    @overload
    def CompoundAssessmentOperation(resource_name: str,
                                    args: CompoundAssessmentOperationArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def CompoundAssessmentOperation(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    project_name: Optional[str] = None,
                                    resource_group_name: Optional[str] = None,
                                    compound_assessment_name: Optional[str] = None,
                                    properties: Optional[CompoundAssessmentPropertiesArgs] = None)
    func NewCompoundAssessmentOperation(ctx *Context, name string, args CompoundAssessmentOperationArgs, opts ...ResourceOption) (*CompoundAssessmentOperation, error)
    public CompoundAssessmentOperation(string name, CompoundAssessmentOperationArgs args, CustomResourceOptions? opts = null)
    public CompoundAssessmentOperation(String name, CompoundAssessmentOperationArgs args)
    public CompoundAssessmentOperation(String name, CompoundAssessmentOperationArgs args, CustomResourceOptions options)
    
    type: azure-native:migrate:CompoundAssessmentOperation
    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 CompoundAssessmentOperationArgs
    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 CompoundAssessmentOperationArgs
    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 CompoundAssessmentOperationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CompoundAssessmentOperationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CompoundAssessmentOperationArgs
    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 compoundAssessmentOperationResource = new AzureNative.Migrate.CompoundAssessmentOperation("compoundAssessmentOperationResource", new()
    {
        ProjectName = "string",
        ResourceGroupName = "string",
        CompoundAssessmentName = "string",
        Properties = new AzureNative.Migrate.Inputs.CompoundAssessmentPropertiesArgs
        {
            TargetAssessmentArmIds = new AzureNative.Migrate.Inputs.TargetAssessmentArmIdsArgs
            {
                Aks = "string",
                AzureAppService = "string",
                AzureAppServiceContainer = "string",
            },
            FallbackMachineAssessmentArmId = "string",
        },
    });
    
    example, err := migrate.NewCompoundAssessmentOperation(ctx, "compoundAssessmentOperationResource", &migrate.CompoundAssessmentOperationArgs{
    	ProjectName:            pulumi.String("string"),
    	ResourceGroupName:      pulumi.String("string"),
    	CompoundAssessmentName: pulumi.String("string"),
    	Properties: &migrate.CompoundAssessmentPropertiesArgs{
    		TargetAssessmentArmIds: &migrate.TargetAssessmentArmIdsArgs{
    			Aks:                      pulumi.String("string"),
    			AzureAppService:          pulumi.String("string"),
    			AzureAppServiceContainer: pulumi.String("string"),
    		},
    		FallbackMachineAssessmentArmId: pulumi.String("string"),
    	},
    })
    
    var compoundAssessmentOperationResource = new CompoundAssessmentOperation("compoundAssessmentOperationResource", CompoundAssessmentOperationArgs.builder()
        .projectName("string")
        .resourceGroupName("string")
        .compoundAssessmentName("string")
        .properties(CompoundAssessmentPropertiesArgs.builder()
            .targetAssessmentArmIds(TargetAssessmentArmIdsArgs.builder()
                .aks("string")
                .azureAppService("string")
                .azureAppServiceContainer("string")
                .build())
            .fallbackMachineAssessmentArmId("string")
            .build())
        .build());
    
    compound_assessment_operation_resource = azure_native.migrate.CompoundAssessmentOperation("compoundAssessmentOperationResource",
        project_name="string",
        resource_group_name="string",
        compound_assessment_name="string",
        properties={
            "target_assessment_arm_ids": {
                "aks": "string",
                "azure_app_service": "string",
                "azure_app_service_container": "string",
            },
            "fallback_machine_assessment_arm_id": "string",
        })
    
    const compoundAssessmentOperationResource = new azure_native.migrate.CompoundAssessmentOperation("compoundAssessmentOperationResource", {
        projectName: "string",
        resourceGroupName: "string",
        compoundAssessmentName: "string",
        properties: {
            targetAssessmentArmIds: {
                aks: "string",
                azureAppService: "string",
                azureAppServiceContainer: "string",
            },
            fallbackMachineAssessmentArmId: "string",
        },
    });
    
    type: azure-native:migrate:CompoundAssessmentOperation
    properties:
        compoundAssessmentName: string
        projectName: string
        properties:
            fallbackMachineAssessmentArmId: string
            targetAssessmentArmIds:
                aks: string
                azureAppService: string
                azureAppServiceContainer: string
        resourceGroupName: string
    

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

    ProjectName string
    Assessment Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    CompoundAssessmentName string
    Compound Assessment ARM name
    Properties Pulumi.AzureNative.Migrate.Inputs.CompoundAssessmentProperties
    The resource-specific properties for this resource.
    ProjectName string
    Assessment Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    CompoundAssessmentName string
    Compound Assessment ARM name
    Properties CompoundAssessmentPropertiesArgs
    The resource-specific properties for this resource.
    projectName String
    Assessment Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    compoundAssessmentName String
    Compound Assessment ARM name
    properties CompoundAssessmentProperties
    The resource-specific properties for this resource.
    projectName string
    Assessment Project Name
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    compoundAssessmentName string
    Compound Assessment ARM name
    properties CompoundAssessmentProperties
    The resource-specific properties for this resource.
    project_name str
    Assessment Project Name
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    compound_assessment_name str
    Compound Assessment ARM name
    properties CompoundAssessmentPropertiesArgs
    The resource-specific properties for this resource.
    projectName String
    Assessment Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    compoundAssessmentName String
    Compound Assessment ARM name
    properties Property Map
    The resource-specific properties for this resource.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    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.
    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.
    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.
    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.
    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.
    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

    CompoundAssessmentDetailsResponse, CompoundAssessmentDetailsResponseArgs

    Status string
    Status of the assessment.
    CreatedTimestamp string
    Timestamp when the assessment was created.
    UpdatedTimestamp string
    Timestamp when the assessment was last updated.
    Status string
    Status of the assessment.
    CreatedTimestamp string
    Timestamp when the assessment was created.
    UpdatedTimestamp string
    Timestamp when the assessment was last updated.
    status String
    Status of the assessment.
    createdTimestamp String
    Timestamp when the assessment was created.
    updatedTimestamp String
    Timestamp when the assessment was last updated.
    status string
    Status of the assessment.
    createdTimestamp string
    Timestamp when the assessment was created.
    updatedTimestamp string
    Timestamp when the assessment was last updated.
    status str
    Status of the assessment.
    created_timestamp str
    Timestamp when the assessment was created.
    updated_timestamp str
    Timestamp when the assessment was last updated.
    status String
    Status of the assessment.
    createdTimestamp String
    Timestamp when the assessment was created.
    updatedTimestamp String
    Timestamp when the assessment was last updated.

    CompoundAssessmentProperties, CompoundAssessmentPropertiesArgs

    TargetAssessmentArmIds Pulumi.AzureNative.Migrate.Inputs.TargetAssessmentArmIds
    ARM IDs of the target assessments.
    FallbackMachineAssessmentArmId string
    Fallback machine assessment ARM ID.
    TargetAssessmentArmIds TargetAssessmentArmIds
    ARM IDs of the target assessments.
    FallbackMachineAssessmentArmId string
    Fallback machine assessment ARM ID.
    targetAssessmentArmIds TargetAssessmentArmIds
    ARM IDs of the target assessments.
    fallbackMachineAssessmentArmId String
    Fallback machine assessment ARM ID.
    targetAssessmentArmIds TargetAssessmentArmIds
    ARM IDs of the target assessments.
    fallbackMachineAssessmentArmId string
    Fallback machine assessment ARM ID.
    target_assessment_arm_ids TargetAssessmentArmIds
    ARM IDs of the target assessments.
    fallback_machine_assessment_arm_id str
    Fallback machine assessment ARM ID.
    targetAssessmentArmIds Property Map
    ARM IDs of the target assessments.
    fallbackMachineAssessmentArmId String
    Fallback machine assessment ARM ID.

    CompoundAssessmentPropertiesResponse, CompoundAssessmentPropertiesResponseArgs

    Details Pulumi.AzureNative.Migrate.Inputs.CompoundAssessmentDetailsResponse
    Details of the compound assessment.
    ProvisioningState string
    The status of the last operation.
    TargetAssessmentArmIds Pulumi.AzureNative.Migrate.Inputs.TargetAssessmentArmIdsResponse
    ARM IDs of the target assessments.
    FallbackMachineAssessmentArmId string
    Fallback machine assessment ARM ID.
    Details CompoundAssessmentDetailsResponse
    Details of the compound assessment.
    ProvisioningState string
    The status of the last operation.
    TargetAssessmentArmIds TargetAssessmentArmIdsResponse
    ARM IDs of the target assessments.
    FallbackMachineAssessmentArmId string
    Fallback machine assessment ARM ID.
    details CompoundAssessmentDetailsResponse
    Details of the compound assessment.
    provisioningState String
    The status of the last operation.
    targetAssessmentArmIds TargetAssessmentArmIdsResponse
    ARM IDs of the target assessments.
    fallbackMachineAssessmentArmId String
    Fallback machine assessment ARM ID.
    details CompoundAssessmentDetailsResponse
    Details of the compound assessment.
    provisioningState string
    The status of the last operation.
    targetAssessmentArmIds TargetAssessmentArmIdsResponse
    ARM IDs of the target assessments.
    fallbackMachineAssessmentArmId string
    Fallback machine assessment ARM ID.
    details CompoundAssessmentDetailsResponse
    Details of the compound assessment.
    provisioning_state str
    The status of the last operation.
    target_assessment_arm_ids TargetAssessmentArmIdsResponse
    ARM IDs of the target assessments.
    fallback_machine_assessment_arm_id str
    Fallback machine assessment ARM ID.
    details Property Map
    Details of the compound assessment.
    provisioningState String
    The status of the last operation.
    targetAssessmentArmIds Property Map
    ARM IDs of the target assessments.
    fallbackMachineAssessmentArmId String
    Fallback machine assessment ARM ID.

    SystemDataResponse, SystemDataResponseArgs

    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.

    TargetAssessmentArmIds, TargetAssessmentArmIdsArgs

    Aks string
    ARM ID for Azure Kubernetes Service assessment.
    AzureAppService string
    ARM ID for Azure App Service assessment.
    AzureAppServiceContainer string
    ARM ID for Azure App Service Container assessment.
    Aks string
    ARM ID for Azure Kubernetes Service assessment.
    AzureAppService string
    ARM ID for Azure App Service assessment.
    AzureAppServiceContainer string
    ARM ID for Azure App Service Container assessment.
    aks String
    ARM ID for Azure Kubernetes Service assessment.
    azureAppService String
    ARM ID for Azure App Service assessment.
    azureAppServiceContainer String
    ARM ID for Azure App Service Container assessment.
    aks string
    ARM ID for Azure Kubernetes Service assessment.
    azureAppService string
    ARM ID for Azure App Service assessment.
    azureAppServiceContainer string
    ARM ID for Azure App Service Container assessment.
    aks str
    ARM ID for Azure Kubernetes Service assessment.
    azure_app_service str
    ARM ID for Azure App Service assessment.
    azure_app_service_container str
    ARM ID for Azure App Service Container assessment.
    aks String
    ARM ID for Azure Kubernetes Service assessment.
    azureAppService String
    ARM ID for Azure App Service assessment.
    azureAppServiceContainer String
    ARM ID for Azure App Service Container assessment.

    TargetAssessmentArmIdsResponse, TargetAssessmentArmIdsResponseArgs

    Aks string
    ARM ID for Azure Kubernetes Service assessment.
    AzureAppService string
    ARM ID for Azure App Service assessment.
    AzureAppServiceContainer string
    ARM ID for Azure App Service Container assessment.
    Aks string
    ARM ID for Azure Kubernetes Service assessment.
    AzureAppService string
    ARM ID for Azure App Service assessment.
    AzureAppServiceContainer string
    ARM ID for Azure App Service Container assessment.
    aks String
    ARM ID for Azure Kubernetes Service assessment.
    azureAppService String
    ARM ID for Azure App Service assessment.
    azureAppServiceContainer String
    ARM ID for Azure App Service Container assessment.
    aks string
    ARM ID for Azure Kubernetes Service assessment.
    azureAppService string
    ARM ID for Azure App Service assessment.
    azureAppServiceContainer string
    ARM ID for Azure App Service Container assessment.
    aks str
    ARM ID for Azure Kubernetes Service assessment.
    azure_app_service str
    ARM ID for Azure App Service assessment.
    azure_app_service_container str
    ARM ID for Azure App Service Container assessment.
    aks String
    ARM ID for Azure Kubernetes Service assessment.
    azureAppService String
    ARM ID for Azure App Service assessment.
    azureAppServiceContainer String
    ARM ID for Azure App Service Container assessment.

    Import

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

    $ pulumi import azure-native:migrate:CompoundAssessmentOperation assessmentName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/webAppCompoundAssessments/{compoundAssessmentName} 
    

    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.3.0 published on Monday, Apr 28, 2025 by Pulumi