azure-native.migrate.WebAppAssessmentV2Operation
Explore with Pulumi AI
Web app Assessment REST resource. Azure REST API version: 2023-04-01-preview.
Other available API versions: 2023-05-01-preview, 2023-09-09-preview, 2024-01-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 (
	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.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 * 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,
});
import pulumi
import pulumi_azure_native as azure_native
web_app_assessment_v2_operation = azure_native.migrate.WebAppAssessmentV2Operation("webAppAssessmentV2Operation",
    app_svc_container_settings={
        "isolation_required": True,
    },
    app_svc_native_settings={
        "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={
        "number_of_machines": 27,
        "number_of_servers": 5,
        "number_of_web_apps": 23,
    },
    ea_subscription_id="",
    entity_uptime={
        "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)
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.
Constructor 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={
        "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={
        "number_of_machines": 0,
        "number_of_servers": 0,
        "number_of_web_apps": 0,
    },
    ea_subscription_id="string",
    app_svc_container_settings={
        "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={
        "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The WebAppAssessmentV2Operation resource accepts the following input properties:
- GroupName string
- Group ARM name
- ProjectName string
- Assessment Project Name
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AppSvc Pulumi.Container Settings Azure Native. Migrate. Inputs. App Svc Container Settings 
- Gets or sets user configurable app service container database settings.
- AppSvc Pulumi.Native Settings Azure Native. Migrate. Inputs. App Svc Native Settings 
- Gets or sets user configurable app service native settings.
- AssessmentName string
- Web app Assessment arm name.
- AssessmentType string | Pulumi.Azure Native. Migrate. Assessment Type 
- Assessment type of the assessment.
- AzureLocation string
- Azure Location or Azure region where to which the machines will be migrated.
- AzureOffer string | Pulumi.Code Azure Native. Migrate. Azure Offer Code 
- Azure Offer Code.
- AzureSecurity string | Pulumi.Offering Type Azure Native. Migrate. Azure Security Offering Type 
- Gets or sets a value indicating azure security offering type.
- ConfidenceRating doubleIn Percentage 
- Confidence Rating in Percentage.
- Currency
string | Pulumi.Azure Native. Migrate. Azure Currency 
- Currency in which prices should be reported.
- DiscountPercentage double
- Custom discount percentage.
- DiscoveredEntity Pulumi.Light Summary Azure Native. Migrate. Inputs. Discovered Entity Light Summary 
- Gets or sets user configurable discovered entity settings.
- EaSubscription stringId 
- Gets or sets the Enterprise agreement subscription id.
- EntityUptime Pulumi.Azure Native. Migrate. Inputs. Entity Uptime 
- Gets or sets the duration for which the entity (Web app, VMs) are up in the on-premises environment.
- EnvironmentType string | Pulumi.Azure Native. Migrate. Environment Type 
- Gets or sets user configurable setting to display the environment type.
- GroupType string | Pulumi.Azure Native. Migrate. Group Type 
- Gets the group type for the assessment.
- Percentile
string | Pulumi.Azure Native. Migrate. Percentile 
- Percentile of the utilization data values to be considered while assessing machines.
- PerfData stringEnd Time 
- Gets or sets the end time to consider performance data for assessment.
- PerfData stringStart Time 
- Gets or sets the start time to consider performance data for assessment.
- ReservedInstance string | Pulumi.Azure Native. Migrate. Azure Reserved Instance 
- Reserved instance.
- ScalingFactor double
- Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- SizingCriterion string | Pulumi.Azure Native. Migrate. Assessment Sizing Criterion 
- Assessment sizing criterion.
- TimeRange string | Pulumi.Azure Native. Migrate. Time Range 
- Time Range for which the historic utilization data should be considered for assessment.
- GroupName string
- Group ARM name
- ProjectName string
- Assessment Project Name
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AppSvc AppContainer Settings Svc Container Settings Args 
- Gets or sets user configurable app service container database settings.
- AppSvc AppNative Settings Svc Native Settings Args 
- 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.
- AzureOffer string | AzureCode Offer Code 
- Azure Offer Code.
- AzureSecurity string | AzureOffering Type Security Offering Type 
- Gets or sets a value indicating azure security offering type.
- ConfidenceRating float64In Percentage 
- Confidence Rating in Percentage.
- Currency
string | AzureCurrency 
- Currency in which prices should be reported.
- DiscountPercentage float64
- Custom discount percentage.
- DiscoveredEntity DiscoveredLight Summary Entity Light Summary Args 
- Gets or sets user configurable discovered entity settings.
- EaSubscription stringId 
- Gets or sets the Enterprise agreement subscription id.
- EntityUptime EntityUptime Args 
- 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.
- PerfData stringEnd Time 
- Gets or sets the end time to consider performance data for assessment.
- PerfData stringStart Time 
- Gets or sets the start time to consider performance data for assessment.
- ReservedInstance string | AzureReserved Instance 
- Reserved instance.
- ScalingFactor float64
- Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- SizingCriterion string | AssessmentSizing Criterion 
- 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
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- appSvc AppContainer Settings Svc Container Settings 
- Gets or sets user configurable app service container database settings.
- appSvc AppNative Settings Svc Native Settings 
- 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.
- azureOffer String | AzureCode Offer Code 
- Azure Offer Code.
- azureSecurity String | AzureOffering Type Security Offering Type 
- Gets or sets a value indicating azure security offering type.
- confidenceRating DoubleIn Percentage 
- Confidence Rating in Percentage.
- currency
String | AzureCurrency 
- Currency in which prices should be reported.
- discountPercentage Double
- Custom discount percentage.
- discoveredEntity DiscoveredLight Summary Entity Light Summary 
- Gets or sets user configurable discovered entity settings.
- eaSubscription StringId 
- 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.
- perfData StringEnd Time 
- Gets or sets the end time to consider performance data for assessment.
- perfData StringStart Time 
- Gets or sets the start time to consider performance data for assessment.
- reservedInstance String | AzureReserved Instance 
- Reserved instance.
- scalingFactor Double
- Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizingCriterion String | AssessmentSizing Criterion 
- 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
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- appSvc AppContainer Settings Svc Container Settings 
- Gets or sets user configurable app service container database settings.
- appSvc AppNative Settings Svc Native Settings 
- 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.
- azureOffer string | AzureCode Offer Code 
- Azure Offer Code.
- azureSecurity string | AzureOffering Type Security Offering Type 
- Gets or sets a value indicating azure security offering type.
- confidenceRating numberIn Percentage 
- Confidence Rating in Percentage.
- currency
string | AzureCurrency 
- Currency in which prices should be reported.
- discountPercentage number
- Custom discount percentage.
- discoveredEntity DiscoveredLight Summary Entity Light Summary 
- Gets or sets user configurable discovered entity settings.
- eaSubscription stringId 
- 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.
- perfData stringEnd Time 
- Gets or sets the end time to consider performance data for assessment.
- perfData stringStart Time 
- Gets or sets the start time to consider performance data for assessment.
- reservedInstance string | AzureReserved Instance 
- Reserved instance.
- scalingFactor number
- Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizingCriterion string | AssessmentSizing Criterion 
- 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_ strname 
- The name of the resource group. The name is case insensitive.
- app_svc_ Appcontainer_ settings Svc Container Settings Args 
- Gets or sets user configurable app service container database settings.
- app_svc_ Appnative_ settings Svc Native Settings Args 
- 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_ str | Azurecode Offer Code 
- Azure Offer Code.
- azure_security_ str | Azureoffering_ type Security Offering Type 
- Gets or sets a value indicating azure security offering type.
- confidence_rating_ floatin_ percentage 
- Confidence Rating in Percentage.
- currency
str | AzureCurrency 
- Currency in which prices should be reported.
- discount_percentage float
- Custom discount percentage.
- discovered_entity_ Discoveredlight_ summary Entity Light Summary Args 
- Gets or sets user configurable discovered entity settings.
- ea_subscription_ strid 
- Gets or sets the Enterprise agreement subscription id.
- entity_uptime EntityUptime Args 
- 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_ strend_ time 
- Gets or sets the end time to consider performance data for assessment.
- perf_data_ strstart_ time 
- Gets or sets the start time to consider performance data for assessment.
- reserved_instance str | AzureReserved Instance 
- Reserved instance.
- scaling_factor float
- Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing_criterion str | AssessmentSizing Criterion 
- 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
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- appSvc Property MapContainer Settings 
- Gets or sets user configurable app service container database settings.
- appSvc Property MapNative Settings 
- Gets or sets user configurable app service native settings.
- assessmentName String
- Web app Assessment arm name.
- assessmentType String | "Unknown" | "MachineAssessment" | "Avs Assessment" | "Sql Assessment" | "Web App Assessment" 
- Assessment type of the assessment.
- azureLocation String
- Azure Location or Azure region where to which the machines will be migrated.
- azureOffer 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" | "SavingsCode Plan1Year" | "Savings Plan3Year" 
- Azure Offer Code.
- azureSecurity String | "NO" | "MDC"Offering Type 
- Gets or sets a value indicating azure security offering type.
- confidenceRating NumberIn Percentage 
- 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.
- discoveredEntity Property MapLight Summary 
- Gets or sets user configurable discovered entity settings.
- eaSubscription StringId 
- 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.
- perfData StringEnd Time 
- Gets or sets the end time to consider performance data for assessment.
- perfData StringStart Time 
- 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" | "As On Premises" 
- 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.Azure Native. Migrate. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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 SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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 SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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 SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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 SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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.
- AsOn Premises 
- AsOnPremisesAs On Premises or Static Data based Sizing.
- AssessmentSizing Criterion Performance Based 
- PerformanceBasedPerformance Data based Sizing.
- AssessmentSizing Criterion As On Premises 
- AsOnPremisesAs On Premises or Static Data based Sizing.
- PerformanceBased 
- PerformanceBasedPerformance Data based Sizing.
- AsOn Premises 
- AsOnPremisesAs On Premises or Static Data based Sizing.
- PerformanceBased 
- PerformanceBasedPerformance Data based Sizing.
- AsOn Premises 
- 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.
- "AsOn Premises" 
- AsOnPremisesAs On Premises or Static Data based Sizing.
AssessmentType, AssessmentTypeArgs    
- Unknown
- Unknown
- MachineAssessment 
- MachineAssessment
- AvsAssessment 
- AvsAssessment
- SqlAssessment 
- SqlAssessment
- WebApp Assessment 
- WebAppAssessment
- AssessmentType Unknown 
- Unknown
- AssessmentType Machine Assessment 
- MachineAssessment
- AssessmentType Avs Assessment 
- AvsAssessment
- AssessmentType Sql Assessment 
- SqlAssessment
- AssessmentType Web App Assessment 
- WebAppAssessment
- Unknown
- Unknown
- MachineAssessment 
- MachineAssessment
- AvsAssessment 
- AvsAssessment
- SqlAssessment 
- SqlAssessment
- WebApp Assessment 
- WebAppAssessment
- Unknown
- Unknown
- MachineAssessment 
- MachineAssessment
- AvsAssessment 
- AvsAssessment
- SqlAssessment 
- SqlAssessment
- WebApp Assessment 
- WebAppAssessment
- UNKNOWN
- Unknown
- MACHINE_ASSESSMENT
- MachineAssessment
- AVS_ASSESSMENT
- AvsAssessment
- SQL_ASSESSMENT
- SqlAssessment
- WEB_APP_ASSESSMENT
- WebAppAssessment
- "Unknown"
- Unknown
- "MachineAssessment" 
- MachineAssessment
- "AvsAssessment" 
- AvsAssessment
- "SqlAssessment" 
- SqlAssessment
- "WebApp Assessment" 
- 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
- AzureCurrency Unknown 
- Unknown
- AzureCurrency USD 
- USD
- AzureCurrency DKK 
- DKK
- AzureCurrency CAD 
- CAD
- AzureCurrency IDR 
- IDR
- AzureCurrency JPY 
- JPY
- AzureCurrency KRW 
- KRW
- AzureCurrency NZD 
- NZD
- AzureCurrency NOK 
- NOK
- AzureCurrency RUB 
- RUB
- AzureCurrency SAR 
- SAR
- AzureCurrency ZAR 
- ZAR
- AzureCurrency SEK 
- SEK
- AzureCurrency TRY 
- TRY
- AzureCurrency GBP 
- GBP
- AzureCurrency MXN 
- MXN
- AzureCurrency MYR 
- MYR
- AzureCurrency INR 
- INR
- AzureCurrency HKD 
- HKD
- AzureCurrency BRL 
- BRL
- AzureCurrency TWD 
- TWD
- AzureCurrency EUR 
- EUR
- AzureCurrency CHF 
- CHF
- AzureCurrency ARS 
- ARS
- AzureCurrency AUD 
- AUD
- AzureCurrency 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
- "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
- AzureOffer Code Unknown 
- Unknown
- AzureOffer Code Msazr0003P 
- MSAZR0003P
- AzureOffer Code Msazr0044P 
- MSAZR0044P
- AzureOffer Code Msazr0059P 
- MSAZR0059P
- AzureOffer Code Msazr0060P 
- MSAZR0060P
- AzureOffer Code Msazr0062P 
- MSAZR0062P
- AzureOffer Code Msazr0063P 
- MSAZR0063P
- AzureOffer Code Msazr0064P 
- MSAZR0064P
- AzureOffer Code Msazr0029P 
- MSAZR0029P
- AzureOffer Code Msazr0022P 
- MSAZR0022P
- AzureOffer Code Msazr0023P 
- MSAZR0023P
- AzureOffer Code Msazr0148P 
- MSAZR0148P
- AzureOffer Code Msazr0025P 
- MSAZR0025P
- AzureOffer Code Msazr0036P 
- MSAZR0036P
- AzureOffer Code Msazr0120P 
- MSAZR0120P
- AzureOffer Code Msazr0121P 
- MSAZR0121P
- AzureOffer Code Msazr0122P 
- MSAZR0122P
- AzureOffer Code Msazr0123P 
- MSAZR0123P
- AzureOffer Code Msazr0124P 
- MSAZR0124P
- AzureOffer Code Msazr0125P 
- MSAZR0125P
- AzureOffer Code Msazr0126P 
- MSAZR0126P
- AzureOffer Code Msazr0127P 
- MSAZR0127P
- AzureOffer Code Msazr0128P 
- MSAZR0128P
- AzureOffer Code Msazr0129P 
- MSAZR0129P
- AzureOffer Code Msazr0130P 
- MSAZR0130P
- AzureOffer Code Msazr0111P 
- MSAZR0111P
- AzureOffer Code Msazr0144P 
- MSAZR0144P
- AzureOffer Code Msazr0149P 
- MSAZR0149P
- AzureOffer Code Msmcazr0044P 
- MSMCAZR0044P
- AzureOffer Code Msmcazr0059P 
- MSMCAZR0059P
- AzureOffer Code Msmcazr0060P 
- MSMCAZR0060P
- AzureOffer Code Msmcazr0063P 
- MSMCAZR0063P
- AzureOffer Code Msmcazr0120P 
- MSMCAZR0120P
- AzureOffer Code Msmcazr0121P 
- MSMCAZR0121P
- AzureOffer Code Msmcazr0125P 
- MSMCAZR0125P
- AzureOffer Code Msmcazr0128P 
- MSMCAZR0128P
- AzureOffer Code Msazrde0003P 
- MSAZRDE0003P
- AzureOffer Code Msazrde0044P 
- MSAZRDE0044P
- AzureOffer Code Msazrusgov0003P 
- MSAZRUSGOV0003P
- AzureOffer Code EA 
- EA
- AzureOffer Code Msazr0243P 
- MSAZR0243P
- AzureOffer Code Savings Plan1Year 
- SavingsPlan1Year
- AzureOffer Code Savings Plan3Year 
- 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
- AzureReserved Instance None 
- None
- AzureReserved Instance RI1Year 
- RI1Year
- AzureReserved Instance RI3Year 
- 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
- AzureSecurity Offering Type NO 
- NO
- AzureSecurity Offering Type MDC 
- MDC
- NO
- NO
- MDC
- MDC
- NO
- NO
- MDC
- MDC
- NO
- NO
- MDC
- MDC
- "NO"
- NO
- "MDC"
- MDC
DiscoveredEntityLightSummary, DiscoveredEntityLightSummaryArgs        
- NumberOf intMachines 
- Gets or sets the number of machines.
- NumberOf intServers 
- Gets or sets the number of servers.
- NumberOf intWeb Apps 
- Gets or sets the number of web apps.
- NumberOf intMachines 
- Gets or sets the number of machines.
- NumberOf intServers 
- Gets or sets the number of servers.
- NumberOf intWeb Apps 
- Gets or sets the number of web apps.
- numberOf IntegerMachines 
- Gets or sets the number of machines.
- numberOf IntegerServers 
- Gets or sets the number of servers.
- numberOf IntegerWeb Apps 
- Gets or sets the number of web apps.
- numberOf numberMachines 
- Gets or sets the number of machines.
- numberOf numberServers 
- Gets or sets the number of servers.
- numberOf numberWeb Apps 
- Gets or sets the number of web apps.
- number_of_ intmachines 
- Gets or sets the number of machines.
- number_of_ intservers 
- Gets or sets the number of servers.
- number_of_ intweb_ apps 
- Gets or sets the number of web apps.
- numberOf NumberMachines 
- Gets or sets the number of machines.
- numberOf NumberServers 
- Gets or sets the number of servers.
- numberOf NumberWeb Apps 
- Gets or sets the number of web apps.
DiscoveredEntityLightSummaryResponse, DiscoveredEntityLightSummaryResponseArgs          
- NumberOf intMachines 
- Gets or sets the number of machines.
- NumberOf intServers 
- Gets or sets the number of servers.
- NumberOf intWeb Apps 
- Gets or sets the number of web apps.
- NumberOf intMachines 
- Gets or sets the number of machines.
- NumberOf intServers 
- Gets or sets the number of servers.
- NumberOf intWeb Apps 
- Gets or sets the number of web apps.
- numberOf IntegerMachines 
- Gets or sets the number of machines.
- numberOf IntegerServers 
- Gets or sets the number of servers.
- numberOf IntegerWeb Apps 
- Gets or sets the number of web apps.
- numberOf numberMachines 
- Gets or sets the number of machines.
- numberOf numberServers 
- Gets or sets the number of servers.
- numberOf numberWeb Apps 
- Gets or sets the number of web apps.
- number_of_ intmachines 
- Gets or sets the number of machines.
- number_of_ intservers 
- Gets or sets the number of servers.
- number_of_ intweb_ apps 
- Gets or sets the number of web apps.
- numberOf NumberMachines 
- Gets or sets the number of machines.
- numberOf NumberServers 
- Gets or sets the number of servers.
- numberOf NumberWeb Apps 
- Gets or sets the number of web apps.
EntityUptime, EntityUptimeArgs    
- DaysPer intMonth 
- Gets the days per month.
- HoursPer intDay 
- Gets the hours per day.
- DaysPer intMonth 
- Gets the days per month.
- HoursPer intDay 
- Gets the hours per day.
- daysPer IntegerMonth 
- Gets the days per month.
- hoursPer IntegerDay 
- Gets the hours per day.
- daysPer numberMonth 
- Gets the days per month.
- hoursPer numberDay 
- Gets the hours per day.
- days_per_ intmonth 
- Gets the days per month.
- hours_per_ intday 
- Gets the hours per day.
- daysPer NumberMonth 
- Gets the days per month.
- hoursPer NumberDay 
- Gets the hours per day.
EntityUptimeResponse, EntityUptimeResponseArgs      
- DaysPer intMonth 
- Gets the days per month.
- HoursPer intDay 
- Gets the hours per day.
- DaysPer intMonth 
- Gets the days per month.
- HoursPer intDay 
- Gets the hours per day.
- daysPer IntegerMonth 
- Gets the days per month.
- hoursPer IntegerDay 
- Gets the hours per day.
- daysPer numberMonth 
- Gets the days per month.
- hoursPer numberDay 
- Gets the hours per day.
- days_per_ intmonth 
- Gets the days per month.
- hours_per_ intday 
- Gets the hours per day.
- daysPer NumberMonth 
- Gets the days per month.
- hoursPer NumberDay 
- Gets the hours per day.
EnvironmentType, EnvironmentTypeArgs    
- Production
- Production
- Test
- Test
- EnvironmentType Production 
- Production
- EnvironmentType Test 
- Test
- Production
- Production
- Test
- Test
- Production
- Production
- Test
- Test
- PRODUCTION
- Production
- TEST
- Test
- "Production"
- Production
- "Test"
- Test
GroupType, GroupTypeArgs    
- Default
- Default
- Import
- Import
- GroupType Default 
- Default
- GroupType Import 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
TimeRange, TimeRangeArgs    
- Day
- DayDaily.
- Week
- WeekWeekly.
- Month
- MonthMonthly.
- Custom
- CustomCustom Time Range.
- TimeRange Day 
- DayDaily.
- TimeRange Week 
- WeekWeekly.
- TimeRange Month 
- MonthMonthly.
- TimeRange 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.
- "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