azure-native.migrate.WebAppAssessmentV3Operation
Explore with Pulumi AI
WebApp assessment resource.
Uses Azure REST API version 2024-03-03-preview.
Example Usage
WebAppAssessmentV3Operations_Create_MaximumSet
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var webAppAssessmentV3Operation = new AzureNative.Migrate.WebAppAssessmentV3Operation("webAppAssessmentV3Operation", new()
{
AssessmentName = "assessmentName",
ProjectName = "contosoProject",
Properties = new AzureNative.Migrate.Inputs.WebAppAssessmentV3PropertiesArgs
{
FallbackMachineAssessmentArmId = "gfjcubgnh",
Scope = new AzureNative.Migrate.Inputs.ScopeArgs
{
AzureResourceGraphQuery = "mjonozzzflcglhdb",
ScopeType = AzureNative.Migrate.ScopeType.ServerGroupId,
ServerGroupId = "sxwigkygd",
},
Settings = new AzureNative.Migrate.Inputs.WebAppAssessmentSettingsArgs
{
AppSvcContainerSettings = new AzureNative.Migrate.Inputs.AppSvcContainerSettingsArgs
{
IsolationRequired = true,
},
AppSvcNativeSettings = new AzureNative.Migrate.Inputs.AppSvcNativeSettingsArgs
{
IsolationRequired = true,
},
AzureLocation = "khzvggbrcnpkzrqdtvvyytc",
AzureSecurityOfferingType = AzureNative.Migrate.AzureSecurityOfferingType.NO,
BillingSettings = new AzureNative.Migrate.Inputs.BillingSettingsArgs
{
LicensingProgram = AzureNative.Migrate.LicensingProgram.Retail,
SubscriptionId = "lakvxkjeqpajer",
},
Currency = AzureNative.Migrate.AzureCurrency.Unknown,
DiscountPercentage = 12,
EnvironmentType = AzureNative.Migrate.EnvironmentType.Production,
PerformanceData = new AzureNative.Migrate.Inputs.PerformanceDataArgs
{
Percentile = "Unknown",
PerfDataEndTime = "2025-02-21T06:18:34.789Z",
PerfDataStartTime = "2025-02-21T06:18:34.789Z",
TimeRange = AzureNative.Migrate.TimeRange.Day,
},
SavingsSettings = new AzureNative.Migrate.Inputs.SavingsSettingsArgs
{
AzureOfferCode = AzureNative.Migrate.AzureOffer.Unknown,
SavingsOptions = AzureNative.Migrate.SavingsOptions.None,
},
ScalingFactor = 6,
SizingCriterion = AzureNative.Migrate.AssessmentSizingCriterion.PerformanceBased,
},
},
ResourceGroupName = "rgwebAppAssessments",
});
});
package main
import (
migrate "github.com/pulumi/pulumi-azure-native-sdk/migrate/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := migrate.NewWebAppAssessmentV3Operation(ctx, "webAppAssessmentV3Operation", &migrate.WebAppAssessmentV3OperationArgs{
AssessmentName: pulumi.String("assessmentName"),
ProjectName: pulumi.String("contosoProject"),
Properties: &migrate.WebAppAssessmentV3PropertiesArgs{
FallbackMachineAssessmentArmId: pulumi.String("gfjcubgnh"),
Scope: &migrate.ScopeArgs{
AzureResourceGraphQuery: pulumi.String("mjonozzzflcglhdb"),
ScopeType: pulumi.String(migrate.ScopeTypeServerGroupId),
ServerGroupId: pulumi.String("sxwigkygd"),
},
Settings: &migrate.WebAppAssessmentSettingsArgs{
AppSvcContainerSettings: &migrate.AppSvcContainerSettingsArgs{
IsolationRequired: pulumi.Bool(true),
},
AppSvcNativeSettings: &migrate.AppSvcNativeSettingsArgs{
IsolationRequired: pulumi.Bool(true),
},
AzureLocation: pulumi.String("khzvggbrcnpkzrqdtvvyytc"),
AzureSecurityOfferingType: pulumi.String(migrate.AzureSecurityOfferingTypeNO),
BillingSettings: &migrate.BillingSettingsArgs{
LicensingProgram: pulumi.String(migrate.LicensingProgramRetail),
SubscriptionId: pulumi.String("lakvxkjeqpajer"),
},
Currency: pulumi.String(migrate.AzureCurrencyUnknown),
DiscountPercentage: pulumi.Float64(12),
EnvironmentType: pulumi.String(migrate.EnvironmentTypeProduction),
PerformanceData: &migrate.PerformanceDataArgs{
Percentile: pulumi.String("Unknown"),
PerfDataEndTime: pulumi.String("2025-02-21T06:18:34.789Z"),
PerfDataStartTime: pulumi.String("2025-02-21T06:18:34.789Z"),
TimeRange: pulumi.String(migrate.TimeRangeDay),
},
SavingsSettings: &migrate.SavingsSettingsArgs{
AzureOfferCode: pulumi.String(migrate.AzureOfferUnknown),
SavingsOptions: pulumi.String(migrate.SavingsOptionsNone),
},
ScalingFactor: pulumi.Float64(6),
SizingCriterion: pulumi.String(migrate.AssessmentSizingCriterionPerformanceBased),
},
},
ResourceGroupName: pulumi.String("rgwebAppAssessments"),
})
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.WebAppAssessmentV3Operation;
import com.pulumi.azurenative.migrate.WebAppAssessmentV3OperationArgs;
import com.pulumi.azurenative.migrate.inputs.WebAppAssessmentV3PropertiesArgs;
import com.pulumi.azurenative.migrate.inputs.ScopeArgs;
import com.pulumi.azurenative.migrate.inputs.WebAppAssessmentSettingsArgs;
import com.pulumi.azurenative.migrate.inputs.AppSvcContainerSettingsArgs;
import com.pulumi.azurenative.migrate.inputs.AppSvcNativeSettingsArgs;
import com.pulumi.azurenative.migrate.inputs.BillingSettingsArgs;
import com.pulumi.azurenative.migrate.inputs.PerformanceDataArgs;
import com.pulumi.azurenative.migrate.inputs.SavingsSettingsArgs;
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 webAppAssessmentV3Operation = new WebAppAssessmentV3Operation("webAppAssessmentV3Operation", WebAppAssessmentV3OperationArgs.builder()
.assessmentName("assessmentName")
.projectName("contosoProject")
.properties(WebAppAssessmentV3PropertiesArgs.builder()
.fallbackMachineAssessmentArmId("gfjcubgnh")
.scope(ScopeArgs.builder()
.azureResourceGraphQuery("mjonozzzflcglhdb")
.scopeType("ServerGroupId")
.serverGroupId("sxwigkygd")
.build())
.settings(WebAppAssessmentSettingsArgs.builder()
.appSvcContainerSettings(AppSvcContainerSettingsArgs.builder()
.isolationRequired(true)
.build())
.appSvcNativeSettings(AppSvcNativeSettingsArgs.builder()
.isolationRequired(true)
.build())
.azureLocation("khzvggbrcnpkzrqdtvvyytc")
.azureSecurityOfferingType("NO")
.billingSettings(BillingSettingsArgs.builder()
.licensingProgram("Retail")
.subscriptionId("lakvxkjeqpajer")
.build())
.currency("Unknown")
.discountPercentage(12.0)
.environmentType("Production")
.performanceData(PerformanceDataArgs.builder()
.percentile("Unknown")
.perfDataEndTime("2025-02-21T06:18:34.789Z")
.perfDataStartTime("2025-02-21T06:18:34.789Z")
.timeRange("Day")
.build())
.savingsSettings(SavingsSettingsArgs.builder()
.azureOfferCode("Unknown")
.savingsOptions("None")
.build())
.scalingFactor(6.0)
.sizingCriterion("PerformanceBased")
.build())
.build())
.resourceGroupName("rgwebAppAssessments")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const webAppAssessmentV3Operation = new azure_native.migrate.WebAppAssessmentV3Operation("webAppAssessmentV3Operation", {
assessmentName: "assessmentName",
projectName: "contosoProject",
properties: {
fallbackMachineAssessmentArmId: "gfjcubgnh",
scope: {
azureResourceGraphQuery: "mjonozzzflcglhdb",
scopeType: azure_native.migrate.ScopeType.ServerGroupId,
serverGroupId: "sxwigkygd",
},
settings: {
appSvcContainerSettings: {
isolationRequired: true,
},
appSvcNativeSettings: {
isolationRequired: true,
},
azureLocation: "khzvggbrcnpkzrqdtvvyytc",
azureSecurityOfferingType: azure_native.migrate.AzureSecurityOfferingType.NO,
billingSettings: {
licensingProgram: azure_native.migrate.LicensingProgram.Retail,
subscriptionId: "lakvxkjeqpajer",
},
currency: azure_native.migrate.AzureCurrency.Unknown,
discountPercentage: 12,
environmentType: azure_native.migrate.EnvironmentType.Production,
performanceData: {
percentile: "Unknown",
perfDataEndTime: "2025-02-21T06:18:34.789Z",
perfDataStartTime: "2025-02-21T06:18:34.789Z",
timeRange: azure_native.migrate.TimeRange.Day,
},
savingsSettings: {
azureOfferCode: azure_native.migrate.AzureOffer.Unknown,
savingsOptions: azure_native.migrate.SavingsOptions.None,
},
scalingFactor: 6,
sizingCriterion: azure_native.migrate.AssessmentSizingCriterion.PerformanceBased,
},
},
resourceGroupName: "rgwebAppAssessments",
});
import pulumi
import pulumi_azure_native as azure_native
web_app_assessment_v3_operation = azure_native.migrate.WebAppAssessmentV3Operation("webAppAssessmentV3Operation",
assessment_name="assessmentName",
project_name="contosoProject",
properties={
"fallback_machine_assessment_arm_id": "gfjcubgnh",
"scope": {
"azure_resource_graph_query": "mjonozzzflcglhdb",
"scope_type": azure_native.migrate.ScopeType.SERVER_GROUP_ID,
"server_group_id": "sxwigkygd",
},
"settings": {
"app_svc_container_settings": {
"isolation_required": True,
},
"app_svc_native_settings": {
"isolation_required": True,
},
"azure_location": "khzvggbrcnpkzrqdtvvyytc",
"azure_security_offering_type": azure_native.migrate.AzureSecurityOfferingType.NO,
"billing_settings": {
"licensing_program": azure_native.migrate.LicensingProgram.RETAIL,
"subscription_id": "lakvxkjeqpajer",
},
"currency": azure_native.migrate.AzureCurrency.UNKNOWN,
"discount_percentage": 12,
"environment_type": azure_native.migrate.EnvironmentType.PRODUCTION,
"performance_data": {
"percentile": "Unknown",
"perf_data_end_time": "2025-02-21T06:18:34.789Z",
"perf_data_start_time": "2025-02-21T06:18:34.789Z",
"time_range": azure_native.migrate.TimeRange.DAY,
},
"savings_settings": {
"azure_offer_code": azure_native.migrate.AzureOffer.UNKNOWN,
"savings_options": azure_native.migrate.SavingsOptions.NONE,
},
"scaling_factor": 6,
"sizing_criterion": azure_native.migrate.AssessmentSizingCriterion.PERFORMANCE_BASED,
},
},
resource_group_name="rgwebAppAssessments")
resources:
webAppAssessmentV3Operation:
type: azure-native:migrate:WebAppAssessmentV3Operation
properties:
assessmentName: assessmentName
projectName: contosoProject
properties:
fallbackMachineAssessmentArmId: gfjcubgnh
scope:
azureResourceGraphQuery: mjonozzzflcglhdb
scopeType: ServerGroupId
serverGroupId: sxwigkygd
settings:
appSvcContainerSettings:
isolationRequired: true
appSvcNativeSettings:
isolationRequired: true
azureLocation: khzvggbrcnpkzrqdtvvyytc
azureSecurityOfferingType: NO
billingSettings:
licensingProgram: Retail
subscriptionId: lakvxkjeqpajer
currency: Unknown
discountPercentage: 12
environmentType: Production
performanceData:
percentile: Unknown
perfDataEndTime: 2025-02-21T06:18:34.789Z
perfDataStartTime: 2025-02-21T06:18:34.789Z
timeRange: Day
savingsSettings:
azureOfferCode: Unknown
savingsOptions: None
scalingFactor: 6
sizingCriterion: PerformanceBased
resourceGroupName: rgwebAppAssessments
Create WebAppAssessmentV3Operation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WebAppAssessmentV3Operation(name: string, args: WebAppAssessmentV3OperationArgs, opts?: CustomResourceOptions);
@overload
def WebAppAssessmentV3Operation(resource_name: str,
args: WebAppAssessmentV3OperationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WebAppAssessmentV3Operation(resource_name: str,
opts: Optional[ResourceOptions] = None,
project_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
assessment_name: Optional[str] = None,
properties: Optional[WebAppAssessmentV3PropertiesArgs] = None)
func NewWebAppAssessmentV3Operation(ctx *Context, name string, args WebAppAssessmentV3OperationArgs, opts ...ResourceOption) (*WebAppAssessmentV3Operation, error)
public WebAppAssessmentV3Operation(string name, WebAppAssessmentV3OperationArgs args, CustomResourceOptions? opts = null)
public WebAppAssessmentV3Operation(String name, WebAppAssessmentV3OperationArgs args)
public WebAppAssessmentV3Operation(String name, WebAppAssessmentV3OperationArgs args, CustomResourceOptions options)
type: azure-native:migrate:WebAppAssessmentV3Operation
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 WebAppAssessmentV3OperationArgs
- 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 WebAppAssessmentV3OperationArgs
- 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 WebAppAssessmentV3OperationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WebAppAssessmentV3OperationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WebAppAssessmentV3OperationArgs
- 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 webAppAssessmentV3OperationResource = new AzureNative.Migrate.WebAppAssessmentV3Operation("webAppAssessmentV3OperationResource", new()
{
ProjectName = "string",
ResourceGroupName = "string",
AssessmentName = "string",
Properties = new AzureNative.Migrate.Inputs.WebAppAssessmentV3PropertiesArgs
{
FallbackMachineAssessmentArmId = "string",
Scope = new AzureNative.Migrate.Inputs.ScopeArgs
{
AzureResourceGraphQuery = "string",
ScopeType = "string",
ServerGroupId = "string",
},
Settings = new AzureNative.Migrate.Inputs.WebAppAssessmentSettingsArgs
{
AppSvcContainerSettings = new AzureNative.Migrate.Inputs.AppSvcContainerSettingsArgs
{
IsolationRequired = false,
},
AppSvcNativeSettings = new AzureNative.Migrate.Inputs.AppSvcNativeSettingsArgs
{
IsolationRequired = false,
},
AzureSecurityOfferingType = "string",
AzureLocation = "string",
BillingSettings = new AzureNative.Migrate.Inputs.BillingSettingsArgs
{
LicensingProgram = "string",
SubscriptionId = "string",
},
Currency = "string",
DiscountPercentage = 0,
EnvironmentType = "string",
PerformanceData = new AzureNative.Migrate.Inputs.PerformanceDataArgs
{
Percentile = "string",
PerfDataEndTime = "string",
PerfDataStartTime = "string",
TimeRange = "string",
},
SavingsSettings = new AzureNative.Migrate.Inputs.SavingsSettingsArgs
{
AzureOfferCode = "string",
SavingsOptions = "string",
},
ScalingFactor = 0,
SizingCriterion = "string",
},
},
});
example, err := migrate.NewWebAppAssessmentV3Operation(ctx, "webAppAssessmentV3OperationResource", &migrate.WebAppAssessmentV3OperationArgs{
ProjectName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
AssessmentName: pulumi.String("string"),
Properties: &migrate.WebAppAssessmentV3PropertiesArgs{
FallbackMachineAssessmentArmId: pulumi.String("string"),
Scope: &migrate.ScopeArgs{
AzureResourceGraphQuery: pulumi.String("string"),
ScopeType: pulumi.String("string"),
ServerGroupId: pulumi.String("string"),
},
Settings: &migrate.WebAppAssessmentSettingsArgs{
AppSvcContainerSettings: &migrate.AppSvcContainerSettingsArgs{
IsolationRequired: pulumi.Bool(false),
},
AppSvcNativeSettings: &migrate.AppSvcNativeSettingsArgs{
IsolationRequired: pulumi.Bool(false),
},
AzureSecurityOfferingType: pulumi.String("string"),
AzureLocation: pulumi.String("string"),
BillingSettings: &migrate.BillingSettingsArgs{
LicensingProgram: pulumi.String("string"),
SubscriptionId: pulumi.String("string"),
},
Currency: pulumi.String("string"),
DiscountPercentage: pulumi.Float64(0),
EnvironmentType: pulumi.String("string"),
PerformanceData: &migrate.PerformanceDataArgs{
Percentile: pulumi.String("string"),
PerfDataEndTime: pulumi.String("string"),
PerfDataStartTime: pulumi.String("string"),
TimeRange: pulumi.String("string"),
},
SavingsSettings: &migrate.SavingsSettingsArgs{
AzureOfferCode: pulumi.String("string"),
SavingsOptions: pulumi.String("string"),
},
ScalingFactor: pulumi.Float64(0),
SizingCriterion: pulumi.String("string"),
},
},
})
var webAppAssessmentV3OperationResource = new WebAppAssessmentV3Operation("webAppAssessmentV3OperationResource", WebAppAssessmentV3OperationArgs.builder()
.projectName("string")
.resourceGroupName("string")
.assessmentName("string")
.properties(WebAppAssessmentV3PropertiesArgs.builder()
.fallbackMachineAssessmentArmId("string")
.scope(ScopeArgs.builder()
.azureResourceGraphQuery("string")
.scopeType("string")
.serverGroupId("string")
.build())
.settings(WebAppAssessmentSettingsArgs.builder()
.appSvcContainerSettings(AppSvcContainerSettingsArgs.builder()
.isolationRequired(false)
.build())
.appSvcNativeSettings(AppSvcNativeSettingsArgs.builder()
.isolationRequired(false)
.build())
.azureSecurityOfferingType("string")
.azureLocation("string")
.billingSettings(BillingSettingsArgs.builder()
.licensingProgram("string")
.subscriptionId("string")
.build())
.currency("string")
.discountPercentage(0)
.environmentType("string")
.performanceData(PerformanceDataArgs.builder()
.percentile("string")
.perfDataEndTime("string")
.perfDataStartTime("string")
.timeRange("string")
.build())
.savingsSettings(SavingsSettingsArgs.builder()
.azureOfferCode("string")
.savingsOptions("string")
.build())
.scalingFactor(0)
.sizingCriterion("string")
.build())
.build())
.build());
web_app_assessment_v3_operation_resource = azure_native.migrate.WebAppAssessmentV3Operation("webAppAssessmentV3OperationResource",
project_name="string",
resource_group_name="string",
assessment_name="string",
properties={
"fallback_machine_assessment_arm_id": "string",
"scope": {
"azure_resource_graph_query": "string",
"scope_type": "string",
"server_group_id": "string",
},
"settings": {
"app_svc_container_settings": {
"isolation_required": False,
},
"app_svc_native_settings": {
"isolation_required": False,
},
"azure_security_offering_type": "string",
"azure_location": "string",
"billing_settings": {
"licensing_program": "string",
"subscription_id": "string",
},
"currency": "string",
"discount_percentage": 0,
"environment_type": "string",
"performance_data": {
"percentile": "string",
"perf_data_end_time": "string",
"perf_data_start_time": "string",
"time_range": "string",
},
"savings_settings": {
"azure_offer_code": "string",
"savings_options": "string",
},
"scaling_factor": 0,
"sizing_criterion": "string",
},
})
const webAppAssessmentV3OperationResource = new azure_native.migrate.WebAppAssessmentV3Operation("webAppAssessmentV3OperationResource", {
projectName: "string",
resourceGroupName: "string",
assessmentName: "string",
properties: {
fallbackMachineAssessmentArmId: "string",
scope: {
azureResourceGraphQuery: "string",
scopeType: "string",
serverGroupId: "string",
},
settings: {
appSvcContainerSettings: {
isolationRequired: false,
},
appSvcNativeSettings: {
isolationRequired: false,
},
azureSecurityOfferingType: "string",
azureLocation: "string",
billingSettings: {
licensingProgram: "string",
subscriptionId: "string",
},
currency: "string",
discountPercentage: 0,
environmentType: "string",
performanceData: {
percentile: "string",
perfDataEndTime: "string",
perfDataStartTime: "string",
timeRange: "string",
},
savingsSettings: {
azureOfferCode: "string",
savingsOptions: "string",
},
scalingFactor: 0,
sizingCriterion: "string",
},
},
});
type: azure-native:migrate:WebAppAssessmentV3Operation
properties:
assessmentName: string
projectName: string
properties:
fallbackMachineAssessmentArmId: string
scope:
azureResourceGraphQuery: string
scopeType: string
serverGroupId: string
settings:
appSvcContainerSettings:
isolationRequired: false
appSvcNativeSettings:
isolationRequired: false
azureLocation: string
azureSecurityOfferingType: string
billingSettings:
licensingProgram: string
subscriptionId: string
currency: string
discountPercentage: 0
environmentType: string
performanceData:
percentile: string
perfDataEndTime: string
perfDataStartTime: string
timeRange: string
savingsSettings:
azureOfferCode: string
savingsOptions: string
scalingFactor: 0
sizingCriterion: string
resourceGroupName: string
WebAppAssessmentV3Operation 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 WebAppAssessmentV3Operation resource accepts the following input properties:
- Project
Name string - Assessment Project Name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Assessment
Name string - WebApp Assessment ARM name
- Properties
Pulumi.
Azure Native. Migrate. Inputs. Web App Assessment V3Properties - The resource-specific properties for this resource.
- Project
Name string - Assessment Project Name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Assessment
Name string - WebApp Assessment ARM name
- Properties
Web
App Assessment V3Properties Args - The resource-specific properties for this resource.
- project
Name String - Assessment Project Name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- assessment
Name String - WebApp Assessment ARM name
- properties
Web
App Assessment V3Properties - The resource-specific properties for this resource.
- project
Name string - Assessment Project Name
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- assessment
Name string - WebApp Assessment ARM name
- properties
Web
App Assessment V3Properties - The resource-specific properties for this resource.
- project_
name str - Assessment Project Name
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- assessment_
name str - WebApp Assessment ARM name
- properties
Web
App Assessment V3Properties Args - The resource-specific properties for this resource.
- project
Name String - Assessment Project Name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- assessment
Name String - WebApp Assessment ARM name
- properties Property Map
- The resource-specific properties for this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the WebAppAssessmentV3Operation resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Migrate. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AppSvcContainerSettings, AppSvcContainerSettingsArgs
- Isolation
Required bool - Gets or sets the isolation required.
- Isolation
Required bool - Gets or sets the isolation required.
- isolation
Required Boolean - Gets or sets the isolation required.
- isolation
Required boolean - Gets or sets the isolation required.
- isolation_
required bool - Gets or sets the isolation required.
- isolation
Required Boolean - Gets or sets the isolation required.
AppSvcContainerSettingsResponse, AppSvcContainerSettingsResponseArgs
- Isolation
Required bool - Gets or sets the isolation required.
- Isolation
Required bool - Gets or sets the isolation required.
- isolation
Required Boolean - Gets or sets the isolation required.
- isolation
Required boolean - Gets or sets the isolation required.
- isolation_
required bool - Gets or sets the isolation required.
- isolation
Required Boolean - Gets or sets the isolation required.
AppSvcNativeSettings, AppSvcNativeSettingsArgs
- Isolation
Required bool - Gets or sets the isolation required.
- Isolation
Required bool - Gets or sets the isolation required.
- isolation
Required Boolean - Gets or sets the isolation required.
- isolation
Required boolean - Gets or sets the isolation required.
- isolation_
required bool - Gets or sets the isolation required.
- isolation
Required Boolean - Gets or sets the isolation required.
AppSvcNativeSettingsResponse, AppSvcNativeSettingsResponseArgs
- Isolation
Required bool - Gets or sets the isolation required.
- Isolation
Required bool - Gets or sets the isolation required.
- isolation
Required Boolean - Gets or sets the isolation required.
- isolation
Required boolean - Gets or sets the isolation required.
- isolation_
required bool - Gets or sets the isolation required.
- isolation
Required Boolean - Gets or sets the isolation required.
AssessmentDetailsResponse, AssessmentDetailsResponseArgs
- Confidence
Rating doubleIn Percentage - Confidence Rating in Percentage.
- Created
Timestamp string - Date and Time when assessment was created.
- Prices
Timestamp string - Last time when rates were queried.
- Status string
- Whether assessment is in valid state and all machines have been assessed.
- Updated
Timestamp string - Date and Time when assessment was last updated.
- Confidence
Rating float64In Percentage - Confidence Rating in Percentage.
- Created
Timestamp string - Date and Time when assessment was created.
- Prices
Timestamp string - Last time when rates were queried.
- Status string
- Whether assessment is in valid state and all machines have been assessed.
- Updated
Timestamp string - Date and Time when assessment was last updated.
- confidence
Rating DoubleIn Percentage - Confidence Rating in Percentage.
- created
Timestamp String - Date and Time when assessment was created.
- prices
Timestamp String - Last time when rates were queried.
- status String
- Whether assessment is in valid state and all machines have been assessed.
- updated
Timestamp String - Date and Time when assessment was last updated.
- confidence
Rating numberIn Percentage - Confidence Rating in Percentage.
- created
Timestamp string - Date and Time when assessment was created.
- prices
Timestamp string - Last time when rates were queried.
- status string
- Whether assessment is in valid state and all machines have been assessed.
- updated
Timestamp string - Date and Time when assessment was last updated.
- confidence_
rating_ floatin_ percentage - Confidence Rating in Percentage.
- created_
timestamp str - Date and Time when assessment was created.
- prices_
timestamp str - Last time when rates were queried.
- status str
- Whether assessment is in valid state and all machines have been assessed.
- updated_
timestamp str - Date and Time when assessment was last updated.
- confidence
Rating NumberIn Percentage - Confidence Rating in Percentage.
- created
Timestamp String - Date and Time when assessment was created.
- prices
Timestamp String - Last time when rates were queried.
- status String
- Whether assessment is in valid state and all machines have been assessed.
- updated
Timestamp String - Date and Time when assessment was last updated.
AssessmentSizingCriterion, AssessmentSizingCriterionArgs
- Performance
Based - PerformanceBasedPerformance Data based Sizing.
- As
On Premises - AsOnPremisesAs On Premises or Static Data based Sizing.
- Assessment
Sizing Criterion Performance Based - PerformanceBasedPerformance Data based Sizing.
- Assessment
Sizing Criterion As On 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.
- Performance
Based - PerformanceBasedPerformance Data based Sizing.
- As
On 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.
- "Performance
Based" - PerformanceBasedPerformance Data based Sizing.
- "As
On Premises" - AsOnPremisesAs On Premises or Static Data based Sizing.
AzureCurrency, AzureCurrencyArgs
- Unknown
- UnknownUnknown Currency for Azure
- USD
- USDUSD Currency for Azure
- DKK
- DKKDKK Currency for Azure
- CAD
- CADCAD Currency for Azure
- IDR
- IDRIDR Currency for Azure
- JPY
- JPYJPY Currency for Azure
- KRW
- KRWKRW Currency for Azure
- NZD
- NZDNZD Currency for Azure
- NOK
- NOKNOK Currency for Azure
- RUB
- RUBRUB Currency for Azure
- SAR
- SARSAR Currency for Azure
- ZAR
- ZARZAR Currency for Azure
- SEK
- SEKSEK Currency for Azure
- TRY
- TRYTRY Currency for Azure
- GBP
- GBPGBP Currency for Azure
- MXN
- MXNMXN Currency for Azure
- MYR
- MYRMYR Currency for Azure
- INR
- INRINR Currency for Azure
- HKD
- HKDHKD Currency for Azure
- BRL
- BRLBRL Currency for Azure
- TWD
- TWDTWD Currency for Azure
- EUR
- EUREUR Currency for Azure
- CHF
- CHFCHF Currency for Azure
- ARS
- ARSARS Currency for Azure
- AUD
- AUDAUD Currency for Azure
- CNY
- CNYCNY Currency for Azure
- Azure
Currency Unknown - UnknownUnknown Currency for Azure
- Azure
Currency USD - USDUSD Currency for Azure
- Azure
Currency DKK - DKKDKK Currency for Azure
- Azure
Currency CAD - CADCAD Currency for Azure
- Azure
Currency IDR - IDRIDR Currency for Azure
- Azure
Currency JPY - JPYJPY Currency for Azure
- Azure
Currency KRW - KRWKRW Currency for Azure
- Azure
Currency NZD - NZDNZD Currency for Azure
- Azure
Currency NOK - NOKNOK Currency for Azure
- Azure
Currency RUB - RUBRUB Currency for Azure
- Azure
Currency SAR - SARSAR Currency for Azure
- Azure
Currency ZAR - ZARZAR Currency for Azure
- Azure
Currency SEK - SEKSEK Currency for Azure
- Azure
Currency TRY - TRYTRY Currency for Azure
- Azure
Currency GBP - GBPGBP Currency for Azure
- Azure
Currency MXN - MXNMXN Currency for Azure
- Azure
Currency MYR - MYRMYR Currency for Azure
- Azure
Currency INR - INRINR Currency for Azure
- Azure
Currency HKD - HKDHKD Currency for Azure
- Azure
Currency BRL - BRLBRL Currency for Azure
- Azure
Currency TWD - TWDTWD Currency for Azure
- Azure
Currency EUR - EUREUR Currency for Azure
- Azure
Currency CHF - CHFCHF Currency for Azure
- Azure
Currency ARS - ARSARS Currency for Azure
- Azure
Currency AUD - AUDAUD Currency for Azure
- Azure
Currency CNY - CNYCNY Currency for Azure
- Unknown
- UnknownUnknown Currency for Azure
- USD
- USDUSD Currency for Azure
- DKK
- DKKDKK Currency for Azure
- CAD
- CADCAD Currency for Azure
- IDR
- IDRIDR Currency for Azure
- JPY
- JPYJPY Currency for Azure
- KRW
- KRWKRW Currency for Azure
- NZD
- NZDNZD Currency for Azure
- NOK
- NOKNOK Currency for Azure
- RUB
- RUBRUB Currency for Azure
- SAR
- SARSAR Currency for Azure
- ZAR
- ZARZAR Currency for Azure
- SEK
- SEKSEK Currency for Azure
- TRY
- TRYTRY Currency for Azure
- GBP
- GBPGBP Currency for Azure
- MXN
- MXNMXN Currency for Azure
- MYR
- MYRMYR Currency for Azure
- INR
- INRINR Currency for Azure
- HKD
- HKDHKD Currency for Azure
- BRL
- BRLBRL Currency for Azure
- TWD
- TWDTWD Currency for Azure
- EUR
- EUREUR Currency for Azure
- CHF
- CHFCHF Currency for Azure
- ARS
- ARSARS Currency for Azure
- AUD
- AUDAUD Currency for Azure
- CNY
- CNYCNY Currency for Azure
- Unknown
- UnknownUnknown Currency for Azure
- USD
- USDUSD Currency for Azure
- DKK
- DKKDKK Currency for Azure
- CAD
- CADCAD Currency for Azure
- IDR
- IDRIDR Currency for Azure
- JPY
- JPYJPY Currency for Azure
- KRW
- KRWKRW Currency for Azure
- NZD
- NZDNZD Currency for Azure
- NOK
- NOKNOK Currency for Azure
- RUB
- RUBRUB Currency for Azure
- SAR
- SARSAR Currency for Azure
- ZAR
- ZARZAR Currency for Azure
- SEK
- SEKSEK Currency for Azure
- TRY
- TRYTRY Currency for Azure
- GBP
- GBPGBP Currency for Azure
- MXN
- MXNMXN Currency for Azure
- MYR
- MYRMYR Currency for Azure
- INR
- INRINR Currency for Azure
- HKD
- HKDHKD Currency for Azure
- BRL
- BRLBRL Currency for Azure
- TWD
- TWDTWD Currency for Azure
- EUR
- EUREUR Currency for Azure
- CHF
- CHFCHF Currency for Azure
- ARS
- ARSARS Currency for Azure
- AUD
- AUDAUD Currency for Azure
- CNY
- CNYCNY Currency for Azure
- UNKNOWN
- UnknownUnknown Currency for Azure
- USD
- USDUSD Currency for Azure
- DKK
- DKKDKK Currency for Azure
- CAD
- CADCAD Currency for Azure
- IDR
- IDRIDR Currency for Azure
- JPY
- JPYJPY Currency for Azure
- KRW
- KRWKRW Currency for Azure
- NZD
- NZDNZD Currency for Azure
- NOK
- NOKNOK Currency for Azure
- RUB
- RUBRUB Currency for Azure
- SAR
- SARSAR Currency for Azure
- ZAR
- ZARZAR Currency for Azure
- SEK
- SEKSEK Currency for Azure
- TRY_
- TRYTRY Currency for Azure
- GBP
- GBPGBP Currency for Azure
- MXN
- MXNMXN Currency for Azure
- MYR
- MYRMYR Currency for Azure
- INR
- INRINR Currency for Azure
- HKD
- HKDHKD Currency for Azure
- BRL
- BRLBRL Currency for Azure
- TWD
- TWDTWD Currency for Azure
- EUR
- EUREUR Currency for Azure
- CHF
- CHFCHF Currency for Azure
- ARS
- ARSARS Currency for Azure
- AUD
- AUDAUD Currency for Azure
- CNY
- CNYCNY Currency for Azure
- "Unknown"
- UnknownUnknown Currency for Azure
- "USD"
- USDUSD Currency for Azure
- "DKK"
- DKKDKK Currency for Azure
- "CAD"
- CADCAD Currency for Azure
- "IDR"
- IDRIDR Currency for Azure
- "JPY"
- JPYJPY Currency for Azure
- "KRW"
- KRWKRW Currency for Azure
- "NZD"
- NZDNZD Currency for Azure
- "NOK"
- NOKNOK Currency for Azure
- "RUB"
- RUBRUB Currency for Azure
- "SAR"
- SARSAR Currency for Azure
- "ZAR"
- ZARZAR Currency for Azure
- "SEK"
- SEKSEK Currency for Azure
- "TRY"
- TRYTRY Currency for Azure
- "GBP"
- GBPGBP Currency for Azure
- "MXN"
- MXNMXN Currency for Azure
- "MYR"
- MYRMYR Currency for Azure
- "INR"
- INRINR Currency for Azure
- "HKD"
- HKDHKD Currency for Azure
- "BRL"
- BRLBRL Currency for Azure
- "TWD"
- TWDTWD Currency for Azure
- "EUR"
- EUREUR Currency for Azure
- "CHF"
- CHFCHF Currency for Azure
- "ARS"
- ARSARS Currency for Azure
- "AUD"
- AUDAUD Currency for Azure
- "CNY"
- CNYCNY Currency for Azure
AzureOffer, AzureOfferArgs
- Unknown
- UnknownUnknown - Azure Offer
- Msazr0003P
- MSAZR0003PMSAZR0003P Azure Offer
- Msazr0023P
- MSAZR0023PMSAZR0023P Azure Offer
- Msmcazr0044P
- MSMCAZR0044PMSMCAZR0044P Azure Offer
- Msmcazr0059P
- MSMCAZR0059PMSMCAZR0059P Azure Offer
- Msmcazr0060P
- MSMCAZR0060PMSMCAZR0060P Azure Offer
- Msmcazr0063P
- MSMCAZR0063PMSMCAZR0063P Azure Offer
- Msazrusgov0003P
- MSAZRUSGOV0003PMSAZRUSGOV0003P Azure Offer
- EA
- EAEA Azure Offer
- Savings
Plan1Year - SavingsPlan1YearSavingsPlan1Year Azure Offer
- Savings
Plan3Year - SavingsPlan3YearSavingsPlan3Year Azure Offer
- Azure
Offer Unknown - UnknownUnknown - Azure Offer
- Azure
Offer Msazr0003P - MSAZR0003PMSAZR0003P Azure Offer
- Azure
Offer Msazr0023P - MSAZR0023PMSAZR0023P Azure Offer
- Azure
Offer Msmcazr0044P - MSMCAZR0044PMSMCAZR0044P Azure Offer
- Azure
Offer Msmcazr0059P - MSMCAZR0059PMSMCAZR0059P Azure Offer
- Azure
Offer Msmcazr0060P - MSMCAZR0060PMSMCAZR0060P Azure Offer
- Azure
Offer Msmcazr0063P - MSMCAZR0063PMSMCAZR0063P Azure Offer
- Azure
Offer Msazrusgov0003P - MSAZRUSGOV0003PMSAZRUSGOV0003P Azure Offer
- Azure
Offer EA - EAEA Azure Offer
- Azure
Offer Savings Plan1Year - SavingsPlan1YearSavingsPlan1Year Azure Offer
- Azure
Offer Savings Plan3Year - SavingsPlan3YearSavingsPlan3Year Azure Offer
- Unknown
- UnknownUnknown - Azure Offer
- Msazr0003P
- MSAZR0003PMSAZR0003P Azure Offer
- Msazr0023P
- MSAZR0023PMSAZR0023P Azure Offer
- Msmcazr0044P
- MSMCAZR0044PMSMCAZR0044P Azure Offer
- Msmcazr0059P
- MSMCAZR0059PMSMCAZR0059P Azure Offer
- Msmcazr0060P
- MSMCAZR0060PMSMCAZR0060P Azure Offer
- Msmcazr0063P
- MSMCAZR0063PMSMCAZR0063P Azure Offer
- Msazrusgov0003P
- MSAZRUSGOV0003PMSAZRUSGOV0003P Azure Offer
- EA
- EAEA Azure Offer
- Savings
Plan1Year - SavingsPlan1YearSavingsPlan1Year Azure Offer
- Savings
Plan3Year - SavingsPlan3YearSavingsPlan3Year Azure Offer
- Unknown
- UnknownUnknown - Azure Offer
- Msazr0003P
- MSAZR0003PMSAZR0003P Azure Offer
- Msazr0023P
- MSAZR0023PMSAZR0023P Azure Offer
- Msmcazr0044P
- MSMCAZR0044PMSMCAZR0044P Azure Offer
- Msmcazr0059P
- MSMCAZR0059PMSMCAZR0059P Azure Offer
- Msmcazr0060P
- MSMCAZR0060PMSMCAZR0060P Azure Offer
- Msmcazr0063P
- MSMCAZR0063PMSMCAZR0063P Azure Offer
- Msazrusgov0003P
- MSAZRUSGOV0003PMSAZRUSGOV0003P Azure Offer
- EA
- EAEA Azure Offer
- Savings
Plan1Year - SavingsPlan1YearSavingsPlan1Year Azure Offer
- Savings
Plan3Year - SavingsPlan3YearSavingsPlan3Year Azure Offer
- UNKNOWN
- UnknownUnknown - Azure Offer
- MSAZR0003_P
- MSAZR0003PMSAZR0003P Azure Offer
- MSAZR0023_P
- MSAZR0023PMSAZR0023P Azure Offer
- MSMCAZR0044_P
- MSMCAZR0044PMSMCAZR0044P Azure Offer
- MSMCAZR0059_P
- MSMCAZR0059PMSMCAZR0059P Azure Offer
- MSMCAZR0060_P
- MSMCAZR0060PMSMCAZR0060P Azure Offer
- MSMCAZR0063_P
- MSMCAZR0063PMSMCAZR0063P Azure Offer
- MSAZRUSGOV0003_P
- MSAZRUSGOV0003PMSAZRUSGOV0003P Azure Offer
- EA
- EAEA Azure Offer
- SAVINGS_PLAN1_YEAR
- SavingsPlan1YearSavingsPlan1Year Azure Offer
- SAVINGS_PLAN3_YEAR
- SavingsPlan3YearSavingsPlan3Year Azure Offer
- "Unknown"
- UnknownUnknown - Azure Offer
- "MSAZR0003P"
- MSAZR0003PMSAZR0003P Azure Offer
- "MSAZR0023P"
- MSAZR0023PMSAZR0023P Azure Offer
- "MSMCAZR0044P"
- MSMCAZR0044PMSMCAZR0044P Azure Offer
- "MSMCAZR0059P"
- MSMCAZR0059PMSMCAZR0059P Azure Offer
- "MSMCAZR0060P"
- MSMCAZR0060PMSMCAZR0060P Azure Offer
- "MSMCAZR0063P"
- MSMCAZR0063PMSMCAZR0063P Azure Offer
- "MSAZRUSGOV0003P"
- MSAZRUSGOV0003PMSAZRUSGOV0003P Azure Offer
- "EA"
- EAEA Azure Offer
- "Savings
Plan1Year" - SavingsPlan1YearSavingsPlan1Year Azure Offer
- "Savings
Plan3Year" - SavingsPlan3YearSavingsPlan3Year Azure Offer
AzureSecurityOfferingType, AzureSecurityOfferingTypeArgs
- NO
- NONO - Azure Security Offering Type
- MDC
- MDCMDC - Azure Security Offering Type
- Azure
Security Offering Type NO - NONO - Azure Security Offering Type
- Azure
Security Offering Type MDC - MDCMDC - Azure Security Offering Type
- NO
- NONO - Azure Security Offering Type
- MDC
- MDCMDC - Azure Security Offering Type
- NO
- NONO - Azure Security Offering Type
- MDC
- MDCMDC - Azure Security Offering Type
- NO
- NONO - Azure Security Offering Type
- MDC
- MDCMDC - Azure Security Offering Type
- "NO"
- NONO - Azure Security Offering Type
- "MDC"
- MDCMDC - Azure Security Offering Type
BillingSettings, BillingSettingsArgs
- Licensing
Program string | Pulumi.Azure Native. Migrate. Licensing Program - Gets or sets the licensing program.
- Subscription
Id string - Gets or sets the subscription ID for licensing program selected.
- Licensing
Program string | LicensingProgram - Gets or sets the licensing program.
- Subscription
Id string - Gets or sets the subscription ID for licensing program selected.
- licensing
Program String | LicensingProgram - Gets or sets the licensing program.
- subscription
Id String - Gets or sets the subscription ID for licensing program selected.
- licensing
Program string | LicensingProgram - Gets or sets the licensing program.
- subscription
Id string - Gets or sets the subscription ID for licensing program selected.
- licensing_
program str | LicensingProgram - Gets or sets the licensing program.
- subscription_
id str - Gets or sets the subscription ID for licensing program selected.
- licensing
Program String | "Retail" | "Unknown" | "EA" | "MCA" - Gets or sets the licensing program.
- subscription
Id String - Gets or sets the subscription ID for licensing program selected.
BillingSettingsResponse, BillingSettingsResponseArgs
- Licensing
Program string - Gets or sets the licensing program.
- Subscription
Id string - Gets or sets the subscription ID for licensing program selected.
- Licensing
Program string - Gets or sets the licensing program.
- Subscription
Id string - Gets or sets the subscription ID for licensing program selected.
- licensing
Program String - Gets or sets the licensing program.
- subscription
Id String - Gets or sets the subscription ID for licensing program selected.
- licensing
Program string - Gets or sets the licensing program.
- subscription
Id string - Gets or sets the subscription ID for licensing program selected.
- licensing_
program str - Gets or sets the licensing program.
- subscription_
id str - Gets or sets the subscription ID for licensing program selected.
- licensing
Program String - Gets or sets the licensing program.
- subscription
Id String - Gets or sets the subscription ID for licensing program selected.
EnvironmentType, EnvironmentTypeArgs
- Production
- ProductionProduction - Environment Type
- Unknown
- UnknownUnknown - Environment Type
- Dev
Test - DevTestDevTest - Environment Type
- Environment
Type Production - ProductionProduction - Environment Type
- Environment
Type Unknown - UnknownUnknown - Environment Type
- Environment
Type Dev Test - DevTestDevTest - Environment Type
- Production
- ProductionProduction - Environment Type
- Unknown
- UnknownUnknown - Environment Type
- Dev
Test - DevTestDevTest - Environment Type
- Production
- ProductionProduction - Environment Type
- Unknown
- UnknownUnknown - Environment Type
- Dev
Test - DevTestDevTest - Environment Type
- PRODUCTION
- ProductionProduction - Environment Type
- UNKNOWN
- UnknownUnknown - Environment Type
- DEV_TEST
- DevTestDevTest - Environment Type
- "Production"
- ProductionProduction - Environment Type
- "Unknown"
- UnknownUnknown - Environment Type
- "Dev
Test" - DevTestDevTest - Environment Type
LicensingProgram, LicensingProgramArgs
- Retail
- RetailRetail/Pay as you go.
- Unknown
- UnknownNot known
- EA
- EAEnterprise agreement.
- MCA
- MCAMicrosoft customer agreement.
- Licensing
Program Retail - RetailRetail/Pay as you go.
- Licensing
Program Unknown - UnknownNot known
- Licensing
Program EA - EAEnterprise agreement.
- Licensing
Program MCA - MCAMicrosoft customer agreement.
- Retail
- RetailRetail/Pay as you go.
- Unknown
- UnknownNot known
- EA
- EAEnterprise agreement.
- MCA
- MCAMicrosoft customer agreement.
- Retail
- RetailRetail/Pay as you go.
- Unknown
- UnknownNot known
- EA
- EAEnterprise agreement.
- MCA
- MCAMicrosoft customer agreement.
- RETAIL
- RetailRetail/Pay as you go.
- UNKNOWN
- UnknownNot known
- EA
- EAEnterprise agreement.
- MCA
- MCAMicrosoft customer agreement.
- "Retail"
- RetailRetail/Pay as you go.
- "Unknown"
- UnknownNot known
- "EA"
- EAEnterprise agreement.
- "MCA"
- MCAMicrosoft customer agreement.
Percentile, PercentileArgs
- Percentile50
- Percentile50Percentile 50.
- Percentile90
- Percentile90Percentile 90.
- Percentile95
- Percentile95Percentile 95.
- Percentile99
- Percentile99Percentile 99.
- Percentile
Unknown - PercentileUnknownPercentile unknown.
- Percentile
Percentile50 - Percentile50Percentile 50.
- Percentile
Percentile90 - Percentile90Percentile 90.
- Percentile
Percentile95 - Percentile95Percentile 95.
- Percentile
Percentile99 - Percentile99Percentile 99.
- Percentile
Percentile Unknown - PercentileUnknownPercentile unknown.
- Percentile50
- Percentile50Percentile 50.
- Percentile90
- Percentile90Percentile 90.
- Percentile95
- Percentile95Percentile 95.
- Percentile99
- Percentile99Percentile 99.
- Percentile
Unknown - PercentileUnknownPercentile unknown.
- Percentile50
- Percentile50Percentile 50.
- Percentile90
- Percentile90Percentile 90.
- Percentile95
- Percentile95Percentile 95.
- Percentile99
- Percentile99Percentile 99.
- Percentile
Unknown - PercentileUnknownPercentile unknown.
- PERCENTILE50
- Percentile50Percentile 50.
- PERCENTILE90
- Percentile90Percentile 90.
- PERCENTILE95
- Percentile95Percentile 95.
- PERCENTILE99
- Percentile99Percentile 99.
- PERCENTILE_UNKNOWN
- PercentileUnknownPercentile unknown.
- "Percentile50"
- Percentile50Percentile 50.
- "Percentile90"
- Percentile90Percentile 90.
- "Percentile95"
- Percentile95Percentile 95.
- "Percentile99"
- Percentile99Percentile 99.
- "Percentile
Unknown" - PercentileUnknownPercentile unknown.
PerformanceData, PerformanceDataArgs
- Percentile
string | Pulumi.
Azure Native. Migrate. Percentile - Percentile of the utilization data values to be considered while assessing machines.
- Perf
Data stringEnd Time - Gets or sets the end time to consider performance data for assessment.
- Perf
Data stringStart Time - Gets or sets the start time to consider performance data for assessment.
- Time
Range string | Pulumi.Azure Native. Migrate. Time Range - Time Range for which the historic utilization data should be considered for assessment.
- Percentile string | Percentile
- Percentile of the utilization data values to be considered while assessing machines.
- Perf
Data stringEnd Time - Gets or sets the end time to consider performance data for assessment.
- Perf
Data stringStart Time - Gets or sets the start time to consider performance data for assessment.
- Time
Range string | TimeRange - Time Range for which the historic utilization data should be considered for assessment.
- percentile String | Percentile
- Percentile of the utilization data values to be considered while assessing machines.
- perf
Data StringEnd Time - Gets or sets the end time to consider performance data for assessment.
- perf
Data StringStart Time - Gets or sets the start time to consider performance data for assessment.
- time
Range String | TimeRange - Time Range for which the historic utilization data should be considered for assessment.
- percentile string | Percentile
- Percentile of the utilization data values to be considered while assessing machines.
- perf
Data stringEnd Time - Gets or sets the end time to consider performance data for assessment.
- perf
Data stringStart Time - Gets or sets the start time to consider performance data for assessment.
- time
Range string | TimeRange - Time Range for which the historic utilization data should be considered for 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.
- time_
range str | TimeRange - Time Range for which the historic utilization data should be considered for assessment.
- percentile
String | "Percentile50" | "Percentile90" | "Percentile95" | "Percentile99" | "Percentile
Unknown" - Percentile of the utilization data values to be considered while assessing machines.
- perf
Data StringEnd Time - Gets or sets the end time to consider performance data for assessment.
- perf
Data StringStart Time - Gets or sets the start time to consider performance data for assessment.
- time
Range String | "Day" | "Week" | "Month" | "Custom" - Time Range for which the historic utilization data should be considered for assessment.
PerformanceDataResponse, PerformanceDataResponseArgs
- Percentile string
- Percentile of the utilization data values to be considered while assessing machines.
- Perf
Data stringEnd Time - Gets or sets the end time to consider performance data for assessment.
- Perf
Data stringStart Time - Gets or sets the start time to consider performance data for assessment.
- Time
Range string - Time Range for which the historic utilization data should be considered for assessment.
- Percentile string
- Percentile of the utilization data values to be considered while assessing machines.
- Perf
Data stringEnd Time - Gets or sets the end time to consider performance data for assessment.
- Perf
Data stringStart Time - Gets or sets the start time to consider performance data for assessment.
- Time
Range string - Time Range for which the historic utilization data should be considered for assessment.
- percentile String
- Percentile of the utilization data values to be considered while assessing machines.
- perf
Data StringEnd Time - Gets or sets the end time to consider performance data for assessment.
- perf
Data StringStart Time - Gets or sets the start time to consider performance data for assessment.
- time
Range String - Time Range for which the historic utilization data should be considered for assessment.
- percentile string
- Percentile of the utilization data values to be considered while assessing machines.
- perf
Data stringEnd Time - Gets or sets the end time to consider performance data for assessment.
- perf
Data stringStart Time - Gets or sets the start time to consider performance data for assessment.
- time
Range string - Time Range for which the historic utilization data should be considered for assessment.
- percentile str
- 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.
- time_
range str - Time Range for which the historic utilization data should be considered for assessment.
- percentile String
- Percentile of the utilization data values to be considered while assessing machines.
- perf
Data StringEnd Time - Gets or sets the end time to consider performance data for assessment.
- perf
Data StringStart Time - Gets or sets the start time to consider performance data for assessment.
- time
Range String - Time Range for which the historic utilization data should be considered for assessment.
SavingsOptions, SavingsOptionsArgs
- None
- NoneNo savings options.
- RI1Year
- RI1YearReserved Instance for 1 year.
- RI3Year
- RI3YearReserved Instance for 3 years.
- Savings
Plan1Year - SavingsPlan1YearThe savings plan for 1 year.
- Savings
Plan3Year - SavingsPlan3YearThe savings plan for 3 years.
- Custom
Azure Offer Code - CustomAzureOfferCodeCustom azure offer code.
- Savings
Options None - NoneNo savings options.
- Savings
Options RI1Year - RI1YearReserved Instance for 1 year.
- Savings
Options RI3Year - RI3YearReserved Instance for 3 years.
- Savings
Options Savings Plan1Year - SavingsPlan1YearThe savings plan for 1 year.
- Savings
Options Savings Plan3Year - SavingsPlan3YearThe savings plan for 3 years.
- Savings
Options Custom Azure Offer Code - CustomAzureOfferCodeCustom azure offer code.
- None
- NoneNo savings options.
- RI1Year
- RI1YearReserved Instance for 1 year.
- RI3Year
- RI3YearReserved Instance for 3 years.
- Savings
Plan1Year - SavingsPlan1YearThe savings plan for 1 year.
- Savings
Plan3Year - SavingsPlan3YearThe savings plan for 3 years.
- Custom
Azure Offer Code - CustomAzureOfferCodeCustom azure offer code.
- None
- NoneNo savings options.
- RI1Year
- RI1YearReserved Instance for 1 year.
- RI3Year
- RI3YearReserved Instance for 3 years.
- Savings
Plan1Year - SavingsPlan1YearThe savings plan for 1 year.
- Savings
Plan3Year - SavingsPlan3YearThe savings plan for 3 years.
- Custom
Azure Offer Code - CustomAzureOfferCodeCustom azure offer code.
- NONE
- NoneNo savings options.
- RI1_YEAR
- RI1YearReserved Instance for 1 year.
- RI3_YEAR
- RI3YearReserved Instance for 3 years.
- SAVINGS_PLAN1_YEAR
- SavingsPlan1YearThe savings plan for 1 year.
- SAVINGS_PLAN3_YEAR
- SavingsPlan3YearThe savings plan for 3 years.
- CUSTOM_AZURE_OFFER_CODE
- CustomAzureOfferCodeCustom azure offer code.
- "None"
- NoneNo savings options.
- "RI1Year"
- RI1YearReserved Instance for 1 year.
- "RI3Year"
- RI3YearReserved Instance for 3 years.
- "Savings
Plan1Year" - SavingsPlan1YearThe savings plan for 1 year.
- "Savings
Plan3Year" - SavingsPlan3YearThe savings plan for 3 years.
- "Custom
Azure Offer Code" - CustomAzureOfferCodeCustom azure offer code.
SavingsSettings, SavingsSettingsArgs
- Azure
Offer string | Pulumi.Code Azure Native. Migrate. Azure Offer - Gets or sets the Azure offer code.
- Savings
Options string | Pulumi.Azure Native. Migrate. Savings Options - Gets or sets the savings options.
- Azure
Offer string | AzureCode Offer - Gets or sets the Azure offer code.
- Savings
Options string | SavingsOptions - Gets or sets the savings options.
- azure
Offer String | AzureCode Offer - Gets or sets the Azure offer code.
- savings
Options String | SavingsOptions - Gets or sets the savings options.
- azure
Offer string | AzureCode Offer - Gets or sets the Azure offer code.
- savings
Options string | SavingsOptions - Gets or sets the savings options.
- azure_
offer_ str | Azurecode Offer - Gets or sets the Azure offer code.
- savings_
options str | SavingsOptions - Gets or sets the savings options.
- azure
Offer String | "Unknown" | "MSAZR0003P" | "MSAZR0023P" | "MSMCAZR0044P" | "MSMCAZR0059P" | "MSMCAZR0060P" | "MSMCAZR0063P" | "MSAZRUSGOV0003P" | "EA" | "SavingsCode Plan1Year" | "Savings Plan3Year" - Gets or sets the Azure offer code.
- savings
Options String | "None" | "RI1Year" | "RI3Year" | "SavingsPlan1Year" | "Savings Plan3Year" | "Custom Azure Offer Code" - Gets or sets the savings options.
SavingsSettingsResponse, SavingsSettingsResponseArgs
- Azure
Offer stringCode - Gets or sets the Azure offer code.
- Savings
Options string - Gets or sets the savings options.
- Azure
Offer stringCode - Gets or sets the Azure offer code.
- Savings
Options string - Gets or sets the savings options.
- azure
Offer StringCode - Gets or sets the Azure offer code.
- savings
Options String - Gets or sets the savings options.
- azure
Offer stringCode - Gets or sets the Azure offer code.
- savings
Options string - Gets or sets the savings options.
- azure_
offer_ strcode - Gets or sets the Azure offer code.
- savings_
options str - Gets or sets the savings options.
- azure
Offer StringCode - Gets or sets the Azure offer code.
- savings
Options String - Gets or sets the savings options.
Scope, ScopeArgs
- Azure
Resource stringGraph Query - The ARG query.
- Scope
Type string | Pulumi.Azure Native. Migrate. Scope Type - The scope type
- Server
Group stringId - The server group arm id.
- Azure
Resource stringGraph Query - The ARG query.
- Scope
Type string | ScopeType - The scope type
- Server
Group stringId - The server group arm id.
- azure
Resource StringGraph Query - The ARG query.
- scope
Type String | ScopeType - The scope type
- server
Group StringId - The server group arm id.
- azure
Resource stringGraph Query - The ARG query.
- scope
Type string | ScopeType - The scope type
- server
Group stringId - The server group arm id.
- azure_
resource_ strgraph_ query - The ARG query.
- scope_
type str | ScopeType - The scope type
- server_
group_ strid - The server group arm id.
- azure
Resource StringGraph Query - The ARG query.
- scope
Type String | "ServerGroup Id" | "Azure Resource Graph Query" - The scope type
- server
Group StringId - The server group arm id.
ScopeResponse, ScopeResponseArgs
- Azure
Resource stringGraph Query - The ARG query.
- Scope
Type string - The scope type
- Server
Group stringId - The server group arm id.
- Azure
Resource stringGraph Query - The ARG query.
- Scope
Type string - The scope type
- Server
Group stringId - The server group arm id.
- azure
Resource StringGraph Query - The ARG query.
- scope
Type String - The scope type
- server
Group StringId - The server group arm id.
- azure
Resource stringGraph Query - The ARG query.
- scope
Type string - The scope type
- server
Group stringId - The server group arm id.
- azure_
resource_ strgraph_ query - The ARG query.
- scope_
type str - The scope type
- server_
group_ strid - The server group arm id.
- azure
Resource StringGraph Query - The ARG query.
- scope
Type String - The scope type
- server
Group StringId - The server group arm id.
ScopeType, ScopeTypeArgs
- Server
Group Id - ServerGroupIdServerGroupId - Scope type
- Azure
Resource Graph Query - AzureResourceGraphQueryAzureResourceGraphQuery - Scope type
- Scope
Type Server Group Id - ServerGroupIdServerGroupId - Scope type
- Scope
Type Azure Resource Graph Query - AzureResourceGraphQueryAzureResourceGraphQuery - Scope type
- Server
Group Id - ServerGroupIdServerGroupId - Scope type
- Azure
Resource Graph Query - AzureResourceGraphQueryAzureResourceGraphQuery - Scope type
- Server
Group Id - ServerGroupIdServerGroupId - Scope type
- Azure
Resource Graph Query - AzureResourceGraphQueryAzureResourceGraphQuery - Scope type
- SERVER_GROUP_ID
- ServerGroupIdServerGroupId - Scope type
- AZURE_RESOURCE_GRAPH_QUERY
- AzureResourceGraphQueryAzureResourceGraphQuery - Scope type
- "Server
Group Id" - ServerGroupIdServerGroupId - Scope type
- "Azure
Resource Graph Query" - AzureResourceGraphQueryAzureResourceGraphQuery - Scope type
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
TimeRange, TimeRangeArgs
- Day
- DayDaily.
- Week
- WeekWeekly.
- Month
- MonthMonthly.
- Custom
- CustomCustom Time Range.
- Time
Range Day - DayDaily.
- Time
Range Week - WeekWeekly.
- Time
Range Month - MonthMonthly.
- Time
Range 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.
WebAppAssessmentSettings, WebAppAssessmentSettingsArgs
- App
Svc Pulumi.Container Settings Azure Native. Migrate. Inputs. App Svc Container Settings - App Service container settings.
- App
Svc Pulumi.Native Settings Azure Native. Migrate. Inputs. App Svc Native Settings - App Service native settings.
- Azure
Security string | Pulumi.Offering Type Azure Native. Migrate. Azure Security Offering Type - Azure security offering type.
- Azure
Location string - Azure Location or Azure region where to which the machines will be migrated.
- Billing
Settings Pulumi.Azure Native. Migrate. Inputs. Billing Settings - Gets or sets the billing settings.
- Currency
string | Pulumi.
Azure Native. Migrate. Azure Currency - Currency in which prices should be reported.
- Discount
Percentage double - Custom discount percentage.
- Environment
Type string | Pulumi.Azure Native. Migrate. Environment Type - Gets or sets user configurable setting to display the environment type.
- Performance
Data Pulumi.Azure Native. Migrate. Inputs. Performance Data - Gets or sets the performance data.
- Savings
Settings Pulumi.Azure Native. Migrate. Inputs. Savings Settings - Gets or sets the savings settings.
- Scaling
Factor double - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- Sizing
Criterion string | Pulumi.Azure Native. Migrate. Assessment Sizing Criterion - Assessment sizing criterion.
- App
Svc AppContainer Settings Svc Container Settings - App Service container settings.
- App
Svc AppNative Settings Svc Native Settings - App Service native settings.
- Azure
Security string | AzureOffering Type Security Offering Type - Azure security offering type.
- Azure
Location string - Azure Location or Azure region where to which the machines will be migrated.
- Billing
Settings BillingSettings - Gets or sets the billing settings.
- Currency
string | Azure
Currency - Currency in which prices should be reported.
- Discount
Percentage float64 - Custom discount percentage.
- Environment
Type string | EnvironmentType - Gets or sets user configurable setting to display the environment type.
- Performance
Data PerformanceData - Gets or sets the performance data.
- Savings
Settings SavingsSettings - Gets or sets the savings settings.
- Scaling
Factor float64 - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- Sizing
Criterion string | AssessmentSizing Criterion - Assessment sizing criterion.
- app
Svc AppContainer Settings Svc Container Settings - App Service container settings.
- app
Svc AppNative Settings Svc Native Settings - App Service native settings.
- azure
Security String | AzureOffering Type Security Offering Type - Azure security offering type.
- azure
Location String - Azure Location or Azure region where to which the machines will be migrated.
- billing
Settings BillingSettings - Gets or sets the billing settings.
- currency
String | Azure
Currency - Currency in which prices should be reported.
- discount
Percentage Double - Custom discount percentage.
- environment
Type String | EnvironmentType - Gets or sets user configurable setting to display the environment type.
- performance
Data PerformanceData - Gets or sets the performance data.
- savings
Settings SavingsSettings - Gets or sets the savings settings.
- scaling
Factor Double - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing
Criterion String | AssessmentSizing Criterion - Assessment sizing criterion.
- app
Svc AppContainer Settings Svc Container Settings - App Service container settings.
- app
Svc AppNative Settings Svc Native Settings - App Service native settings.
- azure
Security string | AzureOffering Type Security Offering Type - Azure security offering type.
- azure
Location string - Azure Location or Azure region where to which the machines will be migrated.
- billing
Settings BillingSettings - Gets or sets the billing settings.
- currency
string | Azure
Currency - Currency in which prices should be reported.
- discount
Percentage number - Custom discount percentage.
- environment
Type string | EnvironmentType - Gets or sets user configurable setting to display the environment type.
- performance
Data PerformanceData - Gets or sets the performance data.
- savings
Settings SavingsSettings - Gets or sets the savings settings.
- scaling
Factor number - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing
Criterion string | AssessmentSizing Criterion - Assessment sizing criterion.
- app_
svc_ Appcontainer_ settings Svc Container Settings - App Service container settings.
- app_
svc_ Appnative_ settings Svc Native Settings - App Service native settings.
- azure_
security_ str | Azureoffering_ type Security Offering Type - Azure security offering type.
- azure_
location str - Azure Location or Azure region where to which the machines will be migrated.
- billing_
settings BillingSettings - Gets or sets the billing settings.
- currency
str | Azure
Currency - Currency in which prices should be reported.
- discount_
percentage float - Custom discount percentage.
- environment_
type str | EnvironmentType - Gets or sets user configurable setting to display the environment type.
- performance_
data PerformanceData - Gets or sets the performance data.
- savings_
settings SavingsSettings - Gets or sets the savings settings.
- scaling_
factor float - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing_
criterion str | AssessmentSizing Criterion - Assessment sizing criterion.
- app
Svc Property MapContainer Settings - App Service container settings.
- app
Svc Property MapNative Settings - App Service native settings.
- azure
Security String | "NO" | "MDC"Offering Type - Azure security offering type.
- azure
Location String - Azure Location or Azure region where to which the machines will be migrated.
- billing
Settings Property Map - Gets or sets the billing settings.
- 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.
- discount
Percentage Number - Custom discount percentage.
- environment
Type String | "Production" | "Unknown" | "DevTest" - Gets or sets user configurable setting to display the environment type.
- performance
Data Property Map - Gets or sets the performance data.
- savings
Settings Property Map - Gets or sets the savings settings.
- scaling
Factor Number - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing
Criterion String | "PerformanceBased" | "As On Premises" - Assessment sizing criterion.
WebAppAssessmentSettingsResponse, WebAppAssessmentSettingsResponseArgs
- App
Svc Pulumi.Container Settings Azure Native. Migrate. Inputs. App Svc Container Settings Response - App Service container settings.
- App
Svc Pulumi.Native Settings Azure Native. Migrate. Inputs. App Svc Native Settings Response - App Service native settings.
- Azure
Security stringOffering Type - Azure security offering type.
- Azure
Location string - Azure Location or Azure region where to which the machines will be migrated.
- Billing
Settings Pulumi.Azure Native. Migrate. Inputs. Billing Settings Response - Gets or sets the billing settings.
- Currency string
- Currency in which prices should be reported.
- Discount
Percentage double - Custom discount percentage.
- Environment
Type string - Gets or sets user configurable setting to display the environment type.
- Performance
Data Pulumi.Azure Native. Migrate. Inputs. Performance Data Response - Gets or sets the performance data.
- Savings
Settings Pulumi.Azure Native. Migrate. Inputs. Savings Settings Response - Gets or sets the savings settings.
- Scaling
Factor double - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- Sizing
Criterion string - Assessment sizing criterion.
- App
Svc AppContainer Settings Svc Container Settings Response - App Service container settings.
- App
Svc AppNative Settings Svc Native Settings Response - App Service native settings.
- Azure
Security stringOffering Type - Azure security offering type.
- Azure
Location string - Azure Location or Azure region where to which the machines will be migrated.
- Billing
Settings BillingSettings Response - Gets or sets the billing settings.
- Currency string
- Currency in which prices should be reported.
- Discount
Percentage float64 - Custom discount percentage.
- Environment
Type string - Gets or sets user configurable setting to display the environment type.
- Performance
Data PerformanceData Response - Gets or sets the performance data.
- Savings
Settings SavingsSettings Response - Gets or sets the savings settings.
- Scaling
Factor float64 - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- Sizing
Criterion string - Assessment sizing criterion.
- app
Svc AppContainer Settings Svc Container Settings Response - App Service container settings.
- app
Svc AppNative Settings Svc Native Settings Response - App Service native settings.
- azure
Security StringOffering Type - Azure security offering type.
- azure
Location String - Azure Location or Azure region where to which the machines will be migrated.
- billing
Settings BillingSettings Response - Gets or sets the billing settings.
- currency String
- Currency in which prices should be reported.
- discount
Percentage Double - Custom discount percentage.
- environment
Type String - Gets or sets user configurable setting to display the environment type.
- performance
Data PerformanceData Response - Gets or sets the performance data.
- savings
Settings SavingsSettings Response - Gets or sets the savings settings.
- scaling
Factor Double - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing
Criterion String - Assessment sizing criterion.
- app
Svc AppContainer Settings Svc Container Settings Response - App Service container settings.
- app
Svc AppNative Settings Svc Native Settings Response - App Service native settings.
- azure
Security stringOffering Type - Azure security offering type.
- azure
Location string - Azure Location or Azure region where to which the machines will be migrated.
- billing
Settings BillingSettings Response - Gets or sets the billing settings.
- currency string
- Currency in which prices should be reported.
- discount
Percentage number - Custom discount percentage.
- environment
Type string - Gets or sets user configurable setting to display the environment type.
- performance
Data PerformanceData Response - Gets or sets the performance data.
- savings
Settings SavingsSettings Response - Gets or sets the savings settings.
- scaling
Factor number - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing
Criterion string - Assessment sizing criterion.
- app_
svc_ Appcontainer_ settings Svc Container Settings Response - App Service container settings.
- app_
svc_ Appnative_ settings Svc Native Settings Response - App Service native settings.
- azure_
security_ stroffering_ type - Azure security offering type.
- azure_
location str - Azure Location or Azure region where to which the machines will be migrated.
- billing_
settings BillingSettings Response - Gets or sets the billing settings.
- currency str
- Currency in which prices should be reported.
- discount_
percentage float - Custom discount percentage.
- environment_
type str - Gets or sets user configurable setting to display the environment type.
- performance_
data PerformanceData Response - Gets or sets the performance data.
- savings_
settings SavingsSettings Response - Gets or sets the savings settings.
- scaling_
factor float - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing_
criterion str - Assessment sizing criterion.
- app
Svc Property MapContainer Settings - App Service container settings.
- app
Svc Property MapNative Settings - App Service native settings.
- azure
Security StringOffering Type - Azure security offering type.
- azure
Location String - Azure Location or Azure region where to which the machines will be migrated.
- billing
Settings Property Map - Gets or sets the billing settings.
- currency String
- Currency in which prices should be reported.
- discount
Percentage Number - Custom discount percentage.
- environment
Type String - Gets or sets user configurable setting to display the environment type.
- performance
Data Property Map - Gets or sets the performance data.
- savings
Settings Property Map - Gets or sets the savings settings.
- scaling
Factor Number - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing
Criterion String - Assessment sizing criterion.
WebAppAssessmentV3Properties, WebAppAssessmentV3PropertiesArgs
- Fallback
Machine stringAssessment Arm Id - Gets or sets the machine assessment ARM ID for VM fallback.
- Scope
Pulumi.
Azure Native. Migrate. Inputs. Scope - Gets or sets the scope of assessment.
- Settings
Pulumi.
Azure Native. Migrate. Inputs. Web App Assessment Settings - Gets or sets the settings for the assessment.
- Fallback
Machine stringAssessment Arm Id - Gets or sets the machine assessment ARM ID for VM fallback.
- Scope Scope
- Gets or sets the scope of assessment.
- Settings
Web
App Assessment Settings - Gets or sets the settings for the assessment.
- fallback
Machine StringAssessment Arm Id - Gets or sets the machine assessment ARM ID for VM fallback.
- scope Scope
- Gets or sets the scope of assessment.
- settings
Web
App Assessment Settings - Gets or sets the settings for the assessment.
- fallback
Machine stringAssessment Arm Id - Gets or sets the machine assessment ARM ID for VM fallback.
- scope Scope
- Gets or sets the scope of assessment.
- settings
Web
App Assessment Settings - Gets or sets the settings for the assessment.
- fallback_
machine_ strassessment_ arm_ id - Gets or sets the machine assessment ARM ID for VM fallback.
- scope Scope
- Gets or sets the scope of assessment.
- settings
Web
App Assessment Settings - Gets or sets the settings for the assessment.
- fallback
Machine StringAssessment Arm Id - Gets or sets the machine assessment ARM ID for VM fallback.
- scope Property Map
- Gets or sets the scope of assessment.
- settings Property Map
- Gets or sets the settings for the assessment.
WebAppAssessmentV3PropertiesResponse, WebAppAssessmentV3PropertiesResponseArgs
- Provisioning
State string - The status of the last operation.
- Details
Pulumi.
Azure Native. Migrate. Inputs. Assessment Details Response - Gets or sets the details of the assessment.
- Fallback
Machine stringAssessment Arm Id - Gets or sets the machine assessment ARM ID for VM fallback.
- Scope
Pulumi.
Azure Native. Migrate. Inputs. Scope Response - Gets or sets the scope of assessment.
- Settings
Pulumi.
Azure Native. Migrate. Inputs. Web App Assessment Settings Response - Gets or sets the settings for the assessment.
- Provisioning
State string - The status of the last operation.
- Details
Assessment
Details Response - Gets or sets the details of the assessment.
- Fallback
Machine stringAssessment Arm Id - Gets or sets the machine assessment ARM ID for VM fallback.
- Scope
Scope
Response - Gets or sets the scope of assessment.
- Settings
Web
App Assessment Settings Response - Gets or sets the settings for the assessment.
- provisioning
State String - The status of the last operation.
- details
Assessment
Details Response - Gets or sets the details of the assessment.
- fallback
Machine StringAssessment Arm Id - Gets or sets the machine assessment ARM ID for VM fallback.
- scope
Scope
Response - Gets or sets the scope of assessment.
- settings
Web
App Assessment Settings Response - Gets or sets the settings for the assessment.
- provisioning
State string - The status of the last operation.
- details
Assessment
Details Response - Gets or sets the details of the assessment.
- fallback
Machine stringAssessment Arm Id - Gets or sets the machine assessment ARM ID for VM fallback.
- scope
Scope
Response - Gets or sets the scope of assessment.
- settings
Web
App Assessment Settings Response - Gets or sets the settings for the assessment.
- provisioning_
state str - The status of the last operation.
- details
Assessment
Details Response - Gets or sets the details of the assessment.
- fallback_
machine_ strassessment_ arm_ id - Gets or sets the machine assessment ARM ID for VM fallback.
- scope
Scope
Response - Gets or sets the scope of assessment.
- settings
Web
App Assessment Settings Response - Gets or sets the settings for the assessment.
- provisioning
State String - The status of the last operation.
- details Property Map
- Gets or sets the details of the assessment.
- fallback
Machine StringAssessment Arm Id - Gets or sets the machine assessment ARM ID for VM fallback.
- scope Property Map
- Gets or sets the scope of assessment.
- settings Property Map
- Gets or sets the settings for the assessment.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:migrate:WebAppAssessmentV3Operation assessmentName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/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