1. Packages
  2. Azure Native
  3. API Docs
  4. migrate
  5. WebAppAssessmentV2Operation
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi

azure-native.migrate.WebAppAssessmentV2Operation

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi

    Web app Assessment REST resource. Azure REST API version: 2023-04-01-preview.

    Example Usage

    WebAppAssessmentV2Operations_Create_MaximumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var webAppAssessmentV2Operation = new AzureNative.Migrate.WebAppAssessmentV2Operation("webAppAssessmentV2Operation", new()
        {
            AppSvcContainerSettings = new AzureNative.Migrate.Inputs.AppSvcContainerSettingsArgs
            {
                IsolationRequired = true,
            },
            AppSvcNativeSettings = new AzureNative.Migrate.Inputs.AppSvcNativeSettingsArgs
            {
                IsolationRequired = true,
            },
            AssessmentName = "anraghun-selfhost-v2",
            AssessmentType = AzureNative.Migrate.AssessmentType.WebAppAssessment,
            AzureLocation = "UkWest",
            AzureOfferCode = AzureNative.Migrate.AzureOfferCode.Msazr0003P,
            AzureSecurityOfferingType = AzureNative.Migrate.AzureSecurityOfferingType.NO,
            ConfidenceRatingInPercentage = 13,
            Currency = AzureNative.Migrate.AzureCurrency.USD,
            DiscountPercentage = 13,
            DiscoveredEntityLightSummary = new AzureNative.Migrate.Inputs.DiscoveredEntityLightSummaryArgs
            {
                NumberOfMachines = 27,
                NumberOfServers = 5,
                NumberOfWebApps = 23,
            },
            EaSubscriptionId = "",
            EntityUptime = new AzureNative.Migrate.Inputs.EntityUptimeArgs
            {
                DaysPerMonth = 18,
                HoursPerDay = 13,
            },
            EnvironmentType = AzureNative.Migrate.EnvironmentType.Production,
            GroupName = "anraghun-selfhost-v2",
            GroupType = AzureNative.Migrate.GroupType.Default,
            Percentile = AzureNative.Migrate.Percentile.Percentile50,
            PerfDataEndTime = "2023-11-03T05:42:45.496Z",
            PerfDataStartTime = "2023-11-03T05:42:45.496Z",
            ProjectName = "sumukk-ccy-bcs4557project",
            ReservedInstance = AzureNative.Migrate.AzureReservedInstance.None,
            ResourceGroupName = "rgopenapi",
            ScalingFactor = 17,
            SizingCriterion = AzureNative.Migrate.AssessmentSizingCriterion.PerformanceBased,
            TimeRange = AzureNative.Migrate.TimeRange.Day,
        });
    
    });
    
    package main
    
    import (
    	"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.NewWebAppAssessmentV2Operation(ctx, "webAppAssessmentV2Operation", &migrate.WebAppAssessmentV2OperationArgs{
    			AppSvcContainerSettings: &migrate.AppSvcContainerSettingsArgs{
    				IsolationRequired: pulumi.Bool(true),
    			},
    			AppSvcNativeSettings: &migrate.AppSvcNativeSettingsArgs{
    				IsolationRequired: pulumi.Bool(true),
    			},
    			AssessmentName:               pulumi.String("anraghun-selfhost-v2"),
    			AssessmentType:               pulumi.String(migrate.AssessmentTypeWebAppAssessment),
    			AzureLocation:                pulumi.String("UkWest"),
    			AzureOfferCode:               pulumi.String(migrate.AzureOfferCodeMsazr0003P),
    			AzureSecurityOfferingType:    pulumi.String(migrate.AzureSecurityOfferingTypeNO),
    			ConfidenceRatingInPercentage: pulumi.Float64(13),
    			Currency:                     pulumi.String(migrate.AzureCurrencyUSD),
    			DiscountPercentage:           pulumi.Float64(13),
    			DiscoveredEntityLightSummary: &migrate.DiscoveredEntityLightSummaryArgs{
    				NumberOfMachines: pulumi.Int(27),
    				NumberOfServers:  pulumi.Int(5),
    				NumberOfWebApps:  pulumi.Int(23),
    			},
    			EaSubscriptionId: pulumi.String(""),
    			EntityUptime: &migrate.EntityUptimeArgs{
    				DaysPerMonth: pulumi.Int(18),
    				HoursPerDay:  pulumi.Int(13),
    			},
    			EnvironmentType:   pulumi.String(migrate.EnvironmentTypeProduction),
    			GroupName:         pulumi.String("anraghun-selfhost-v2"),
    			GroupType:         pulumi.String(migrate.GroupTypeDefault),
    			Percentile:        pulumi.String(migrate.PercentilePercentile50),
    			PerfDataEndTime:   pulumi.String("2023-11-03T05:42:45.496Z"),
    			PerfDataStartTime: pulumi.String("2023-11-03T05:42:45.496Z"),
    			ProjectName:       pulumi.String("sumukk-ccy-bcs4557project"),
    			ReservedInstance:  pulumi.String(migrate.AzureReservedInstanceNone),
    			ResourceGroupName: pulumi.String("rgopenapi"),
    			ScalingFactor:     pulumi.Float64(17),
    			SizingCriterion:   pulumi.String(migrate.AssessmentSizingCriterionPerformanceBased),
    			TimeRange:         pulumi.String(migrate.TimeRangeDay),
    		})
    		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.WebAppAssessmentV2Operation;
    import com.pulumi.azurenative.migrate.WebAppAssessmentV2OperationArgs;
    import com.pulumi.azurenative.migrate.inputs.AppSvcContainerSettingsArgs;
    import com.pulumi.azurenative.migrate.inputs.AppSvcNativeSettingsArgs;
    import com.pulumi.azurenative.migrate.inputs.DiscoveredEntityLightSummaryArgs;
    import com.pulumi.azurenative.migrate.inputs.EntityUptimeArgs;
    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 webAppAssessmentV2Operation = new WebAppAssessmentV2Operation("webAppAssessmentV2Operation", WebAppAssessmentV2OperationArgs.builder()        
                .appSvcContainerSettings(AppSvcContainerSettingsArgs.builder()
                    .isolationRequired(true)
                    .build())
                .appSvcNativeSettings(AppSvcNativeSettingsArgs.builder()
                    .isolationRequired(true)
                    .build())
                .assessmentName("anraghun-selfhost-v2")
                .assessmentType("WebAppAssessment")
                .azureLocation("UkWest")
                .azureOfferCode("MSAZR0003P")
                .azureSecurityOfferingType("NO")
                .confidenceRatingInPercentage(13)
                .currency("USD")
                .discountPercentage(13)
                .discoveredEntityLightSummary(DiscoveredEntityLightSummaryArgs.builder()
                    .numberOfMachines(27)
                    .numberOfServers(5)
                    .numberOfWebApps(23)
                    .build())
                .eaSubscriptionId("")
                .entityUptime(EntityUptimeArgs.builder()
                    .daysPerMonth(18)
                    .hoursPerDay(13)
                    .build())
                .environmentType("Production")
                .groupName("anraghun-selfhost-v2")
                .groupType("Default")
                .percentile("Percentile50")
                .perfDataEndTime("2023-11-03T05:42:45.496Z")
                .perfDataStartTime("2023-11-03T05:42:45.496Z")
                .projectName("sumukk-ccy-bcs4557project")
                .reservedInstance("None")
                .resourceGroupName("rgopenapi")
                .scalingFactor(17)
                .sizingCriterion("PerformanceBased")
                .timeRange("Day")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    web_app_assessment_v2_operation = azure_native.migrate.WebAppAssessmentV2Operation("webAppAssessmentV2Operation",
        app_svc_container_settings=azure_native.migrate.AppSvcContainerSettingsArgs(
            isolation_required=True,
        ),
        app_svc_native_settings=azure_native.migrate.AppSvcNativeSettingsArgs(
            isolation_required=True,
        ),
        assessment_name="anraghun-selfhost-v2",
        assessment_type=azure_native.migrate.AssessmentType.WEB_APP_ASSESSMENT,
        azure_location="UkWest",
        azure_offer_code=azure_native.migrate.AzureOfferCode.MSAZR0003_P,
        azure_security_offering_type=azure_native.migrate.AzureSecurityOfferingType.NO,
        confidence_rating_in_percentage=13,
        currency=azure_native.migrate.AzureCurrency.USD,
        discount_percentage=13,
        discovered_entity_light_summary=azure_native.migrate.DiscoveredEntityLightSummaryArgs(
            number_of_machines=27,
            number_of_servers=5,
            number_of_web_apps=23,
        ),
        ea_subscription_id="",
        entity_uptime=azure_native.migrate.EntityUptimeArgs(
            days_per_month=18,
            hours_per_day=13,
        ),
        environment_type=azure_native.migrate.EnvironmentType.PRODUCTION,
        group_name="anraghun-selfhost-v2",
        group_type=azure_native.migrate.GroupType.DEFAULT,
        percentile=azure_native.migrate.Percentile.PERCENTILE50,
        perf_data_end_time="2023-11-03T05:42:45.496Z",
        perf_data_start_time="2023-11-03T05:42:45.496Z",
        project_name="sumukk-ccy-bcs4557project",
        reserved_instance=azure_native.migrate.AzureReservedInstance.NONE,
        resource_group_name="rgopenapi",
        scaling_factor=17,
        sizing_criterion=azure_native.migrate.AssessmentSizingCriterion.PERFORMANCE_BASED,
        time_range=azure_native.migrate.TimeRange.DAY)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const webAppAssessmentV2Operation = new azure_native.migrate.WebAppAssessmentV2Operation("webAppAssessmentV2Operation", {
        appSvcContainerSettings: {
            isolationRequired: true,
        },
        appSvcNativeSettings: {
            isolationRequired: true,
        },
        assessmentName: "anraghun-selfhost-v2",
        assessmentType: azure_native.migrate.AssessmentType.WebAppAssessment,
        azureLocation: "UkWest",
        azureOfferCode: azure_native.migrate.AzureOfferCode.Msazr0003P,
        azureSecurityOfferingType: azure_native.migrate.AzureSecurityOfferingType.NO,
        confidenceRatingInPercentage: 13,
        currency: azure_native.migrate.AzureCurrency.USD,
        discountPercentage: 13,
        discoveredEntityLightSummary: {
            numberOfMachines: 27,
            numberOfServers: 5,
            numberOfWebApps: 23,
        },
        eaSubscriptionId: "",
        entityUptime: {
            daysPerMonth: 18,
            hoursPerDay: 13,
        },
        environmentType: azure_native.migrate.EnvironmentType.Production,
        groupName: "anraghun-selfhost-v2",
        groupType: azure_native.migrate.GroupType.Default,
        percentile: azure_native.migrate.Percentile.Percentile50,
        perfDataEndTime: "2023-11-03T05:42:45.496Z",
        perfDataStartTime: "2023-11-03T05:42:45.496Z",
        projectName: "sumukk-ccy-bcs4557project",
        reservedInstance: azure_native.migrate.AzureReservedInstance.None,
        resourceGroupName: "rgopenapi",
        scalingFactor: 17,
        sizingCriterion: azure_native.migrate.AssessmentSizingCriterion.PerformanceBased,
        timeRange: azure_native.migrate.TimeRange.Day,
    });
    
    resources:
      webAppAssessmentV2Operation:
        type: azure-native:migrate:WebAppAssessmentV2Operation
        properties:
          appSvcContainerSettings:
            isolationRequired: true
          appSvcNativeSettings:
            isolationRequired: true
          assessmentName: anraghun-selfhost-v2
          assessmentType: WebAppAssessment
          azureLocation: UkWest
          azureOfferCode: MSAZR0003P
          azureSecurityOfferingType: NO
          confidenceRatingInPercentage: 13
          currency: USD
          discountPercentage: 13
          discoveredEntityLightSummary:
            numberOfMachines: 27
            numberOfServers: 5
            numberOfWebApps: 23
          eaSubscriptionId:
          entityUptime:
            daysPerMonth: 18
            hoursPerDay: 13
          environmentType: Production
          groupName: anraghun-selfhost-v2
          groupType: Default
          percentile: Percentile50
          perfDataEndTime: 2023-11-03T05:42:45.496Z
          perfDataStartTime: 2023-11-03T05:42:45.496Z
          projectName: sumukk-ccy-bcs4557project
          reservedInstance: None
          resourceGroupName: rgopenapi
          scalingFactor: 17
          sizingCriterion: PerformanceBased
          timeRange: Day
    

    Create WebAppAssessmentV2Operation Resource

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

    Constructor syntax

    new WebAppAssessmentV2Operation(name: string, args: WebAppAssessmentV2OperationArgs, opts?: CustomResourceOptions);
    @overload
    def WebAppAssessmentV2Operation(resource_name: str,
                                    args: WebAppAssessmentV2OperationArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def WebAppAssessmentV2Operation(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    group_name: Optional[str] = None,
                                    resource_group_name: Optional[str] = None,
                                    project_name: Optional[str] = None,
                                    entity_uptime: Optional[EntityUptimeArgs] = None,
                                    assessment_type: Optional[Union[str, AssessmentType]] = None,
                                    azure_offer_code: Optional[Union[str, AzureOfferCode]] = None,
                                    azure_security_offering_type: Optional[Union[str, AzureSecurityOfferingType]] = None,
                                    confidence_rating_in_percentage: Optional[float] = None,
                                    currency: Optional[Union[str, AzureCurrency]] = None,
                                    discount_percentage: Optional[float] = None,
                                    discovered_entity_light_summary: Optional[DiscoveredEntityLightSummaryArgs] = None,
                                    ea_subscription_id: Optional[str] = None,
                                    app_svc_container_settings: Optional[AppSvcContainerSettingsArgs] = None,
                                    environment_type: Optional[Union[str, EnvironmentType]] = None,
                                    azure_location: Optional[str] = None,
                                    group_type: Optional[Union[str, GroupType]] = None,
                                    percentile: Optional[Union[str, Percentile]] = None,
                                    perf_data_end_time: Optional[str] = None,
                                    perf_data_start_time: Optional[str] = None,
                                    assessment_name: Optional[str] = None,
                                    reserved_instance: Optional[Union[str, AzureReservedInstance]] = None,
                                    app_svc_native_settings: Optional[AppSvcNativeSettingsArgs] = None,
                                    scaling_factor: Optional[float] = None,
                                    sizing_criterion: Optional[Union[str, AssessmentSizingCriterion]] = None,
                                    time_range: Optional[Union[str, TimeRange]] = None)
    func NewWebAppAssessmentV2Operation(ctx *Context, name string, args WebAppAssessmentV2OperationArgs, opts ...ResourceOption) (*WebAppAssessmentV2Operation, error)
    public WebAppAssessmentV2Operation(string name, WebAppAssessmentV2OperationArgs args, CustomResourceOptions? opts = null)
    public WebAppAssessmentV2Operation(String name, WebAppAssessmentV2OperationArgs args)
    public WebAppAssessmentV2Operation(String name, WebAppAssessmentV2OperationArgs args, CustomResourceOptions options)
    
    type: azure-native:migrate:WebAppAssessmentV2Operation
    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 WebAppAssessmentV2OperationArgs
    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 WebAppAssessmentV2OperationArgs
    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 WebAppAssessmentV2OperationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WebAppAssessmentV2OperationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WebAppAssessmentV2OperationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var webAppAssessmentV2OperationResource = new AzureNative.Migrate.WebAppAssessmentV2Operation("webAppAssessmentV2OperationResource", new()
    {
        GroupName = "string",
        ResourceGroupName = "string",
        ProjectName = "string",
        EntityUptime = new AzureNative.Migrate.Inputs.EntityUptimeArgs
        {
            DaysPerMonth = 0,
            HoursPerDay = 0,
        },
        AssessmentType = "string",
        AzureOfferCode = "string",
        AzureSecurityOfferingType = "string",
        ConfidenceRatingInPercentage = 0,
        Currency = "string",
        DiscountPercentage = 0,
        DiscoveredEntityLightSummary = new AzureNative.Migrate.Inputs.DiscoveredEntityLightSummaryArgs
        {
            NumberOfMachines = 0,
            NumberOfServers = 0,
            NumberOfWebApps = 0,
        },
        EaSubscriptionId = "string",
        AppSvcContainerSettings = new AzureNative.Migrate.Inputs.AppSvcContainerSettingsArgs
        {
            IsolationRequired = false,
        },
        EnvironmentType = "string",
        AzureLocation = "string",
        GroupType = "string",
        Percentile = "string",
        PerfDataEndTime = "string",
        PerfDataStartTime = "string",
        AssessmentName = "string",
        ReservedInstance = "string",
        AppSvcNativeSettings = new AzureNative.Migrate.Inputs.AppSvcNativeSettingsArgs
        {
            IsolationRequired = false,
        },
        ScalingFactor = 0,
        SizingCriterion = "string",
        TimeRange = "string",
    });
    
    example, err := migrate.NewWebAppAssessmentV2Operation(ctx, "webAppAssessmentV2OperationResource", &migrate.WebAppAssessmentV2OperationArgs{
    GroupName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    ProjectName: pulumi.String("string"),
    EntityUptime: &migrate.EntityUptimeArgs{
    DaysPerMonth: pulumi.Int(0),
    HoursPerDay: pulumi.Int(0),
    },
    AssessmentType: pulumi.String("string"),
    AzureOfferCode: pulumi.String("string"),
    AzureSecurityOfferingType: pulumi.String("string"),
    ConfidenceRatingInPercentage: pulumi.Float64(0),
    Currency: pulumi.String("string"),
    DiscountPercentage: pulumi.Float64(0),
    DiscoveredEntityLightSummary: &migrate.DiscoveredEntityLightSummaryArgs{
    NumberOfMachines: pulumi.Int(0),
    NumberOfServers: pulumi.Int(0),
    NumberOfWebApps: pulumi.Int(0),
    },
    EaSubscriptionId: pulumi.String("string"),
    AppSvcContainerSettings: &migrate.AppSvcContainerSettingsArgs{
    IsolationRequired: pulumi.Bool(false),
    },
    EnvironmentType: pulumi.String("string"),
    AzureLocation: pulumi.String("string"),
    GroupType: pulumi.String("string"),
    Percentile: pulumi.String("string"),
    PerfDataEndTime: pulumi.String("string"),
    PerfDataStartTime: pulumi.String("string"),
    AssessmentName: pulumi.String("string"),
    ReservedInstance: pulumi.String("string"),
    AppSvcNativeSettings: &migrate.AppSvcNativeSettingsArgs{
    IsolationRequired: pulumi.Bool(false),
    },
    ScalingFactor: pulumi.Float64(0),
    SizingCriterion: pulumi.String("string"),
    TimeRange: pulumi.String("string"),
    })
    
    var webAppAssessmentV2OperationResource = new WebAppAssessmentV2Operation("webAppAssessmentV2OperationResource", WebAppAssessmentV2OperationArgs.builder()        
        .groupName("string")
        .resourceGroupName("string")
        .projectName("string")
        .entityUptime(EntityUptimeArgs.builder()
            .daysPerMonth(0)
            .hoursPerDay(0)
            .build())
        .assessmentType("string")
        .azureOfferCode("string")
        .azureSecurityOfferingType("string")
        .confidenceRatingInPercentage(0)
        .currency("string")
        .discountPercentage(0)
        .discoveredEntityLightSummary(DiscoveredEntityLightSummaryArgs.builder()
            .numberOfMachines(0)
            .numberOfServers(0)
            .numberOfWebApps(0)
            .build())
        .eaSubscriptionId("string")
        .appSvcContainerSettings(AppSvcContainerSettingsArgs.builder()
            .isolationRequired(false)
            .build())
        .environmentType("string")
        .azureLocation("string")
        .groupType("string")
        .percentile("string")
        .perfDataEndTime("string")
        .perfDataStartTime("string")
        .assessmentName("string")
        .reservedInstance("string")
        .appSvcNativeSettings(AppSvcNativeSettingsArgs.builder()
            .isolationRequired(false)
            .build())
        .scalingFactor(0)
        .sizingCriterion("string")
        .timeRange("string")
        .build());
    
    web_app_assessment_v2_operation_resource = azure_native.migrate.WebAppAssessmentV2Operation("webAppAssessmentV2OperationResource",
        group_name="string",
        resource_group_name="string",
        project_name="string",
        entity_uptime=azure_native.migrate.EntityUptimeArgs(
            days_per_month=0,
            hours_per_day=0,
        ),
        assessment_type="string",
        azure_offer_code="string",
        azure_security_offering_type="string",
        confidence_rating_in_percentage=0,
        currency="string",
        discount_percentage=0,
        discovered_entity_light_summary=azure_native.migrate.DiscoveredEntityLightSummaryArgs(
            number_of_machines=0,
            number_of_servers=0,
            number_of_web_apps=0,
        ),
        ea_subscription_id="string",
        app_svc_container_settings=azure_native.migrate.AppSvcContainerSettingsArgs(
            isolation_required=False,
        ),
        environment_type="string",
        azure_location="string",
        group_type="string",
        percentile="string",
        perf_data_end_time="string",
        perf_data_start_time="string",
        assessment_name="string",
        reserved_instance="string",
        app_svc_native_settings=azure_native.migrate.AppSvcNativeSettingsArgs(
            isolation_required=False,
        ),
        scaling_factor=0,
        sizing_criterion="string",
        time_range="string")
    
    const webAppAssessmentV2OperationResource = new azure_native.migrate.WebAppAssessmentV2Operation("webAppAssessmentV2OperationResource", {
        groupName: "string",
        resourceGroupName: "string",
        projectName: "string",
        entityUptime: {
            daysPerMonth: 0,
            hoursPerDay: 0,
        },
        assessmentType: "string",
        azureOfferCode: "string",
        azureSecurityOfferingType: "string",
        confidenceRatingInPercentage: 0,
        currency: "string",
        discountPercentage: 0,
        discoveredEntityLightSummary: {
            numberOfMachines: 0,
            numberOfServers: 0,
            numberOfWebApps: 0,
        },
        eaSubscriptionId: "string",
        appSvcContainerSettings: {
            isolationRequired: false,
        },
        environmentType: "string",
        azureLocation: "string",
        groupType: "string",
        percentile: "string",
        perfDataEndTime: "string",
        perfDataStartTime: "string",
        assessmentName: "string",
        reservedInstance: "string",
        appSvcNativeSettings: {
            isolationRequired: false,
        },
        scalingFactor: 0,
        sizingCriterion: "string",
        timeRange: "string",
    });
    
    type: azure-native:migrate:WebAppAssessmentV2Operation
    properties:
        appSvcContainerSettings:
            isolationRequired: false
        appSvcNativeSettings:
            isolationRequired: false
        assessmentName: string
        assessmentType: string
        azureLocation: string
        azureOfferCode: string
        azureSecurityOfferingType: string
        confidenceRatingInPercentage: 0
        currency: string
        discountPercentage: 0
        discoveredEntityLightSummary:
            numberOfMachines: 0
            numberOfServers: 0
            numberOfWebApps: 0
        eaSubscriptionId: string
        entityUptime:
            daysPerMonth: 0
            hoursPerDay: 0
        environmentType: string
        groupName: string
        groupType: string
        percentile: string
        perfDataEndTime: string
        perfDataStartTime: string
        projectName: string
        reservedInstance: string
        resourceGroupName: string
        scalingFactor: 0
        sizingCriterion: string
        timeRange: string
    

    WebAppAssessmentV2Operation Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The WebAppAssessmentV2Operation resource accepts the following input properties:

    GroupName string
    Group ARM name
    ProjectName string
    Assessment Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AppSvcContainerSettings Pulumi.AzureNative.Migrate.Inputs.AppSvcContainerSettings
    Gets or sets user configurable app service container database settings.
    AppSvcNativeSettings Pulumi.AzureNative.Migrate.Inputs.AppSvcNativeSettings
    Gets or sets user configurable app service native settings.
    AssessmentName string
    Web app Assessment arm name.
    AssessmentType string | Pulumi.AzureNative.Migrate.AssessmentType
    Assessment type of the assessment.
    AzureLocation string
    Azure Location or Azure region where to which the machines will be migrated.
    AzureOfferCode string | Pulumi.AzureNative.Migrate.AzureOfferCode
    Azure Offer Code.
    AzureSecurityOfferingType string | Pulumi.AzureNative.Migrate.AzureSecurityOfferingType
    Gets or sets a value indicating azure security offering type.
    ConfidenceRatingInPercentage double
    Confidence Rating in Percentage.
    Currency string | Pulumi.AzureNative.Migrate.AzureCurrency
    Currency in which prices should be reported.
    DiscountPercentage double
    Custom discount percentage.
    DiscoveredEntityLightSummary Pulumi.AzureNative.Migrate.Inputs.DiscoveredEntityLightSummary
    Gets or sets user configurable discovered entity settings.
    EaSubscriptionId string
    Gets or sets the Enterprise agreement subscription id.
    EntityUptime Pulumi.AzureNative.Migrate.Inputs.EntityUptime
    Gets or sets the duration for which the entity (Web app, VMs) are up in the on-premises environment.
    EnvironmentType string | Pulumi.AzureNative.Migrate.EnvironmentType
    Gets or sets user configurable setting to display the environment type.
    GroupType string | Pulumi.AzureNative.Migrate.GroupType
    Gets the group type for the assessment.
    Percentile string | Pulumi.AzureNative.Migrate.Percentile
    Percentile of the utilization data values to be considered while assessing machines.
    PerfDataEndTime string
    Gets or sets the end time to consider performance data for assessment.
    PerfDataStartTime string
    Gets or sets the start time to consider performance data for assessment.
    ReservedInstance string | Pulumi.AzureNative.Migrate.AzureReservedInstance
    Reserved instance.
    ScalingFactor double
    Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
    SizingCriterion string | Pulumi.AzureNative.Migrate.AssessmentSizingCriterion
    Assessment sizing criterion.
    TimeRange string | Pulumi.AzureNative.Migrate.TimeRange
    Time Range for which the historic utilization data should be considered for assessment.
    GroupName string
    Group ARM name
    ProjectName string
    Assessment Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AppSvcContainerSettings AppSvcContainerSettingsArgs
    Gets or sets user configurable app service container database settings.
    AppSvcNativeSettings AppSvcNativeSettingsArgs
    Gets or sets user configurable app service native settings.
    AssessmentName string
    Web app Assessment arm name.
    AssessmentType string | AssessmentType
    Assessment type of the assessment.
    AzureLocation string
    Azure Location or Azure region where to which the machines will be migrated.
    AzureOfferCode string | AzureOfferCode
    Azure Offer Code.
    AzureSecurityOfferingType string | AzureSecurityOfferingType
    Gets or sets a value indicating azure security offering type.
    ConfidenceRatingInPercentage float64
    Confidence Rating in Percentage.
    Currency string | AzureCurrency
    Currency in which prices should be reported.
    DiscountPercentage float64
    Custom discount percentage.
    DiscoveredEntityLightSummary DiscoveredEntityLightSummaryArgs
    Gets or sets user configurable discovered entity settings.
    EaSubscriptionId string
    Gets or sets the Enterprise agreement subscription id.
    EntityUptime EntityUptimeArgs
    Gets or sets the duration for which the entity (Web app, VMs) are up in the on-premises environment.
    EnvironmentType string | EnvironmentType
    Gets or sets user configurable setting to display the environment type.
    GroupType string | GroupType
    Gets the group type for the assessment.
    Percentile string | Percentile
    Percentile of the utilization data values to be considered while assessing machines.
    PerfDataEndTime string
    Gets or sets the end time to consider performance data for assessment.
    PerfDataStartTime string
    Gets or sets the start time to consider performance data for assessment.
    ReservedInstance string | AzureReservedInstance
    Reserved instance.
    ScalingFactor float64
    Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
    SizingCriterion string | AssessmentSizingCriterion
    Assessment sizing criterion.
    TimeRange string | TimeRange
    Time Range for which the historic utilization data should be considered for assessment.
    groupName String
    Group ARM name
    projectName String
    Assessment Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    appSvcContainerSettings AppSvcContainerSettings
    Gets or sets user configurable app service container database settings.
    appSvcNativeSettings AppSvcNativeSettings
    Gets or sets user configurable app service native settings.
    assessmentName String
    Web app Assessment arm name.
    assessmentType String | AssessmentType
    Assessment type of the assessment.
    azureLocation String
    Azure Location or Azure region where to which the machines will be migrated.
    azureOfferCode String | AzureOfferCode
    Azure Offer Code.
    azureSecurityOfferingType String | AzureSecurityOfferingType
    Gets or sets a value indicating azure security offering type.
    confidenceRatingInPercentage Double
    Confidence Rating in Percentage.
    currency String | AzureCurrency
    Currency in which prices should be reported.
    discountPercentage Double
    Custom discount percentage.
    discoveredEntityLightSummary DiscoveredEntityLightSummary
    Gets or sets user configurable discovered entity settings.
    eaSubscriptionId String
    Gets or sets the Enterprise agreement subscription id.
    entityUptime EntityUptime
    Gets or sets the duration for which the entity (Web app, VMs) are up in the on-premises environment.
    environmentType String | EnvironmentType
    Gets or sets user configurable setting to display the environment type.
    groupType String | GroupType
    Gets the group type for the assessment.
    percentile String | Percentile
    Percentile of the utilization data values to be considered while assessing machines.
    perfDataEndTime String
    Gets or sets the end time to consider performance data for assessment.
    perfDataStartTime String
    Gets or sets the start time to consider performance data for assessment.
    reservedInstance String | AzureReservedInstance
    Reserved instance.
    scalingFactor Double
    Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
    sizingCriterion String | AssessmentSizingCriterion
    Assessment sizing criterion.
    timeRange String | TimeRange
    Time Range for which the historic utilization data should be considered for assessment.
    groupName string
    Group ARM name
    projectName string
    Assessment Project Name
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    appSvcContainerSettings AppSvcContainerSettings
    Gets or sets user configurable app service container database settings.
    appSvcNativeSettings AppSvcNativeSettings
    Gets or sets user configurable app service native settings.
    assessmentName string
    Web app Assessment arm name.
    assessmentType string | AssessmentType
    Assessment type of the assessment.
    azureLocation string
    Azure Location or Azure region where to which the machines will be migrated.
    azureOfferCode string | AzureOfferCode
    Azure Offer Code.
    azureSecurityOfferingType string | AzureSecurityOfferingType
    Gets or sets a value indicating azure security offering type.
    confidenceRatingInPercentage number
    Confidence Rating in Percentage.
    currency string | AzureCurrency
    Currency in which prices should be reported.
    discountPercentage number
    Custom discount percentage.
    discoveredEntityLightSummary DiscoveredEntityLightSummary
    Gets or sets user configurable discovered entity settings.
    eaSubscriptionId string
    Gets or sets the Enterprise agreement subscription id.
    entityUptime EntityUptime
    Gets or sets the duration for which the entity (Web app, VMs) are up in the on-premises environment.
    environmentType string | EnvironmentType
    Gets or sets user configurable setting to display the environment type.
    groupType string | GroupType
    Gets the group type for the assessment.
    percentile string | Percentile
    Percentile of the utilization data values to be considered while assessing machines.
    perfDataEndTime string
    Gets or sets the end time to consider performance data for assessment.
    perfDataStartTime string
    Gets or sets the start time to consider performance data for assessment.
    reservedInstance string | AzureReservedInstance
    Reserved instance.
    scalingFactor number
    Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
    sizingCriterion string | AssessmentSizingCriterion
    Assessment sizing criterion.
    timeRange string | TimeRange
    Time Range for which the historic utilization data should be considered for assessment.
    group_name str
    Group ARM name
    project_name str
    Assessment Project Name
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    app_svc_container_settings AppSvcContainerSettingsArgs
    Gets or sets user configurable app service container database settings.
    app_svc_native_settings AppSvcNativeSettingsArgs
    Gets or sets user configurable app service native settings.
    assessment_name str
    Web app Assessment arm name.
    assessment_type str | AssessmentType
    Assessment type of the assessment.
    azure_location str
    Azure Location or Azure region where to which the machines will be migrated.
    azure_offer_code str | AzureOfferCode
    Azure Offer Code.
    azure_security_offering_type str | AzureSecurityOfferingType
    Gets or sets a value indicating azure security offering type.
    confidence_rating_in_percentage float
    Confidence Rating in Percentage.
    currency str | AzureCurrency
    Currency in which prices should be reported.
    discount_percentage float
    Custom discount percentage.
    discovered_entity_light_summary DiscoveredEntityLightSummaryArgs
    Gets or sets user configurable discovered entity settings.
    ea_subscription_id str
    Gets or sets the Enterprise agreement subscription id.
    entity_uptime EntityUptimeArgs
    Gets or sets the duration for which the entity (Web app, VMs) are up in the on-premises environment.
    environment_type str | EnvironmentType
    Gets or sets user configurable setting to display the environment type.
    group_type str | GroupType
    Gets the group type for the assessment.
    percentile str | Percentile
    Percentile of the utilization data values to be considered while assessing machines.
    perf_data_end_time str
    Gets or sets the end time to consider performance data for assessment.
    perf_data_start_time str
    Gets or sets the start time to consider performance data for assessment.
    reserved_instance str | AzureReservedInstance
    Reserved instance.
    scaling_factor float
    Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
    sizing_criterion str | AssessmentSizingCriterion
    Assessment sizing criterion.
    time_range str | TimeRange
    Time Range for which the historic utilization data should be considered for assessment.
    groupName String
    Group ARM name
    projectName String
    Assessment Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    appSvcContainerSettings Property Map
    Gets or sets user configurable app service container database settings.
    appSvcNativeSettings Property Map
    Gets or sets user configurable app service native settings.
    assessmentName String
    Web app Assessment arm name.
    assessmentType String | "Unknown" | "MachineAssessment" | "AvsAssessment" | "SqlAssessment" | "WebAppAssessment"
    Assessment type of the assessment.
    azureLocation String
    Azure Location or Azure region where to which the machines will be migrated.
    azureOfferCode String | "Unknown" | "MSAZR0003P" | "MSAZR0044P" | "MSAZR0059P" | "MSAZR0060P" | "MSAZR0062P" | "MSAZR0063P" | "MSAZR0064P" | "MSAZR0029P" | "MSAZR0022P" | "MSAZR0023P" | "MSAZR0148P" | "MSAZR0025P" | "MSAZR0036P" | "MSAZR0120P" | "MSAZR0121P" | "MSAZR0122P" | "MSAZR0123P" | "MSAZR0124P" | "MSAZR0125P" | "MSAZR0126P" | "MSAZR0127P" | "MSAZR0128P" | "MSAZR0129P" | "MSAZR0130P" | "MSAZR0111P" | "MSAZR0144P" | "MSAZR0149P" | "MSMCAZR0044P" | "MSMCAZR0059P" | "MSMCAZR0060P" | "MSMCAZR0063P" | "MSMCAZR0120P" | "MSMCAZR0121P" | "MSMCAZR0125P" | "MSMCAZR0128P" | "MSAZRDE0003P" | "MSAZRDE0044P" | "MSAZRUSGOV0003P" | "EA" | "MSAZR0243P" | "SavingsPlan1Year" | "SavingsPlan3Year"
    Azure Offer Code.
    azureSecurityOfferingType String | "NO" | "MDC"
    Gets or sets a value indicating azure security offering type.
    confidenceRatingInPercentage Number
    Confidence Rating in Percentage.
    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"
    Currency in which prices should be reported.
    discountPercentage Number
    Custom discount percentage.
    discoveredEntityLightSummary Property Map
    Gets or sets user configurable discovered entity settings.
    eaSubscriptionId String
    Gets or sets the Enterprise agreement subscription id.
    entityUptime Property Map
    Gets or sets the duration for which the entity (Web app, VMs) are up in the on-premises environment.
    environmentType String | "Production" | "Test"
    Gets or sets user configurable setting to display the environment type.
    groupType String | "Default" | "Import"
    Gets the group type for the assessment.
    percentile String | "Percentile50" | "Percentile90" | "Percentile95" | "Percentile99"
    Percentile of the utilization data values to be considered while assessing machines.
    perfDataEndTime String
    Gets or sets the end time to consider performance data for assessment.
    perfDataStartTime String
    Gets or sets the start time to consider performance data for assessment.
    reservedInstance String | "None" | "RI1Year" | "RI3Year"
    Reserved instance.
    scalingFactor Number
    Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
    sizingCriterion String | "PerformanceBased" | "AsOnPremises"
    Assessment sizing criterion.
    timeRange String | "Day" | "Week" | "Month" | "Custom"
    Time Range for which the historic utilization data should be considered for assessment.

    Outputs

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

    CreatedTimestamp string
    Date and Time when assessment was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    PricesTimestamp string
    Last time when rates were queried.
    ProvisioningState string
    The status of the last operation.
    SchemaVersion string
    Schema version.
    Stage string
    User configurable setting to display the Stage of Assessment.
    Status string
    Whether assessment is in valid state and all machines have been assessed.
    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"
    UpdatedTimestamp string
    Date and Time when assessment was last updated.
    CreatedTimestamp string
    Date and Time when assessment was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    PricesTimestamp string
    Last time when rates were queried.
    ProvisioningState string
    The status of the last operation.
    SchemaVersion string
    Schema version.
    Stage string
    User configurable setting to display the Stage of Assessment.
    Status string
    Whether assessment is in valid state and all machines have been assessed.
    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"
    UpdatedTimestamp string
    Date and Time when assessment was last updated.
    createdTimestamp String
    Date and Time when assessment was created.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    pricesTimestamp String
    Last time when rates were queried.
    provisioningState String
    The status of the last operation.
    schemaVersion String
    Schema version.
    stage String
    User configurable setting to display the Stage of Assessment.
    status String
    Whether assessment is in valid state and all machines have been assessed.
    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"
    updatedTimestamp String
    Date and Time when assessment was last updated.
    createdTimestamp string
    Date and Time when assessment was created.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    pricesTimestamp string
    Last time when rates were queried.
    provisioningState string
    The status of the last operation.
    schemaVersion string
    Schema version.
    stage string
    User configurable setting to display the Stage of Assessment.
    status string
    Whether assessment is in valid state and all machines have been assessed.
    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"
    updatedTimestamp string
    Date and Time when assessment was last updated.
    created_timestamp str
    Date and Time when assessment was created.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    prices_timestamp str
    Last time when rates were queried.
    provisioning_state str
    The status of the last operation.
    schema_version str
    Schema version.
    stage str
    User configurable setting to display the Stage of Assessment.
    status str
    Whether assessment is in valid state and all machines have been assessed.
    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"
    updated_timestamp str
    Date and Time when assessment was last updated.
    createdTimestamp String
    Date and Time when assessment was created.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    pricesTimestamp String
    Last time when rates were queried.
    provisioningState String
    The status of the last operation.
    schemaVersion String
    Schema version.
    stage String
    User configurable setting to display the Stage of Assessment.
    status String
    Whether assessment is in valid state and all machines have been assessed.
    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"
    updatedTimestamp String
    Date and Time when assessment was last updated.

    Supporting Types

    AppSvcContainerSettings, AppSvcContainerSettingsArgs

    IsolationRequired bool
    Gets or sets the isolation required.
    IsolationRequired bool
    Gets or sets the isolation required.
    isolationRequired Boolean
    Gets or sets the isolation required.
    isolationRequired boolean
    Gets or sets the isolation required.
    isolation_required bool
    Gets or sets the isolation required.
    isolationRequired Boolean
    Gets or sets the isolation required.

    AppSvcContainerSettingsResponse, AppSvcContainerSettingsResponseArgs

    IsolationRequired bool
    Gets or sets the isolation required.
    IsolationRequired bool
    Gets or sets the isolation required.
    isolationRequired Boolean
    Gets or sets the isolation required.
    isolationRequired boolean
    Gets or sets the isolation required.
    isolation_required bool
    Gets or sets the isolation required.
    isolationRequired Boolean
    Gets or sets the isolation required.

    AppSvcNativeSettings, AppSvcNativeSettingsArgs

    IsolationRequired bool
    Gets or sets the isolation required.
    IsolationRequired bool
    Gets or sets the isolation required.
    isolationRequired Boolean
    Gets or sets the isolation required.
    isolationRequired boolean
    Gets or sets the isolation required.
    isolation_required bool
    Gets or sets the isolation required.
    isolationRequired Boolean
    Gets or sets the isolation required.

    AppSvcNativeSettingsResponse, AppSvcNativeSettingsResponseArgs

    IsolationRequired bool
    Gets or sets the isolation required.
    IsolationRequired bool
    Gets or sets the isolation required.
    isolationRequired Boolean
    Gets or sets the isolation required.
    isolationRequired boolean
    Gets or sets the isolation required.
    isolation_required bool
    Gets or sets the isolation required.
    isolationRequired Boolean
    Gets or sets the isolation required.

    AssessmentSizingCriterion, AssessmentSizingCriterionArgs

    PerformanceBased
    PerformanceBasedPerformance Data based Sizing.
    AsOnPremises
    AsOnPremisesAs On Premises or Static Data based Sizing.
    AssessmentSizingCriterionPerformanceBased
    PerformanceBasedPerformance Data based Sizing.
    AssessmentSizingCriterionAsOnPremises
    AsOnPremisesAs On Premises or Static Data based Sizing.
    PerformanceBased
    PerformanceBasedPerformance Data based Sizing.
    AsOnPremises
    AsOnPremisesAs On Premises or Static Data based Sizing.
    PerformanceBased
    PerformanceBasedPerformance Data based Sizing.
    AsOnPremises
    AsOnPremisesAs On Premises or Static Data based Sizing.
    PERFORMANCE_BASED
    PerformanceBasedPerformance Data based Sizing.
    AS_ON_PREMISES
    AsOnPremisesAs On Premises or Static Data based Sizing.
    "PerformanceBased"
    PerformanceBasedPerformance Data based Sizing.
    "AsOnPremises"
    AsOnPremisesAs On Premises or Static Data based Sizing.

    AssessmentType, AssessmentTypeArgs

    Unknown
    Unknown
    MachineAssessment
    MachineAssessment
    AvsAssessment
    AvsAssessment
    SqlAssessment
    SqlAssessment
    WebAppAssessment
    WebAppAssessment
    AssessmentTypeUnknown
    Unknown
    AssessmentTypeMachineAssessment
    MachineAssessment
    AssessmentTypeAvsAssessment
    AvsAssessment
    AssessmentTypeSqlAssessment
    SqlAssessment
    AssessmentTypeWebAppAssessment
    WebAppAssessment
    Unknown
    Unknown
    MachineAssessment
    MachineAssessment
    AvsAssessment
    AvsAssessment
    SqlAssessment
    SqlAssessment
    WebAppAssessment
    WebAppAssessment
    Unknown
    Unknown
    MachineAssessment
    MachineAssessment
    AvsAssessment
    AvsAssessment
    SqlAssessment
    SqlAssessment
    WebAppAssessment
    WebAppAssessment
    UNKNOWN
    Unknown
    MACHINE_ASSESSMENT
    MachineAssessment
    AVS_ASSESSMENT
    AvsAssessment
    SQL_ASSESSMENT
    SqlAssessment
    WEB_APP_ASSESSMENT
    WebAppAssessment
    "Unknown"
    Unknown
    "MachineAssessment"
    MachineAssessment
    "AvsAssessment"
    AvsAssessment
    "SqlAssessment"
    SqlAssessment
    "WebAppAssessment"
    WebAppAssessment

    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

    AzureOfferCode, AzureOfferCodeArgs

    Unknown
    Unknown
    Msazr0003P
    MSAZR0003P
    Msazr0044P
    MSAZR0044P
    Msazr0059P
    MSAZR0059P
    Msazr0060P
    MSAZR0060P
    Msazr0062P
    MSAZR0062P
    Msazr0063P
    MSAZR0063P
    Msazr0064P
    MSAZR0064P
    Msazr0029P
    MSAZR0029P
    Msazr0022P
    MSAZR0022P
    Msazr0023P
    MSAZR0023P
    Msazr0148P
    MSAZR0148P
    Msazr0025P
    MSAZR0025P
    Msazr0036P
    MSAZR0036P
    Msazr0120P
    MSAZR0120P
    Msazr0121P
    MSAZR0121P
    Msazr0122P
    MSAZR0122P
    Msazr0123P
    MSAZR0123P
    Msazr0124P
    MSAZR0124P
    Msazr0125P
    MSAZR0125P
    Msazr0126P
    MSAZR0126P
    Msazr0127P
    MSAZR0127P
    Msazr0128P
    MSAZR0128P
    Msazr0129P
    MSAZR0129P
    Msazr0130P
    MSAZR0130P
    Msazr0111P
    MSAZR0111P
    Msazr0144P
    MSAZR0144P
    Msazr0149P
    MSAZR0149P
    Msmcazr0044P
    MSMCAZR0044P
    Msmcazr0059P
    MSMCAZR0059P
    Msmcazr0060P
    MSMCAZR0060P
    Msmcazr0063P
    MSMCAZR0063P
    Msmcazr0120P
    MSMCAZR0120P
    Msmcazr0121P
    MSMCAZR0121P
    Msmcazr0125P
    MSMCAZR0125P
    Msmcazr0128P
    MSMCAZR0128P
    Msazrde0003P
    MSAZRDE0003P
    Msazrde0044P
    MSAZRDE0044P
    Msazrusgov0003P
    MSAZRUSGOV0003P
    EA
    EA
    Msazr0243P
    MSAZR0243P
    SavingsPlan1Year
    SavingsPlan1Year
    SavingsPlan3Year
    SavingsPlan3Year
    AzureOfferCodeUnknown
    Unknown
    AzureOfferCodeMsazr0003P
    MSAZR0003P
    AzureOfferCodeMsazr0044P
    MSAZR0044P
    AzureOfferCodeMsazr0059P
    MSAZR0059P
    AzureOfferCodeMsazr0060P
    MSAZR0060P
    AzureOfferCodeMsazr0062P
    MSAZR0062P
    AzureOfferCodeMsazr0063P
    MSAZR0063P
    AzureOfferCodeMsazr0064P
    MSAZR0064P
    AzureOfferCodeMsazr0029P
    MSAZR0029P
    AzureOfferCodeMsazr0022P
    MSAZR0022P
    AzureOfferCodeMsazr0023P
    MSAZR0023P
    AzureOfferCodeMsazr0148P
    MSAZR0148P
    AzureOfferCodeMsazr0025P
    MSAZR0025P
    AzureOfferCodeMsazr0036P
    MSAZR0036P
    AzureOfferCodeMsazr0120P
    MSAZR0120P
    AzureOfferCodeMsazr0121P
    MSAZR0121P
    AzureOfferCodeMsazr0122P
    MSAZR0122P
    AzureOfferCodeMsazr0123P
    MSAZR0123P
    AzureOfferCodeMsazr0124P
    MSAZR0124P
    AzureOfferCodeMsazr0125P
    MSAZR0125P
    AzureOfferCodeMsazr0126P
    MSAZR0126P
    AzureOfferCodeMsazr0127P
    MSAZR0127P
    AzureOfferCodeMsazr0128P
    MSAZR0128P
    AzureOfferCodeMsazr0129P
    MSAZR0129P
    AzureOfferCodeMsazr0130P
    MSAZR0130P
    AzureOfferCodeMsazr0111P
    MSAZR0111P
    AzureOfferCodeMsazr0144P
    MSAZR0144P
    AzureOfferCodeMsazr0149P
    MSAZR0149P
    AzureOfferCodeMsmcazr0044P
    MSMCAZR0044P
    AzureOfferCodeMsmcazr0059P
    MSMCAZR0059P
    AzureOfferCodeMsmcazr0060P
    MSMCAZR0060P
    AzureOfferCodeMsmcazr0063P
    MSMCAZR0063P
    AzureOfferCodeMsmcazr0120P
    MSMCAZR0120P
    AzureOfferCodeMsmcazr0121P
    MSMCAZR0121P
    AzureOfferCodeMsmcazr0125P
    MSMCAZR0125P
    AzureOfferCodeMsmcazr0128P
    MSMCAZR0128P
    AzureOfferCodeMsazrde0003P
    MSAZRDE0003P
    AzureOfferCodeMsazrde0044P
    MSAZRDE0044P
    AzureOfferCodeMsazrusgov0003P
    MSAZRUSGOV0003P
    AzureOfferCodeEA
    EA
    AzureOfferCodeMsazr0243P
    MSAZR0243P
    AzureOfferCodeSavingsPlan1Year
    SavingsPlan1Year
    AzureOfferCodeSavingsPlan3Year
    SavingsPlan3Year
    Unknown
    Unknown
    Msazr0003P
    MSAZR0003P
    Msazr0044P
    MSAZR0044P
    Msazr0059P
    MSAZR0059P
    Msazr0060P
    MSAZR0060P
    Msazr0062P
    MSAZR0062P
    Msazr0063P
    MSAZR0063P
    Msazr0064P
    MSAZR0064P
    Msazr0029P
    MSAZR0029P
    Msazr0022P
    MSAZR0022P
    Msazr0023P
    MSAZR0023P
    Msazr0148P
    MSAZR0148P
    Msazr0025P
    MSAZR0025P
    Msazr0036P
    MSAZR0036P
    Msazr0120P
    MSAZR0120P
    Msazr0121P
    MSAZR0121P
    Msazr0122P
    MSAZR0122P
    Msazr0123P
    MSAZR0123P
    Msazr0124P
    MSAZR0124P
    Msazr0125P
    MSAZR0125P
    Msazr0126P
    MSAZR0126P
    Msazr0127P
    MSAZR0127P
    Msazr0128P
    MSAZR0128P
    Msazr0129P
    MSAZR0129P
    Msazr0130P
    MSAZR0130P
    Msazr0111P
    MSAZR0111P
    Msazr0144P
    MSAZR0144P
    Msazr0149P
    MSAZR0149P
    Msmcazr0044P
    MSMCAZR0044P
    Msmcazr0059P
    MSMCAZR0059P
    Msmcazr0060P
    MSMCAZR0060P
    Msmcazr0063P
    MSMCAZR0063P
    Msmcazr0120P
    MSMCAZR0120P
    Msmcazr0121P
    MSMCAZR0121P
    Msmcazr0125P
    MSMCAZR0125P
    Msmcazr0128P
    MSMCAZR0128P
    Msazrde0003P
    MSAZRDE0003P
    Msazrde0044P
    MSAZRDE0044P
    Msazrusgov0003P
    MSAZRUSGOV0003P
    EA
    EA
    Msazr0243P
    MSAZR0243P
    SavingsPlan1Year
    SavingsPlan1Year
    SavingsPlan3Year
    SavingsPlan3Year
    Unknown
    Unknown
    Msazr0003P
    MSAZR0003P
    Msazr0044P
    MSAZR0044P
    Msazr0059P
    MSAZR0059P
    Msazr0060P
    MSAZR0060P
    Msazr0062P
    MSAZR0062P
    Msazr0063P
    MSAZR0063P
    Msazr0064P
    MSAZR0064P
    Msazr0029P
    MSAZR0029P
    Msazr0022P
    MSAZR0022P
    Msazr0023P
    MSAZR0023P
    Msazr0148P
    MSAZR0148P
    Msazr0025P
    MSAZR0025P
    Msazr0036P
    MSAZR0036P
    Msazr0120P
    MSAZR0120P
    Msazr0121P
    MSAZR0121P
    Msazr0122P
    MSAZR0122P
    Msazr0123P
    MSAZR0123P
    Msazr0124P
    MSAZR0124P
    Msazr0125P
    MSAZR0125P
    Msazr0126P
    MSAZR0126P
    Msazr0127P
    MSAZR0127P
    Msazr0128P
    MSAZR0128P
    Msazr0129P
    MSAZR0129P
    Msazr0130P
    MSAZR0130P
    Msazr0111P
    MSAZR0111P
    Msazr0144P
    MSAZR0144P
    Msazr0149P
    MSAZR0149P
    Msmcazr0044P
    MSMCAZR0044P
    Msmcazr0059P
    MSMCAZR0059P
    Msmcazr0060P
    MSMCAZR0060P
    Msmcazr0063P
    MSMCAZR0063P
    Msmcazr0120P
    MSMCAZR0120P
    Msmcazr0121P
    MSMCAZR0121P
    Msmcazr0125P
    MSMCAZR0125P
    Msmcazr0128P
    MSMCAZR0128P
    Msazrde0003P
    MSAZRDE0003P
    Msazrde0044P
    MSAZRDE0044P
    Msazrusgov0003P
    MSAZRUSGOV0003P
    EA
    EA
    Msazr0243P
    MSAZR0243P
    SavingsPlan1Year
    SavingsPlan1Year
    SavingsPlan3Year
    SavingsPlan3Year
    UNKNOWN
    Unknown
    MSAZR0003_P
    MSAZR0003P
    MSAZR0044_P
    MSAZR0044P
    MSAZR0059_P
    MSAZR0059P
    MSAZR0060_P
    MSAZR0060P
    MSAZR0062_P
    MSAZR0062P
    MSAZR0063_P
    MSAZR0063P
    MSAZR0064_P
    MSAZR0064P
    MSAZR0029_P
    MSAZR0029P
    MSAZR0022_P
    MSAZR0022P
    MSAZR0023_P
    MSAZR0023P
    MSAZR0148_P
    MSAZR0148P
    MSAZR0025_P
    MSAZR0025P
    MSAZR0036_P
    MSAZR0036P
    MSAZR0120_P
    MSAZR0120P
    MSAZR0121_P
    MSAZR0121P
    MSAZR0122_P
    MSAZR0122P
    MSAZR0123_P
    MSAZR0123P
    MSAZR0124_P
    MSAZR0124P
    MSAZR0125_P
    MSAZR0125P
    MSAZR0126_P
    MSAZR0126P
    MSAZR0127_P
    MSAZR0127P
    MSAZR0128_P
    MSAZR0128P
    MSAZR0129_P
    MSAZR0129P
    MSAZR0130_P
    MSAZR0130P
    MSAZR0111_P
    MSAZR0111P
    MSAZR0144_P
    MSAZR0144P
    MSAZR0149_P
    MSAZR0149P
    MSMCAZR0044_P
    MSMCAZR0044P
    MSMCAZR0059_P
    MSMCAZR0059P
    MSMCAZR0060_P
    MSMCAZR0060P
    MSMCAZR0063_P
    MSMCAZR0063P
    MSMCAZR0120_P
    MSMCAZR0120P
    MSMCAZR0121_P
    MSMCAZR0121P
    MSMCAZR0125_P
    MSMCAZR0125P
    MSMCAZR0128_P
    MSMCAZR0128P
    MSAZRDE0003_P
    MSAZRDE0003P
    MSAZRDE0044_P
    MSAZRDE0044P
    MSAZRUSGOV0003_P
    MSAZRUSGOV0003P
    EA
    EA
    MSAZR0243_P
    MSAZR0243P
    SAVINGS_PLAN1_YEAR
    SavingsPlan1Year
    SAVINGS_PLAN3_YEAR
    SavingsPlan3Year
    "Unknown"
    Unknown
    "MSAZR0003P"
    MSAZR0003P
    "MSAZR0044P"
    MSAZR0044P
    "MSAZR0059P"
    MSAZR0059P
    "MSAZR0060P"
    MSAZR0060P
    "MSAZR0062P"
    MSAZR0062P
    "MSAZR0063P"
    MSAZR0063P
    "MSAZR0064P"
    MSAZR0064P
    "MSAZR0029P"
    MSAZR0029P
    "MSAZR0022P"
    MSAZR0022P
    "MSAZR0023P"
    MSAZR0023P
    "MSAZR0148P"
    MSAZR0148P
    "MSAZR0025P"
    MSAZR0025P
    "MSAZR0036P"
    MSAZR0036P
    "MSAZR0120P"
    MSAZR0120P
    "MSAZR0121P"
    MSAZR0121P
    "MSAZR0122P"
    MSAZR0122P
    "MSAZR0123P"
    MSAZR0123P
    "MSAZR0124P"
    MSAZR0124P
    "MSAZR0125P"
    MSAZR0125P
    "MSAZR0126P"
    MSAZR0126P
    "MSAZR0127P"
    MSAZR0127P
    "MSAZR0128P"
    MSAZR0128P
    "MSAZR0129P"
    MSAZR0129P
    "MSAZR0130P"
    MSAZR0130P
    "MSAZR0111P"
    MSAZR0111P
    "MSAZR0144P"
    MSAZR0144P
    "MSAZR0149P"
    MSAZR0149P
    "MSMCAZR0044P"
    MSMCAZR0044P
    "MSMCAZR0059P"
    MSMCAZR0059P
    "MSMCAZR0060P"
    MSMCAZR0060P
    "MSMCAZR0063P"
    MSMCAZR0063P
    "MSMCAZR0120P"
    MSMCAZR0120P
    "MSMCAZR0121P"
    MSMCAZR0121P
    "MSMCAZR0125P"
    MSMCAZR0125P
    "MSMCAZR0128P"
    MSMCAZR0128P
    "MSAZRDE0003P"
    MSAZRDE0003P
    "MSAZRDE0044P"
    MSAZRDE0044P
    "MSAZRUSGOV0003P"
    MSAZRUSGOV0003P
    "EA"
    EA
    "MSAZR0243P"
    MSAZR0243P
    "SavingsPlan1Year"
    SavingsPlan1Year
    "SavingsPlan3Year"
    SavingsPlan3Year

    AzureReservedInstance, AzureReservedInstanceArgs

    None
    None
    RI1Year
    RI1Year
    RI3Year
    RI3Year
    AzureReservedInstanceNone
    None
    AzureReservedInstanceRI1Year
    RI1Year
    AzureReservedInstanceRI3Year
    RI3Year
    None
    None
    RI1Year
    RI1Year
    RI3Year
    RI3Year
    None
    None
    RI1Year
    RI1Year
    RI3Year
    RI3Year
    NONE
    None
    RI1_YEAR
    RI1Year
    RI3_YEAR
    RI3Year
    "None"
    None
    "RI1Year"
    RI1Year
    "RI3Year"
    RI3Year

    AzureSecurityOfferingType, AzureSecurityOfferingTypeArgs

    NO
    NO
    MDC
    MDC
    AzureSecurityOfferingTypeNO
    NO
    AzureSecurityOfferingTypeMDC
    MDC
    NO
    NO
    MDC
    MDC
    NO
    NO
    MDC
    MDC
    NO
    NO
    MDC
    MDC
    "NO"
    NO
    "MDC"
    MDC

    DiscoveredEntityLightSummary, DiscoveredEntityLightSummaryArgs

    NumberOfMachines int
    Gets or sets the number of machines.
    NumberOfServers int
    Gets or sets the number of servers.
    NumberOfWebApps int
    Gets or sets the number of web apps.
    NumberOfMachines int
    Gets or sets the number of machines.
    NumberOfServers int
    Gets or sets the number of servers.
    NumberOfWebApps int
    Gets or sets the number of web apps.
    numberOfMachines Integer
    Gets or sets the number of machines.
    numberOfServers Integer
    Gets or sets the number of servers.
    numberOfWebApps Integer
    Gets or sets the number of web apps.
    numberOfMachines number
    Gets or sets the number of machines.
    numberOfServers number
    Gets or sets the number of servers.
    numberOfWebApps number
    Gets or sets the number of web apps.
    number_of_machines int
    Gets or sets the number of machines.
    number_of_servers int
    Gets or sets the number of servers.
    number_of_web_apps int
    Gets or sets the number of web apps.
    numberOfMachines Number
    Gets or sets the number of machines.
    numberOfServers Number
    Gets or sets the number of servers.
    numberOfWebApps Number
    Gets or sets the number of web apps.

    DiscoveredEntityLightSummaryResponse, DiscoveredEntityLightSummaryResponseArgs

    NumberOfMachines int
    Gets or sets the number of machines.
    NumberOfServers int
    Gets or sets the number of servers.
    NumberOfWebApps int
    Gets or sets the number of web apps.
    NumberOfMachines int
    Gets or sets the number of machines.
    NumberOfServers int
    Gets or sets the number of servers.
    NumberOfWebApps int
    Gets or sets the number of web apps.
    numberOfMachines Integer
    Gets or sets the number of machines.
    numberOfServers Integer
    Gets or sets the number of servers.
    numberOfWebApps Integer
    Gets or sets the number of web apps.
    numberOfMachines number
    Gets or sets the number of machines.
    numberOfServers number
    Gets or sets the number of servers.
    numberOfWebApps number
    Gets or sets the number of web apps.
    number_of_machines int
    Gets or sets the number of machines.
    number_of_servers int
    Gets or sets the number of servers.
    number_of_web_apps int
    Gets or sets the number of web apps.
    numberOfMachines Number
    Gets or sets the number of machines.
    numberOfServers Number
    Gets or sets the number of servers.
    numberOfWebApps Number
    Gets or sets the number of web apps.

    EntityUptime, EntityUptimeArgs

    DaysPerMonth int
    Gets the days per month.
    HoursPerDay int
    Gets the hours per day.
    DaysPerMonth int
    Gets the days per month.
    HoursPerDay int
    Gets the hours per day.
    daysPerMonth Integer
    Gets the days per month.
    hoursPerDay Integer
    Gets the hours per day.
    daysPerMonth number
    Gets the days per month.
    hoursPerDay number
    Gets the hours per day.
    days_per_month int
    Gets the days per month.
    hours_per_day int
    Gets the hours per day.
    daysPerMonth Number
    Gets the days per month.
    hoursPerDay Number
    Gets the hours per day.

    EntityUptimeResponse, EntityUptimeResponseArgs

    DaysPerMonth int
    Gets the days per month.
    HoursPerDay int
    Gets the hours per day.
    DaysPerMonth int
    Gets the days per month.
    HoursPerDay int
    Gets the hours per day.
    daysPerMonth Integer
    Gets the days per month.
    hoursPerDay Integer
    Gets the hours per day.
    daysPerMonth number
    Gets the days per month.
    hoursPerDay number
    Gets the hours per day.
    days_per_month int
    Gets the days per month.
    hours_per_day int
    Gets the hours per day.
    daysPerMonth Number
    Gets the days per month.
    hoursPerDay Number
    Gets the hours per day.

    EnvironmentType, EnvironmentTypeArgs

    Production
    Production
    Test
    Test
    EnvironmentTypeProduction
    Production
    EnvironmentTypeTest
    Test
    Production
    Production
    Test
    Test
    Production
    Production
    Test
    Test
    PRODUCTION
    Production
    TEST
    Test
    "Production"
    Production
    "Test"
    Test

    GroupType, GroupTypeArgs

    Default
    Default
    Import
    Import
    GroupTypeDefault
    Default
    GroupTypeImport
    Import
    Default
    Default
    Import
    Import
    Default
    Default
    Import
    Import
    DEFAULT
    Default
    IMPORT_
    Import
    "Default"
    Default
    "Import"
    Import

    Percentile, PercentileArgs

    Percentile50
    Percentile50Percentile 50.
    Percentile90
    Percentile90Percentile 90.
    Percentile95
    Percentile95Percentile 95.
    Percentile99
    Percentile99Percentile 99.
    PercentilePercentile50
    Percentile50Percentile 50.
    PercentilePercentile90
    Percentile90Percentile 90.
    PercentilePercentile95
    Percentile95Percentile 95.
    PercentilePercentile99
    Percentile99Percentile 99.
    Percentile50
    Percentile50Percentile 50.
    Percentile90
    Percentile90Percentile 90.
    Percentile95
    Percentile95Percentile 95.
    Percentile99
    Percentile99Percentile 99.
    Percentile50
    Percentile50Percentile 50.
    Percentile90
    Percentile90Percentile 90.
    Percentile95
    Percentile95Percentile 95.
    Percentile99
    Percentile99Percentile 99.
    PERCENTILE50
    Percentile50Percentile 50.
    PERCENTILE90
    Percentile90Percentile 90.
    PERCENTILE95
    Percentile95Percentile 95.
    PERCENTILE99
    Percentile99Percentile 99.
    "Percentile50"
    Percentile50Percentile 50.
    "Percentile90"
    Percentile90Percentile 90.
    "Percentile95"
    Percentile95Percentile 95.
    "Percentile99"
    Percentile99Percentile 99.

    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.

    TimeRange, TimeRangeArgs

    Day
    DayDaily.
    Week
    WeekWeekly.
    Month
    MonthMonthly.
    Custom
    CustomCustom Time Range.
    TimeRangeDay
    DayDaily.
    TimeRangeWeek
    WeekWeekly.
    TimeRangeMonth
    MonthMonthly.
    TimeRangeCustom
    CustomCustom Time Range.
    Day
    DayDaily.
    Week
    WeekWeekly.
    Month
    MonthMonthly.
    Custom
    CustomCustom Time Range.
    Day
    DayDaily.
    Week
    WeekWeekly.
    Month
    MonthMonthly.
    Custom
    CustomCustom Time Range.
    DAY
    DayDaily.
    WEEK
    WeekWeekly.
    MONTH
    MonthMonthly.
    CUSTOM
    CustomCustom Time Range.
    "Day"
    DayDaily.
    "Week"
    WeekWeekly.
    "Month"
    MonthMonthly.
    "Custom"
    CustomCustom Time Range.

    Import

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

    $ pulumi import azure-native:migrate:WebAppAssessmentV2Operation anraghun-v2-test /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/groups/{groupName}/webAppAssessments/{assessmentName} 
    

    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 v1 docs if using the v1 version of this package.
    Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi