1. Packages
  2. Azure Native v2
  3. API Docs
  4. migrate
  5. AksAssessmentOperation
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi
azure-native-v2 logo
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

    ARM model of AKS Assessment. Azure REST API version: 2023-04-01-preview.

    Other available API versions: 2023-05-01-preview, 2023-09-09-preview.

    Example Usage

    AksAssessmentOperations_Create_MaximumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var aksAssessmentOperation = new AzureNative.Migrate.AksAssessmentOperation("aksAssessmentOperation", new()
        {
            AssessmentName = "testaksassessment",
            ProjectName = "testproject",
            ResourceGroupName = "rgaksswagger",
            Scope = new AzureNative.Migrate.Inputs.AssessmentScopeParametersArgs
            {
                ServerGroupId = "/subscriptions/D6F60DF4-CE70-4E39-8217-B8FBE7CA85AA/resourceGroups/rgaksswagger/providers/Microsoft.Migrate/assessmentProjects/testproject/groups/testgrp",
            },
            Settings = new AzureNative.Migrate.Inputs.AKSAssessmentSettingsArgs
            {
                AzureLocation = "Unknown",
                Category = AzureNative.Migrate.AzureVmCategory.All,
                Consolidation = AzureNative.Migrate.ConsolidationType.Full,
                Currency = AzureNative.Migrate.AzureCurrency.Unknown,
                DiscountPercentage = 15,
                EnvironmentType = AzureNative.Migrate.AzureEnvironmentType.Unknown,
                LicensingProgram = AzureNative.Migrate.LicensingProgram.Default,
                PerformanceData = new AzureNative.Migrate.Inputs.PerfDataSettingsArgs
                {
                    Percentile = AzureNative.Migrate.Percentile.Percentile50,
                    PerfDataEndTime = "2023-11-07T06:51:24.320Z",
                    PerfDataStartTime = "2023-11-07T06:51:24.320Z",
                    TimeRange = AzureNative.Migrate.TimeRange.Day,
                },
                PricingTier = AzureNative.Migrate.PricingTier.Standard,
                SavingsOptions = AzureNative.Migrate.SavingsOptions.None,
                ScalingFactor = 3,
                SizingCriteria = AzureNative.Migrate.AssessmentSizingCriterion.PerformanceBased,
            },
        });
    
    });
    
    package main
    
    import (
    	migrate "github.com/pulumi/pulumi-azure-native-sdk/migrate/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := migrate.NewAksAssessmentOperation(ctx, "aksAssessmentOperation", &migrate.AksAssessmentOperationArgs{
    			AssessmentName:    pulumi.String("testaksassessment"),
    			ProjectName:       pulumi.String("testproject"),
    			ResourceGroupName: pulumi.String("rgaksswagger"),
    			Scope: &migrate.AssessmentScopeParametersArgs{
    				ServerGroupId: pulumi.String("/subscriptions/D6F60DF4-CE70-4E39-8217-B8FBE7CA85AA/resourceGroups/rgaksswagger/providers/Microsoft.Migrate/assessmentProjects/testproject/groups/testgrp"),
    			},
    			Settings: &migrate.AKSAssessmentSettingsArgs{
    				AzureLocation:      pulumi.String("Unknown"),
    				Category:           pulumi.String(migrate.AzureVmCategoryAll),
    				Consolidation:      pulumi.String(migrate.ConsolidationTypeFull),
    				Currency:           pulumi.String(migrate.AzureCurrencyUnknown),
    				DiscountPercentage: pulumi.Float64(15),
    				EnvironmentType:    pulumi.String(migrate.AzureEnvironmentTypeUnknown),
    				LicensingProgram:   pulumi.String(migrate.LicensingProgramDefault),
    				PerformanceData: &migrate.PerfDataSettingsArgs{
    					Percentile:        pulumi.String(migrate.PercentilePercentile50),
    					PerfDataEndTime:   pulumi.String("2023-11-07T06:51:24.320Z"),
    					PerfDataStartTime: pulumi.String("2023-11-07T06:51:24.320Z"),
    					TimeRange:         pulumi.String(migrate.TimeRangeDay),
    				},
    				PricingTier:    pulumi.String(migrate.PricingTierStandard),
    				SavingsOptions: pulumi.String(migrate.SavingsOptionsNone),
    				ScalingFactor:  pulumi.Float64(3),
    				SizingCriteria: pulumi.String(migrate.AssessmentSizingCriterionPerformanceBased),
    			},
    		})
    		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.AksAssessmentOperation;
    import com.pulumi.azurenative.migrate.AksAssessmentOperationArgs;
    import com.pulumi.azurenative.migrate.inputs.AssessmentScopeParametersArgs;
    import com.pulumi.azurenative.migrate.inputs.AKSAssessmentSettingsArgs;
    import com.pulumi.azurenative.migrate.inputs.PerfDataSettingsArgs;
    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 aksAssessmentOperation = new AksAssessmentOperation("aksAssessmentOperation", AksAssessmentOperationArgs.builder()
                .assessmentName("testaksassessment")
                .projectName("testproject")
                .resourceGroupName("rgaksswagger")
                .scope(AssessmentScopeParametersArgs.builder()
                    .serverGroupId("/subscriptions/D6F60DF4-CE70-4E39-8217-B8FBE7CA85AA/resourceGroups/rgaksswagger/providers/Microsoft.Migrate/assessmentProjects/testproject/groups/testgrp")
                    .build())
                .settings(AKSAssessmentSettingsArgs.builder()
                    .azureLocation("Unknown")
                    .category("All")
                    .consolidation("Full")
                    .currency("Unknown")
                    .discountPercentage(15)
                    .environmentType("Unknown")
                    .licensingProgram("Default")
                    .performanceData(PerfDataSettingsArgs.builder()
                        .percentile("Percentile50")
                        .perfDataEndTime("2023-11-07T06:51:24.320Z")
                        .perfDataStartTime("2023-11-07T06:51:24.320Z")
                        .timeRange("Day")
                        .build())
                    .pricingTier("Standard")
                    .savingsOptions("None")
                    .scalingFactor(3)
                    .sizingCriteria("PerformanceBased")
                    .build())
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const aksAssessmentOperation = new azure_native.migrate.AksAssessmentOperation("aksAssessmentOperation", {
        assessmentName: "testaksassessment",
        projectName: "testproject",
        resourceGroupName: "rgaksswagger",
        scope: {
            serverGroupId: "/subscriptions/D6F60DF4-CE70-4E39-8217-B8FBE7CA85AA/resourceGroups/rgaksswagger/providers/Microsoft.Migrate/assessmentProjects/testproject/groups/testgrp",
        },
        settings: {
            azureLocation: "Unknown",
            category: azure_native.migrate.AzureVmCategory.All,
            consolidation: azure_native.migrate.ConsolidationType.Full,
            currency: azure_native.migrate.AzureCurrency.Unknown,
            discountPercentage: 15,
            environmentType: azure_native.migrate.AzureEnvironmentType.Unknown,
            licensingProgram: azure_native.migrate.LicensingProgram.Default,
            performanceData: {
                percentile: azure_native.migrate.Percentile.Percentile50,
                perfDataEndTime: "2023-11-07T06:51:24.320Z",
                perfDataStartTime: "2023-11-07T06:51:24.320Z",
                timeRange: azure_native.migrate.TimeRange.Day,
            },
            pricingTier: azure_native.migrate.PricingTier.Standard,
            savingsOptions: azure_native.migrate.SavingsOptions.None,
            scalingFactor: 3,
            sizingCriteria: azure_native.migrate.AssessmentSizingCriterion.PerformanceBased,
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    aks_assessment_operation = azure_native.migrate.AksAssessmentOperation("aksAssessmentOperation",
        assessment_name="testaksassessment",
        project_name="testproject",
        resource_group_name="rgaksswagger",
        scope={
            "server_group_id": "/subscriptions/D6F60DF4-CE70-4E39-8217-B8FBE7CA85AA/resourceGroups/rgaksswagger/providers/Microsoft.Migrate/assessmentProjects/testproject/groups/testgrp",
        },
        settings={
            "azure_location": "Unknown",
            "category": azure_native.migrate.AzureVmCategory.ALL,
            "consolidation": azure_native.migrate.ConsolidationType.FULL,
            "currency": azure_native.migrate.AzureCurrency.UNKNOWN,
            "discount_percentage": 15,
            "environment_type": azure_native.migrate.AzureEnvironmentType.UNKNOWN,
            "licensing_program": azure_native.migrate.LicensingProgram.DEFAULT,
            "performance_data": {
                "percentile": azure_native.migrate.Percentile.PERCENTILE50,
                "perf_data_end_time": "2023-11-07T06:51:24.320Z",
                "perf_data_start_time": "2023-11-07T06:51:24.320Z",
                "time_range": azure_native.migrate.TimeRange.DAY,
            },
            "pricing_tier": azure_native.migrate.PricingTier.STANDARD,
            "savings_options": azure_native.migrate.SavingsOptions.NONE,
            "scaling_factor": 3,
            "sizing_criteria": azure_native.migrate.AssessmentSizingCriterion.PERFORMANCE_BASED,
        })
    
    resources:
      aksAssessmentOperation:
        type: azure-native:migrate:AksAssessmentOperation
        properties:
          assessmentName: testaksassessment
          projectName: testproject
          resourceGroupName: rgaksswagger
          scope:
            serverGroupId: /subscriptions/D6F60DF4-CE70-4E39-8217-B8FBE7CA85AA/resourceGroups/rgaksswagger/providers/Microsoft.Migrate/assessmentProjects/testproject/groups/testgrp
          settings:
            azureLocation: Unknown
            category: All
            consolidation: Full
            currency: Unknown
            discountPercentage: 15
            environmentType: Unknown
            licensingProgram: Default
            performanceData:
              percentile: Percentile50
              perfDataEndTime: 2023-11-07T06:51:24.320Z
              perfDataStartTime: 2023-11-07T06:51:24.320Z
              timeRange: Day
            pricingTier: Standard
            savingsOptions: None
            scalingFactor: 3
            sizingCriteria: PerformanceBased
    

    Create AksAssessmentOperation Resource

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

    Constructor syntax

    new AksAssessmentOperation(name: string, args: AksAssessmentOperationArgs, opts?: CustomResourceOptions);
    @overload
    def AksAssessmentOperation(resource_name: str,
                               args: AksAssessmentOperationArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def AksAssessmentOperation(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               project_name: Optional[str] = None,
                               resource_group_name: Optional[str] = None,
                               settings: Optional[AKSAssessmentSettingsArgs] = None,
                               assessment_name: Optional[str] = None,
                               scope: Optional[AssessmentScopeParametersArgs] = None)
    func NewAksAssessmentOperation(ctx *Context, name string, args AksAssessmentOperationArgs, opts ...ResourceOption) (*AksAssessmentOperation, error)
    public AksAssessmentOperation(string name, AksAssessmentOperationArgs args, CustomResourceOptions? opts = null)
    public AksAssessmentOperation(String name, AksAssessmentOperationArgs args)
    public AksAssessmentOperation(String name, AksAssessmentOperationArgs args, CustomResourceOptions options)
    
    type: azure-native:migrate:AksAssessmentOperation
    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 AksAssessmentOperationArgs
    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 AksAssessmentOperationArgs
    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 AksAssessmentOperationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AksAssessmentOperationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AksAssessmentOperationArgs
    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 aksAssessmentOperationResource = new AzureNative.Migrate.AksAssessmentOperation("aksAssessmentOperationResource", new()
    {
        ProjectName = "string",
        ResourceGroupName = "string",
        Settings = 
        {
            { "azureLocation", "string" },
            { "category", "string" },
            { "consolidation", "string" },
            { "currency", "string" },
            { "environmentType", "string" },
            { "licensingProgram", "string" },
            { "pricingTier", "string" },
            { "savingsOptions", "string" },
            { "sizingCriteria", "string" },
            { "discountPercentage", 0 },
            { "performanceData", 
            {
                { "percentile", "string" },
                { "timeRange", "string" },
                { "perfDataEndTime", "string" },
                { "perfDataStartTime", "string" },
            } },
            { "scalingFactor", 0 },
        },
        AssessmentName = "string",
        Scope = 
        {
            { "serverGroupId", "string" },
        },
    });
    
    example, err := migrate.NewAksAssessmentOperation(ctx, "aksAssessmentOperationResource", &migrate.AksAssessmentOperationArgs{
    	ProjectName:       "string",
    	ResourceGroupName: "string",
    	Settings: map[string]interface{}{
    		"azureLocation":      "string",
    		"category":           "string",
    		"consolidation":      "string",
    		"currency":           "string",
    		"environmentType":    "string",
    		"licensingProgram":   "string",
    		"pricingTier":        "string",
    		"savingsOptions":     "string",
    		"sizingCriteria":     "string",
    		"discountPercentage": 0,
    		"performanceData": map[string]interface{}{
    			"percentile":        "string",
    			"timeRange":         "string",
    			"perfDataEndTime":   "string",
    			"perfDataStartTime": "string",
    		},
    		"scalingFactor": 0,
    	},
    	AssessmentName: "string",
    	Scope: map[string]interface{}{
    		"serverGroupId": "string",
    	},
    })
    
    var aksAssessmentOperationResource = new AksAssessmentOperation("aksAssessmentOperationResource", AksAssessmentOperationArgs.builder()
        .projectName("string")
        .resourceGroupName("string")
        .settings(Map.ofEntries(
            Map.entry("azureLocation", "string"),
            Map.entry("category", "string"),
            Map.entry("consolidation", "string"),
            Map.entry("currency", "string"),
            Map.entry("environmentType", "string"),
            Map.entry("licensingProgram", "string"),
            Map.entry("pricingTier", "string"),
            Map.entry("savingsOptions", "string"),
            Map.entry("sizingCriteria", "string"),
            Map.entry("discountPercentage", 0),
            Map.entry("performanceData", Map.ofEntries(
                Map.entry("percentile", "string"),
                Map.entry("timeRange", "string"),
                Map.entry("perfDataEndTime", "string"),
                Map.entry("perfDataStartTime", "string")
            )),
            Map.entry("scalingFactor", 0)
        ))
        .assessmentName("string")
        .scope(Map.of("serverGroupId", "string"))
        .build());
    
    aks_assessment_operation_resource = azure_native.migrate.AksAssessmentOperation("aksAssessmentOperationResource",
        project_name=string,
        resource_group_name=string,
        settings={
            azureLocation: string,
            category: string,
            consolidation: string,
            currency: string,
            environmentType: string,
            licensingProgram: string,
            pricingTier: string,
            savingsOptions: string,
            sizingCriteria: string,
            discountPercentage: 0,
            performanceData: {
                percentile: string,
                timeRange: string,
                perfDataEndTime: string,
                perfDataStartTime: string,
            },
            scalingFactor: 0,
        },
        assessment_name=string,
        scope={
            serverGroupId: string,
        })
    
    const aksAssessmentOperationResource = new azure_native.migrate.AksAssessmentOperation("aksAssessmentOperationResource", {
        projectName: "string",
        resourceGroupName: "string",
        settings: {
            azureLocation: "string",
            category: "string",
            consolidation: "string",
            currency: "string",
            environmentType: "string",
            licensingProgram: "string",
            pricingTier: "string",
            savingsOptions: "string",
            sizingCriteria: "string",
            discountPercentage: 0,
            performanceData: {
                percentile: "string",
                timeRange: "string",
                perfDataEndTime: "string",
                perfDataStartTime: "string",
            },
            scalingFactor: 0,
        },
        assessmentName: "string",
        scope: {
            serverGroupId: "string",
        },
    });
    
    type: azure-native:migrate:AksAssessmentOperation
    properties:
        assessmentName: string
        projectName: string
        resourceGroupName: string
        scope:
            serverGroupId: string
        settings:
            azureLocation: string
            category: string
            consolidation: string
            currency: string
            discountPercentage: 0
            environmentType: string
            licensingProgram: string
            performanceData:
                percentile: string
                perfDataEndTime: string
                perfDataStartTime: string
                timeRange: string
            pricingTier: string
            savingsOptions: string
            scalingFactor: 0
            sizingCriteria: string
    

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

    ProjectName string
    Assessment Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Settings Pulumi.AzureNative.Migrate.Inputs.AKSAssessmentSettings
    Gets or sets AKS Assessment Settings.
    AssessmentName string
    AKS Assessment Name.
    Scope Pulumi.AzureNative.Migrate.Inputs.AssessmentScopeParameters
    Gets or sets scope parameters to identify inventory items for assessment.
    ProjectName string
    Assessment Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Settings AKSAssessmentSettingsArgs
    Gets or sets AKS Assessment Settings.
    AssessmentName string
    AKS Assessment Name.
    Scope AssessmentScopeParametersArgs
    Gets or sets scope parameters to identify inventory items for assessment.
    projectName String
    Assessment Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    settings AKSAssessmentSettings
    Gets or sets AKS Assessment Settings.
    assessmentName String
    AKS Assessment Name.
    scope AssessmentScopeParameters
    Gets or sets scope parameters to identify inventory items for assessment.
    projectName string
    Assessment Project Name
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    settings AKSAssessmentSettings
    Gets or sets AKS Assessment Settings.
    assessmentName string
    AKS Assessment Name.
    scope AssessmentScopeParameters
    Gets or sets scope parameters to identify inventory items for assessment.
    project_name str
    Assessment Project Name
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    settings AKSAssessmentSettingsArgs
    Gets or sets AKS Assessment Settings.
    assessment_name str
    AKS Assessment Name.
    scope AssessmentScopeParametersArgs
    Gets or sets scope parameters to identify inventory items for assessment.
    projectName String
    Assessment Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    settings Property Map
    Gets or sets AKS Assessment Settings.
    assessmentName String
    AKS Assessment Name.
    scope Property Map
    Gets or sets scope parameters to identify inventory items for assessment.

    Outputs

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

    Details Pulumi.AzureNative.Migrate.Outputs.AKSAssessmentDetailsResponse
    Gets AKS Assessment Details.
    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
    ProvisioningState string
    Gets the provisioning state.
    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"
    Details AKSAssessmentDetailsResponse
    Gets AKS Assessment Details.
    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
    ProvisioningState string
    Gets the provisioning state.
    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"
    details AKSAssessmentDetailsResponse
    Gets AKS Assessment Details.
    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
    provisioningState String
    Gets the provisioning state.
    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"
    details AKSAssessmentDetailsResponse
    Gets AKS Assessment Details.
    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
    provisioningState string
    Gets the provisioning state.
    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"
    details AKSAssessmentDetailsResponse
    Gets AKS Assessment Details.
    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
    provisioning_state str
    Gets the provisioning state.
    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"
    details Property Map
    Gets AKS Assessment Details.
    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
    provisioningState String
    Gets the provisioning state.
    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

    AKSAssessmentDetailsResponse, AKSAssessmentDetailsResponseArgs

    Data model of AKS Assessment Details.
    ConfidenceRatingInPercentage double
    Gets Confidence score.
    CreatedTimestamp string
    Gets date and time when assessment was created.
    MachineCount int
    Gets the number of machines.
    PricesTimestamp string
    Gets last time when rates were queried.
    Status string
    Gets assessment status.
    TotalMonthlyCost double
    Gets the total monthly cost.
    UpdatedTimestamp string
    Gets date and time when assessment was last updated.
    WebAppCount int
    Gets the number of web apps.
    WebServerCount int
    Gets the number of web servers.
    ConfidenceRatingInPercentage float64
    Gets Confidence score.
    CreatedTimestamp string
    Gets date and time when assessment was created.
    MachineCount int
    Gets the number of machines.
    PricesTimestamp string
    Gets last time when rates were queried.
    Status string
    Gets assessment status.
    TotalMonthlyCost float64
    Gets the total monthly cost.
    UpdatedTimestamp string
    Gets date and time when assessment was last updated.
    WebAppCount int
    Gets the number of web apps.
    WebServerCount int
    Gets the number of web servers.
    confidenceRatingInPercentage Double
    Gets Confidence score.
    createdTimestamp String
    Gets date and time when assessment was created.
    machineCount Integer
    Gets the number of machines.
    pricesTimestamp String
    Gets last time when rates were queried.
    status String
    Gets assessment status.
    totalMonthlyCost Double
    Gets the total monthly cost.
    updatedTimestamp String
    Gets date and time when assessment was last updated.
    webAppCount Integer
    Gets the number of web apps.
    webServerCount Integer
    Gets the number of web servers.
    confidenceRatingInPercentage number
    Gets Confidence score.
    createdTimestamp string
    Gets date and time when assessment was created.
    machineCount number
    Gets the number of machines.
    pricesTimestamp string
    Gets last time when rates were queried.
    status string
    Gets assessment status.
    totalMonthlyCost number
    Gets the total monthly cost.
    updatedTimestamp string
    Gets date and time when assessment was last updated.
    webAppCount number
    Gets the number of web apps.
    webServerCount number
    Gets the number of web servers.
    confidence_rating_in_percentage float
    Gets Confidence score.
    created_timestamp str
    Gets date and time when assessment was created.
    machine_count int
    Gets the number of machines.
    prices_timestamp str
    Gets last time when rates were queried.
    status str
    Gets assessment status.
    total_monthly_cost float
    Gets the total monthly cost.
    updated_timestamp str
    Gets date and time when assessment was last updated.
    web_app_count int
    Gets the number of web apps.
    web_server_count int
    Gets the number of web servers.
    confidenceRatingInPercentage Number
    Gets Confidence score.
    createdTimestamp String
    Gets date and time when assessment was created.
    machineCount Number
    Gets the number of machines.
    pricesTimestamp String
    Gets last time when rates were queried.
    status String
    Gets assessment status.
    totalMonthlyCost Number
    Gets the total monthly cost.
    updatedTimestamp String
    Gets date and time when assessment was last updated.
    webAppCount Number
    Gets the number of web apps.
    webServerCount Number
    Gets the number of web servers.

    AKSAssessmentSettings, AKSAssessmentSettingsArgs

    Data model of AKS Assessment Settings.
    AzureLocation string
    Gets or sets azure location.
    Category string | Pulumi.AzureNative.Migrate.AzureVmCategory
    Gets or sets azure VM category.
    Consolidation string | Pulumi.AzureNative.Migrate.ConsolidationType
    Gets or sets consolidation type.
    Currency string | Pulumi.AzureNative.Migrate.AzureCurrency
    Gets or sets currency.
    EnvironmentType string | Pulumi.AzureNative.Migrate.AzureEnvironmentType
    Gets or sets environment type.
    LicensingProgram string | Pulumi.AzureNative.Migrate.LicensingProgram
    Gets or sets licensing program.
    PricingTier string | Pulumi.AzureNative.Migrate.PricingTier
    Gets or sets pricing tier.
    SavingsOptions string | Pulumi.AzureNative.Migrate.SavingsOptions
    Gets or sets savings options.
    SizingCriteria string | Pulumi.AzureNative.Migrate.AssessmentSizingCriterion
    Gets or sets sizing criteria.
    DiscountPercentage double
    Gets or sets discount percentage.
    PerformanceData Pulumi.AzureNative.Migrate.Inputs.PerfDataSettings
    Gets or sets performance data settings.
    ScalingFactor double
    Gets or sets scaling factor.
    AzureLocation string
    Gets or sets azure location.
    Category string | AzureVmCategory
    Gets or sets azure VM category.
    Consolidation string | ConsolidationType
    Gets or sets consolidation type.
    Currency string | AzureCurrency
    Gets or sets currency.
    EnvironmentType string | AzureEnvironmentType
    Gets or sets environment type.
    LicensingProgram string | LicensingProgram
    Gets or sets licensing program.
    PricingTier string | PricingTier
    Gets or sets pricing tier.
    SavingsOptions string | SavingsOptions
    Gets or sets savings options.
    SizingCriteria string | AssessmentSizingCriterion
    Gets or sets sizing criteria.
    DiscountPercentage float64
    Gets or sets discount percentage.
    PerformanceData PerfDataSettings
    Gets or sets performance data settings.
    ScalingFactor float64
    Gets or sets scaling factor.
    azureLocation String
    Gets or sets azure location.
    category String | AzureVmCategory
    Gets or sets azure VM category.
    consolidation String | ConsolidationType
    Gets or sets consolidation type.
    currency String | AzureCurrency
    Gets or sets currency.
    environmentType String | AzureEnvironmentType
    Gets or sets environment type.
    licensingProgram String | LicensingProgram
    Gets or sets licensing program.
    pricingTier String | PricingTier
    Gets or sets pricing tier.
    savingsOptions String | SavingsOptions
    Gets or sets savings options.
    sizingCriteria String | AssessmentSizingCriterion
    Gets or sets sizing criteria.
    discountPercentage Double
    Gets or sets discount percentage.
    performanceData PerfDataSettings
    Gets or sets performance data settings.
    scalingFactor Double
    Gets or sets scaling factor.
    azureLocation string
    Gets or sets azure location.
    category string | AzureVmCategory
    Gets or sets azure VM category.
    consolidation string | ConsolidationType
    Gets or sets consolidation type.
    currency string | AzureCurrency
    Gets or sets currency.
    environmentType string | AzureEnvironmentType
    Gets or sets environment type.
    licensingProgram string | LicensingProgram
    Gets or sets licensing program.
    pricingTier string | PricingTier
    Gets or sets pricing tier.
    savingsOptions string | SavingsOptions
    Gets or sets savings options.
    sizingCriteria string | AssessmentSizingCriterion
    Gets or sets sizing criteria.
    discountPercentage number
    Gets or sets discount percentage.
    performanceData PerfDataSettings
    Gets or sets performance data settings.
    scalingFactor number
    Gets or sets scaling factor.
    azure_location str
    Gets or sets azure location.
    category str | AzureVmCategory
    Gets or sets azure VM category.
    consolidation str | ConsolidationType
    Gets or sets consolidation type.
    currency str | AzureCurrency
    Gets or sets currency.
    environment_type str | AzureEnvironmentType
    Gets or sets environment type.
    licensing_program str | LicensingProgram
    Gets or sets licensing program.
    pricing_tier str | PricingTier
    Gets or sets pricing tier.
    savings_options str | SavingsOptions
    Gets or sets savings options.
    sizing_criteria str | AssessmentSizingCriterion
    Gets or sets sizing criteria.
    discount_percentage float
    Gets or sets discount percentage.
    performance_data PerfDataSettings
    Gets or sets performance data settings.
    scaling_factor float
    Gets or sets scaling factor.
    azureLocation String
    Gets or sets azure location.
    category String | "All" | "ComputeOptimized" | "GeneralPurpose" | "GpuOptimized" | "HighPerformanceCompute" | "MemoryOptimized" | "StorageOptimized" | "Isolated"
    Gets or sets azure VM category.
    consolidation String | "Full" | "AsOnSource"
    Gets or sets consolidation type.
    currency String | "Unknown" | "USD" | "DKK" | "CAD" | "IDR" | "JPY" | "KRW" | "NZD" | "NOK" | "RUB" | "SAR" | "ZAR" | "SEK" | "TRY" | "GBP" | "MXN" | "MYR" | "INR" | "HKD" | "BRL" | "TWD" | "EUR" | "CHF" | "ARS" | "AUD" | "CNY"
    Gets or sets currency.
    environmentType String | "Unknown" | "DevTest" | "Production"
    Gets or sets environment type.
    licensingProgram String | "Default" | "EA"
    Gets or sets licensing program.
    pricingTier String | "Standard" | "Free"
    Gets or sets pricing tier.
    savingsOptions String | "None" | "OneYearSavings" | "ThreeYearsSavings" | "OneYearReserved" | "ThreeYearsReserved"
    Gets or sets savings options.
    sizingCriteria String | "PerformanceBased" | "AsOnPremises"
    Gets or sets sizing criteria.
    discountPercentage Number
    Gets or sets discount percentage.
    performanceData Property Map
    Gets or sets performance data settings.
    scalingFactor Number
    Gets or sets scaling factor.

    AKSAssessmentSettingsResponse, AKSAssessmentSettingsResponseArgs

    Data model of AKS Assessment Settings.
    AzureLocation string
    Gets or sets azure location.
    Category string
    Gets or sets azure VM category.
    Consolidation string
    Gets or sets consolidation type.
    Currency string
    Gets or sets currency.
    EnvironmentType string
    Gets or sets environment type.
    LicensingProgram string
    Gets or sets licensing program.
    PricingTier string
    Gets or sets pricing tier.
    SavingsOptions string
    Gets or sets savings options.
    SizingCriteria string
    Gets or sets sizing criteria.
    DiscountPercentage double
    Gets or sets discount percentage.
    PerformanceData Pulumi.AzureNative.Migrate.Inputs.PerfDataSettingsResponse
    Gets or sets performance data settings.
    ScalingFactor double
    Gets or sets scaling factor.
    AzureLocation string
    Gets or sets azure location.
    Category string
    Gets or sets azure VM category.
    Consolidation string
    Gets or sets consolidation type.
    Currency string
    Gets or sets currency.
    EnvironmentType string
    Gets or sets environment type.
    LicensingProgram string
    Gets or sets licensing program.
    PricingTier string
    Gets or sets pricing tier.
    SavingsOptions string
    Gets or sets savings options.
    SizingCriteria string
    Gets or sets sizing criteria.
    DiscountPercentage float64
    Gets or sets discount percentage.
    PerformanceData PerfDataSettingsResponse
    Gets or sets performance data settings.
    ScalingFactor float64
    Gets or sets scaling factor.
    azureLocation String
    Gets or sets azure location.
    category String
    Gets or sets azure VM category.
    consolidation String
    Gets or sets consolidation type.
    currency String
    Gets or sets currency.
    environmentType String
    Gets or sets environment type.
    licensingProgram String
    Gets or sets licensing program.
    pricingTier String
    Gets or sets pricing tier.
    savingsOptions String
    Gets or sets savings options.
    sizingCriteria String
    Gets or sets sizing criteria.
    discountPercentage Double
    Gets or sets discount percentage.
    performanceData PerfDataSettingsResponse
    Gets or sets performance data settings.
    scalingFactor Double
    Gets or sets scaling factor.
    azureLocation string
    Gets or sets azure location.
    category string
    Gets or sets azure VM category.
    consolidation string
    Gets or sets consolidation type.
    currency string
    Gets or sets currency.
    environmentType string
    Gets or sets environment type.
    licensingProgram string
    Gets or sets licensing program.
    pricingTier string
    Gets or sets pricing tier.
    savingsOptions string
    Gets or sets savings options.
    sizingCriteria string
    Gets or sets sizing criteria.
    discountPercentage number
    Gets or sets discount percentage.
    performanceData PerfDataSettingsResponse
    Gets or sets performance data settings.
    scalingFactor number
    Gets or sets scaling factor.
    azure_location str
    Gets or sets azure location.
    category str
    Gets or sets azure VM category.
    consolidation str
    Gets or sets consolidation type.
    currency str
    Gets or sets currency.
    environment_type str
    Gets or sets environment type.
    licensing_program str
    Gets or sets licensing program.
    pricing_tier str
    Gets or sets pricing tier.
    savings_options str
    Gets or sets savings options.
    sizing_criteria str
    Gets or sets sizing criteria.
    discount_percentage float
    Gets or sets discount percentage.
    performance_data PerfDataSettingsResponse
    Gets or sets performance data settings.
    scaling_factor float
    Gets or sets scaling factor.
    azureLocation String
    Gets or sets azure location.
    category String
    Gets or sets azure VM category.
    consolidation String
    Gets or sets consolidation type.
    currency String
    Gets or sets currency.
    environmentType String
    Gets or sets environment type.
    licensingProgram String
    Gets or sets licensing program.
    pricingTier String
    Gets or sets pricing tier.
    savingsOptions String
    Gets or sets savings options.
    sizingCriteria String
    Gets or sets sizing criteria.
    discountPercentage Number
    Gets or sets discount percentage.
    performanceData Property Map
    Gets or sets performance data settings.
    scalingFactor Number
    Gets or sets scaling factor.

    AssessmentScopeParameters, AssessmentScopeParametersArgs

    Data model of Assessment Scope Parameters.
    ServerGroupId string
    Gets or sets the server group id.
    ServerGroupId string
    Gets or sets the server group id.
    serverGroupId String
    Gets or sets the server group id.
    serverGroupId string
    Gets or sets the server group id.
    server_group_id str
    Gets or sets the server group id.
    serverGroupId String
    Gets or sets the server group id.

    AssessmentScopeParametersResponse, AssessmentScopeParametersResponseArgs

    Data model of Assessment Scope Parameters.
    ServerGroupId string
    Gets or sets the server group id.
    ServerGroupId string
    Gets or sets the server group id.
    serverGroupId String
    Gets or sets the server group id.
    serverGroupId string
    Gets or sets the server group id.
    server_group_id str
    Gets or sets the server group id.
    serverGroupId String
    Gets or sets the server group id.

    AssessmentSizingCriterion, AssessmentSizingCriterionArgs

    PerformanceBased
    PerformanceBased Performance Data based Sizing.
    AsOnPremises
    AsOnPremises As On Premises or Static Data based Sizing.
    AssessmentSizingCriterionPerformanceBased
    PerformanceBased Performance Data based Sizing.
    AssessmentSizingCriterionAsOnPremises
    AsOnPremises As On Premises or Static Data based Sizing.
    PerformanceBased
    PerformanceBased Performance Data based Sizing.
    AsOnPremises
    AsOnPremises As On Premises or Static Data based Sizing.
    PerformanceBased
    PerformanceBased Performance Data based Sizing.
    AsOnPremises
    AsOnPremises As On Premises or Static Data based Sizing.
    PERFORMANCE_BASED
    PerformanceBased Performance Data based Sizing.
    AS_ON_PREMISES
    AsOnPremises As On Premises or Static Data based Sizing.
    "PerformanceBased"
    PerformanceBased Performance Data based Sizing.
    "AsOnPremises"
    AsOnPremises As On Premises or Static Data based Sizing.

    AzureCurrency, AzureCurrencyArgs

    Unknown
    Unknown
    USD
    USD
    DKK
    DKK
    CAD
    CAD
    IDR
    IDR
    JPY
    JPY
    KRW
    KRW
    NZD
    NZD
    NOK
    NOK
    RUB
    RUB
    SAR
    SAR
    ZAR
    ZAR
    SEK
    SEK
    TRY
    TRY
    GBP
    GBP
    MXN
    MXN
    MYR
    MYR
    INR
    INR
    HKD
    HKD
    BRL
    BRL
    TWD
    TWD
    EUR
    EUR
    CHF
    CHF
    ARS
    ARS
    AUD
    AUD
    CNY
    CNY
    AzureCurrencyUnknown
    Unknown
    AzureCurrencyUSD
    USD
    AzureCurrencyDKK
    DKK
    AzureCurrencyCAD
    CAD
    AzureCurrencyIDR
    IDR
    AzureCurrencyJPY
    JPY
    AzureCurrencyKRW
    KRW
    AzureCurrencyNZD
    NZD
    AzureCurrencyNOK
    NOK
    AzureCurrencyRUB
    RUB
    AzureCurrencySAR
    SAR
    AzureCurrencyZAR
    ZAR
    AzureCurrencySEK
    SEK
    AzureCurrencyTRY
    TRY
    AzureCurrencyGBP
    GBP
    AzureCurrencyMXN
    MXN
    AzureCurrencyMYR
    MYR
    AzureCurrencyINR
    INR
    AzureCurrencyHKD
    HKD
    AzureCurrencyBRL
    BRL
    AzureCurrencyTWD
    TWD
    AzureCurrencyEUR
    EUR
    AzureCurrencyCHF
    CHF
    AzureCurrencyARS
    ARS
    AzureCurrencyAUD
    AUD
    AzureCurrencyCNY
    CNY
    Unknown
    Unknown
    USD
    USD
    DKK
    DKK
    CAD
    CAD
    IDR
    IDR
    JPY
    JPY
    KRW
    KRW
    NZD
    NZD
    NOK
    NOK
    RUB
    RUB
    SAR
    SAR
    ZAR
    ZAR
    SEK
    SEK
    TRY
    TRY
    GBP
    GBP
    MXN
    MXN
    MYR
    MYR
    INR
    INR
    HKD
    HKD
    BRL
    BRL
    TWD
    TWD
    EUR
    EUR
    CHF
    CHF
    ARS
    ARS
    AUD
    AUD
    CNY
    CNY
    Unknown
    Unknown
    USD
    USD
    DKK
    DKK
    CAD
    CAD
    IDR
    IDR
    JPY
    JPY
    KRW
    KRW
    NZD
    NZD
    NOK
    NOK
    RUB
    RUB
    SAR
    SAR
    ZAR
    ZAR
    SEK
    SEK
    TRY
    TRY
    GBP
    GBP
    MXN
    MXN
    MYR
    MYR
    INR
    INR
    HKD
    HKD
    BRL
    BRL
    TWD
    TWD
    EUR
    EUR
    CHF
    CHF
    ARS
    ARS
    AUD
    AUD
    CNY
    CNY
    UNKNOWN
    Unknown
    USD
    USD
    DKK
    DKK
    CAD
    CAD
    IDR
    IDR
    JPY
    JPY
    KRW
    KRW
    NZD
    NZD
    NOK
    NOK
    RUB
    RUB
    SAR
    SAR
    ZAR
    ZAR
    SEK
    SEK
    TRY_
    TRY
    GBP
    GBP
    MXN
    MXN
    MYR
    MYR
    INR
    INR
    HKD
    HKD
    BRL
    BRL
    TWD
    TWD
    EUR
    EUR
    CHF
    CHF
    ARS
    ARS
    AUD
    AUD
    CNY
    CNY
    "Unknown"
    Unknown
    "USD"
    USD
    "DKK"
    DKK
    "CAD"
    CAD
    "IDR"
    IDR
    "JPY"
    JPY
    "KRW"
    KRW
    "NZD"
    NZD
    "NOK"
    NOK
    "RUB"
    RUB
    "SAR"
    SAR
    "ZAR"
    ZAR
    "SEK"
    SEK
    "TRY"
    TRY
    "GBP"
    GBP
    "MXN"
    MXN
    "MYR"
    MYR
    "INR"
    INR
    "HKD"
    HKD
    "BRL"
    BRL
    "TWD"
    TWD
    "EUR"
    EUR
    "CHF"
    CHF
    "ARS"
    ARS
    "AUD"
    AUD
    "CNY"
    CNY

    AzureEnvironmentType, AzureEnvironmentTypeArgs

    Unknown
    Unknown Unknown. Indicates missing data.
    DevTest
    DevTest Development or Test Environment.
    Production
    Production Production Environment.
    AzureEnvironmentTypeUnknown
    Unknown Unknown. Indicates missing data.
    AzureEnvironmentTypeDevTest
    DevTest Development or Test Environment.
    AzureEnvironmentTypeProduction
    Production Production Environment.
    Unknown
    Unknown Unknown. Indicates missing data.
    DevTest
    DevTest Development or Test Environment.
    Production
    Production Production Environment.
    Unknown
    Unknown Unknown. Indicates missing data.
    DevTest
    DevTest Development or Test Environment.
    Production
    Production Production Environment.
    UNKNOWN
    Unknown Unknown. Indicates missing data.
    DEV_TEST
    DevTest Development or Test Environment.
    PRODUCTION
    Production Production Environment.
    "Unknown"
    Unknown Unknown. Indicates missing data.
    "DevTest"
    DevTest Development or Test Environment.
    "Production"
    Production Production Environment.

    AzureVmCategory, AzureVmCategoryArgs

    All
    All Indicates All categories of VM.
    ComputeOptimized
    ComputeOptimized Compute Optimized.
    GeneralPurpose
    GeneralPurpose General Purpose.
    GpuOptimized
    GpuOptimized GPU Optimized.
    HighPerformanceCompute
    HighPerformanceCompute High Performance Compute.
    MemoryOptimized
    MemoryOptimized Memory Optimized.
    StorageOptimized
    StorageOptimized Storage Optimized.
    Isolated
    Isolated Isolated VM.
    AzureVmCategoryAll
    All Indicates All categories of VM.
    AzureVmCategoryComputeOptimized
    ComputeOptimized Compute Optimized.
    AzureVmCategoryGeneralPurpose
    GeneralPurpose General Purpose.
    AzureVmCategoryGpuOptimized
    GpuOptimized GPU Optimized.
    AzureVmCategoryHighPerformanceCompute
    HighPerformanceCompute High Performance Compute.
    AzureVmCategoryMemoryOptimized
    MemoryOptimized Memory Optimized.
    AzureVmCategoryStorageOptimized
    StorageOptimized Storage Optimized.
    AzureVmCategoryIsolated
    Isolated Isolated VM.
    All
    All Indicates All categories of VM.
    ComputeOptimized
    ComputeOptimized Compute Optimized.
    GeneralPurpose
    GeneralPurpose General Purpose.
    GpuOptimized
    GpuOptimized GPU Optimized.
    HighPerformanceCompute
    HighPerformanceCompute High Performance Compute.
    MemoryOptimized
    MemoryOptimized Memory Optimized.
    StorageOptimized
    StorageOptimized Storage Optimized.
    Isolated
    Isolated Isolated VM.
    All
    All Indicates All categories of VM.
    ComputeOptimized
    ComputeOptimized Compute Optimized.
    GeneralPurpose
    GeneralPurpose General Purpose.
    GpuOptimized
    GpuOptimized GPU Optimized.
    HighPerformanceCompute
    HighPerformanceCompute High Performance Compute.
    MemoryOptimized
    MemoryOptimized Memory Optimized.
    StorageOptimized
    StorageOptimized Storage Optimized.
    Isolated
    Isolated Isolated VM.
    ALL
    All Indicates All categories of VM.
    COMPUTE_OPTIMIZED
    ComputeOptimized Compute Optimized.
    GENERAL_PURPOSE
    GeneralPurpose General Purpose.
    GPU_OPTIMIZED
    GpuOptimized GPU Optimized.
    HIGH_PERFORMANCE_COMPUTE
    HighPerformanceCompute High Performance Compute.
    MEMORY_OPTIMIZED
    MemoryOptimized Memory Optimized.
    STORAGE_OPTIMIZED
    StorageOptimized Storage Optimized.
    ISOLATED
    Isolated Isolated VM.
    "All"
    All Indicates All categories of VM.
    "ComputeOptimized"
    ComputeOptimized Compute Optimized.
    "GeneralPurpose"
    GeneralPurpose General Purpose.
    "GpuOptimized"
    GpuOptimized GPU Optimized.
    "HighPerformanceCompute"
    HighPerformanceCompute High Performance Compute.
    "MemoryOptimized"
    MemoryOptimized Memory Optimized.
    "StorageOptimized"
    StorageOptimized Storage Optimized.
    "Isolated"
    Isolated Isolated VM.

    ConsolidationType, ConsolidationTypeArgs

    Full
    Full Full Consolidation.
    AsOnSource
    AsOnSource As On Source or On Premises Consolidation.
    ConsolidationTypeFull
    Full Full Consolidation.
    ConsolidationTypeAsOnSource
    AsOnSource As On Source or On Premises Consolidation.
    Full
    Full Full Consolidation.
    AsOnSource
    AsOnSource As On Source or On Premises Consolidation.
    Full
    Full Full Consolidation.
    AsOnSource
    AsOnSource As On Source or On Premises Consolidation.
    FULL
    Full Full Consolidation.
    AS_ON_SOURCE
    AsOnSource As On Source or On Premises Consolidation.
    "Full"
    Full Full Consolidation.
    "AsOnSource"
    AsOnSource As On Source or On Premises Consolidation.

    LicensingProgram, LicensingProgramArgs

    Default
    Default Default value. Indicates Pay As You Go.
    EA
    EA Enterprise Agreement.
    LicensingProgramDefault
    Default Default value. Indicates Pay As You Go.
    LicensingProgramEA
    EA Enterprise Agreement.
    Default
    Default Default value. Indicates Pay As You Go.
    EA
    EA Enterprise Agreement.
    Default
    Default Default value. Indicates Pay As You Go.
    EA
    EA Enterprise Agreement.
    DEFAULT
    Default Default value. Indicates Pay As You Go.
    EA
    EA Enterprise Agreement.
    "Default"
    Default Default value. Indicates Pay As You Go.
    "EA"
    EA Enterprise Agreement.

    Percentile, PercentileArgs

    Percentile50
    Percentile50 Percentile 50.
    Percentile90
    Percentile90 Percentile 90.
    Percentile95
    Percentile95 Percentile 95.
    Percentile99
    Percentile99 Percentile 99.
    PercentilePercentile50
    Percentile50 Percentile 50.
    PercentilePercentile90
    Percentile90 Percentile 90.
    PercentilePercentile95
    Percentile95 Percentile 95.
    PercentilePercentile99
    Percentile99 Percentile 99.
    Percentile50
    Percentile50 Percentile 50.
    Percentile90
    Percentile90 Percentile 90.
    Percentile95
    Percentile95 Percentile 95.
    Percentile99
    Percentile99 Percentile 99.
    Percentile50
    Percentile50 Percentile 50.
    Percentile90
    Percentile90 Percentile 90.
    Percentile95
    Percentile95 Percentile 95.
    Percentile99
    Percentile99 Percentile 99.
    PERCENTILE50
    Percentile50 Percentile 50.
    PERCENTILE90
    Percentile90 Percentile 90.
    PERCENTILE95
    Percentile95 Percentile 95.
    PERCENTILE99
    Percentile99 Percentile 99.
    "Percentile50"
    Percentile50 Percentile 50.
    "Percentile90"
    Percentile90 Percentile 90.
    "Percentile95"
    Percentile95 Percentile 95.
    "Percentile99"
    Percentile99 Percentile 99.

    PerfDataSettings, PerfDataSettingsArgs

    Data model of Performance Data Settings.
    Percentile string | Pulumi.AzureNative.Migrate.Percentile
    Gets percentile utilization for performance data.
    TimeRange string | Pulumi.AzureNative.Migrate.TimeRange
    Gets perf data time range.
    PerfDataEndTime string
    Gets or sets perf data end time.
    PerfDataStartTime string
    Gets or sets perf data start time.
    Percentile string | Percentile
    Gets percentile utilization for performance data.
    TimeRange string | TimeRange
    Gets perf data time range.
    PerfDataEndTime string
    Gets or sets perf data end time.
    PerfDataStartTime string
    Gets or sets perf data start time.
    percentile String | Percentile
    Gets percentile utilization for performance data.
    timeRange String | TimeRange
    Gets perf data time range.
    perfDataEndTime String
    Gets or sets perf data end time.
    perfDataStartTime String
    Gets or sets perf data start time.
    percentile string | Percentile
    Gets percentile utilization for performance data.
    timeRange string | TimeRange
    Gets perf data time range.
    perfDataEndTime string
    Gets or sets perf data end time.
    perfDataStartTime string
    Gets or sets perf data start time.
    percentile str | Percentile
    Gets percentile utilization for performance data.
    time_range str | TimeRange
    Gets perf data time range.
    perf_data_end_time str
    Gets or sets perf data end time.
    perf_data_start_time str
    Gets or sets perf data start time.
    percentile String | "Percentile50" | "Percentile90" | "Percentile95" | "Percentile99"
    Gets percentile utilization for performance data.
    timeRange String | "Day" | "Week" | "Month" | "Custom"
    Gets perf data time range.
    perfDataEndTime String
    Gets or sets perf data end time.
    perfDataStartTime String
    Gets or sets perf data start time.

    PerfDataSettingsResponse, PerfDataSettingsResponseArgs

    Data model of Performance Data Settings.
    Percentile string
    Gets percentile utilization for performance data.
    TimeRange string
    Gets perf data time range.
    PerfDataEndTime string
    Gets or sets perf data end time.
    PerfDataStartTime string
    Gets or sets perf data start time.
    Percentile string
    Gets percentile utilization for performance data.
    TimeRange string
    Gets perf data time range.
    PerfDataEndTime string
    Gets or sets perf data end time.
    PerfDataStartTime string
    Gets or sets perf data start time.
    percentile String
    Gets percentile utilization for performance data.
    timeRange String
    Gets perf data time range.
    perfDataEndTime String
    Gets or sets perf data end time.
    perfDataStartTime String
    Gets or sets perf data start time.
    percentile string
    Gets percentile utilization for performance data.
    timeRange string
    Gets perf data time range.
    perfDataEndTime string
    Gets or sets perf data end time.
    perfDataStartTime string
    Gets or sets perf data start time.
    percentile str
    Gets percentile utilization for performance data.
    time_range str
    Gets perf data time range.
    perf_data_end_time str
    Gets or sets perf data end time.
    perf_data_start_time str
    Gets or sets perf data start time.
    percentile String
    Gets percentile utilization for performance data.
    timeRange String
    Gets perf data time range.
    perfDataEndTime String
    Gets or sets perf data end time.
    perfDataStartTime String
    Gets or sets perf data start time.

    PricingTier, PricingTierArgs

    Standard
    Standard Standard Pricing Tier.
    Free
    Free Free Pricing Tier.
    PricingTierStandard
    Standard Standard Pricing Tier.
    PricingTierFree
    Free Free Pricing Tier.
    Standard
    Standard Standard Pricing Tier.
    Free
    Free Free Pricing Tier.
    Standard
    Standard Standard Pricing Tier.
    Free
    Free Free Pricing Tier.
    STANDARD
    Standard Standard Pricing Tier.
    FREE
    Free Free Pricing Tier.
    "Standard"
    Standard Standard Pricing Tier.
    "Free"
    Free Free Pricing Tier.

    SavingsOptions, SavingsOptionsArgs

    None
    None Savings Options is not applicable.
    OneYearSavings
    OneYearSavings One Year Savings Plan.
    ThreeYearsSavings
    ThreeYearsSavings Three Years Savings Plan.
    OneYearReserved
    OneYearReserved One Year Reserved Instances.
    ThreeYearsReserved
    ThreeYearsReserved Three Years Reserved Instances.
    SavingsOptionsNone
    None Savings Options is not applicable.
    SavingsOptionsOneYearSavings
    OneYearSavings One Year Savings Plan.
    SavingsOptionsThreeYearsSavings
    ThreeYearsSavings Three Years Savings Plan.
    SavingsOptionsOneYearReserved
    OneYearReserved One Year Reserved Instances.
    SavingsOptionsThreeYearsReserved
    ThreeYearsReserved Three Years Reserved Instances.
    None
    None Savings Options is not applicable.
    OneYearSavings
    OneYearSavings One Year Savings Plan.
    ThreeYearsSavings
    ThreeYearsSavings Three Years Savings Plan.
    OneYearReserved
    OneYearReserved One Year Reserved Instances.
    ThreeYearsReserved
    ThreeYearsReserved Three Years Reserved Instances.
    None
    None Savings Options is not applicable.
    OneYearSavings
    OneYearSavings One Year Savings Plan.
    ThreeYearsSavings
    ThreeYearsSavings Three Years Savings Plan.
    OneYearReserved
    OneYearReserved One Year Reserved Instances.
    ThreeYearsReserved
    ThreeYearsReserved Three Years Reserved Instances.
    NONE
    None Savings Options is not applicable.
    ONE_YEAR_SAVINGS
    OneYearSavings One Year Savings Plan.
    THREE_YEARS_SAVINGS
    ThreeYearsSavings Three Years Savings Plan.
    ONE_YEAR_RESERVED
    OneYearReserved One Year Reserved Instances.
    THREE_YEARS_RESERVED
    ThreeYearsReserved Three Years Reserved Instances.
    "None"
    None Savings Options is not applicable.
    "OneYearSavings"
    OneYearSavings One Year Savings Plan.
    "ThreeYearsSavings"
    ThreeYearsSavings Three Years Savings Plan.
    "OneYearReserved"
    OneYearReserved One Year Reserved Instances.
    "ThreeYearsReserved"
    ThreeYearsReserved Three Years Reserved Instances.

    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.

    TimeRange, TimeRangeArgs

    Day
    Day Daily.
    Week
    Week Weekly.
    Month
    Month Monthly.
    Custom
    Custom Custom Time Range.
    TimeRangeDay
    Day Daily.
    TimeRangeWeek
    Week Weekly.
    TimeRangeMonth
    Month Monthly.
    TimeRangeCustom
    Custom Custom Time Range.
    Day
    Day Daily.
    Week
    Week Weekly.
    Month
    Month Monthly.
    Custom
    Custom Custom Time Range.
    Day
    Day Daily.
    Week
    Week Weekly.
    Month
    Month Monthly.
    Custom
    Custom Custom Time Range.
    DAY
    Day Daily.
    WEEK
    Week Weekly.
    MONTH
    Month Monthly.
    CUSTOM
    Custom Custom Time Range.
    "Day"
    Day Daily.
    "Week"
    Week Weekly.
    "Month"
    Month Monthly.
    "Custom"
    Custom Custom Time Range.

    Import

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

    $ pulumi import azure-native:migrate:AksAssessmentOperation testaksassessment /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/aksAssessments/{assessmentName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    azure-native-v2 pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native-v2 logo
    These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
    Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate