published on Wednesday, Mar 4, 2026 by Pulumi
published on Wednesday, Mar 4, 2026 by Pulumi
Machine assessment V2 resource.
Uses Azure REST API version 2024-03-03-preview.
Example Usage
MachineAssessmentsV2Operations_Create_MaximumSet
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var machineAssessmentsV2Operation = new AzureNative.Migrate.MachineAssessmentsV2Operation("machineAssessmentsV2Operation", new()
{
AssessmentName = "assessmentName",
ProjectName = "contosoProject",
Properties = new AzureNative.Migrate.Inputs.MachineAssessmentV2PropertiesArgs
{
Scope = new AzureNative.Migrate.Inputs.ScopeArgs
{
AzureResourceGraphQuery = "hfhwuqalmenpcttboxvo",
ScopeType = AzureNative.Migrate.ScopeType.ServerGroupId,
ServerGroupId = "f",
},
Settings = new AzureNative.Migrate.Inputs.MachineAssessmentSettingsArgs
{
AzureDiskTypes = new[]
{
AzureNative.Migrate.AzureDiskType.Unknown,
},
AzureHybridUseBenefit = AzureNative.Migrate.AzureHybridUseBenefit.Unknown,
AzureLocation = "rsequlcso",
AzurePricingTier = AzureNative.Migrate.AzurePricingTier.Standard,
AzureSecurityOfferingType = AzureNative.Migrate.AzureSecurityOfferingType.NO,
AzureStorageRedundancy = AzureNative.Migrate.AzureStorageRedundancy.Unknown,
AzureVmFamilies = new[]
{
AzureNative.Migrate.AzureVmFamily.Unknown,
},
AzureVmSecurityOptions = new[]
{
AzureNative.Migrate.AzureVmSecurityType.TVM,
},
BillingSettings = new AzureNative.Migrate.Inputs.BillingSettingsArgs
{
LicensingProgram = AzureNative.Migrate.LicensingProgram.Retail,
SubscriptionId = "lee",
},
Currency = AzureNative.Migrate.AzureCurrency.Unknown,
DiscountPercentage = 5,
EnvironmentType = AzureNative.Migrate.EnvironmentType.Production,
LinuxAzureHybridUseBenefit = AzureNative.Migrate.AzureHybridUseBenefit.Unknown,
PerformanceData = new AzureNative.Migrate.Inputs.PerformanceDataArgs
{
Percentile = "Unknown",
PerfDataEndTime = "2025-02-21T05:47:51.336Z",
PerfDataStartTime = "2025-02-21T05:47:51.336Z",
TimeRange = AzureNative.Migrate.TimeRange.Day,
},
SavingsSettings = new AzureNative.Migrate.Inputs.SavingsSettingsArgs
{
AzureOfferCode = AzureNative.Migrate.AzureOffer.Unknown,
SavingsOptions = AzureNative.Migrate.SavingsOptions.None,
},
ScalingFactor = 9,
SizingCriterion = AzureNative.Migrate.AssessmentSizingCriterion.PerformanceBased,
VmUptime = new AzureNative.Migrate.Inputs.VmUptimeArgs
{
DaysPerMonth = 9,
HoursPerDay = 10,
},
},
},
ResourceGroupName = "rgmachineAssessments",
});
});
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.NewMachineAssessmentsV2Operation(ctx, "machineAssessmentsV2Operation", &migrate.MachineAssessmentsV2OperationArgs{
AssessmentName: pulumi.String("assessmentName"),
ProjectName: pulumi.String("contosoProject"),
Properties: &migrate.MachineAssessmentV2PropertiesArgs{
Scope: &migrate.ScopeArgs{
AzureResourceGraphQuery: pulumi.String("hfhwuqalmenpcttboxvo"),
ScopeType: pulumi.String(migrate.ScopeTypeServerGroupId),
ServerGroupId: pulumi.String("f"),
},
Settings: &migrate.MachineAssessmentSettingsArgs{
AzureDiskTypes: pulumi.StringArray{
pulumi.String(migrate.AzureDiskTypeUnknown),
},
AzureHybridUseBenefit: pulumi.String(migrate.AzureHybridUseBenefitUnknown),
AzureLocation: pulumi.String("rsequlcso"),
AzurePricingTier: pulumi.String(migrate.AzurePricingTierStandard),
AzureSecurityOfferingType: pulumi.String(migrate.AzureSecurityOfferingTypeNO),
AzureStorageRedundancy: pulumi.String(migrate.AzureStorageRedundancyUnknown),
AzureVmFamilies: pulumi.StringArray{
pulumi.String(migrate.AzureVmFamilyUnknown),
},
AzureVmSecurityOptions: pulumi.StringArray{
pulumi.String(migrate.AzureVmSecurityTypeTVM),
},
BillingSettings: &migrate.BillingSettingsArgs{
LicensingProgram: pulumi.String(migrate.LicensingProgramRetail),
SubscriptionId: pulumi.String("lee"),
},
Currency: pulumi.String(migrate.AzureCurrencyUnknown),
DiscountPercentage: pulumi.Float64(5),
EnvironmentType: pulumi.String(migrate.EnvironmentTypeProduction),
LinuxAzureHybridUseBenefit: pulumi.String(migrate.AzureHybridUseBenefitUnknown),
PerformanceData: &migrate.PerformanceDataArgs{
Percentile: pulumi.String("Unknown"),
PerfDataEndTime: pulumi.String("2025-02-21T05:47:51.336Z"),
PerfDataStartTime: pulumi.String("2025-02-21T05:47:51.336Z"),
TimeRange: pulumi.String(migrate.TimeRangeDay),
},
SavingsSettings: &migrate.SavingsSettingsArgs{
AzureOfferCode: pulumi.String(migrate.AzureOfferUnknown),
SavingsOptions: pulumi.String(migrate.SavingsOptionsNone),
},
ScalingFactor: pulumi.Float64(9),
SizingCriterion: pulumi.String(migrate.AssessmentSizingCriterionPerformanceBased),
VmUptime: &migrate.VmUptimeArgs{
DaysPerMonth: pulumi.Float64(9),
HoursPerDay: pulumi.Float64(10),
},
},
},
ResourceGroupName: pulumi.String("rgmachineAssessments"),
})
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.MachineAssessmentsV2Operation;
import com.pulumi.azurenative.migrate.MachineAssessmentsV2OperationArgs;
import com.pulumi.azurenative.migrate.inputs.MachineAssessmentV2PropertiesArgs;
import com.pulumi.azurenative.migrate.inputs.ScopeArgs;
import com.pulumi.azurenative.migrate.inputs.MachineAssessmentSettingsArgs;
import com.pulumi.azurenative.migrate.inputs.BillingSettingsArgs;
import com.pulumi.azurenative.migrate.inputs.PerformanceDataArgs;
import com.pulumi.azurenative.migrate.inputs.SavingsSettingsArgs;
import com.pulumi.azurenative.migrate.inputs.VmUptimeArgs;
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 machineAssessmentsV2Operation = new MachineAssessmentsV2Operation("machineAssessmentsV2Operation", MachineAssessmentsV2OperationArgs.builder()
.assessmentName("assessmentName")
.projectName("contosoProject")
.properties(MachineAssessmentV2PropertiesArgs.builder()
.scope(ScopeArgs.builder()
.azureResourceGraphQuery("hfhwuqalmenpcttboxvo")
.scopeType("ServerGroupId")
.serverGroupId("f")
.build())
.settings(MachineAssessmentSettingsArgs.builder()
.azureDiskTypes("Unknown")
.azureHybridUseBenefit("Unknown")
.azureLocation("rsequlcso")
.azurePricingTier("Standard")
.azureSecurityOfferingType("NO")
.azureStorageRedundancy("Unknown")
.azureVmFamilies("Unknown")
.azureVmSecurityOptions("TVM")
.billingSettings(BillingSettingsArgs.builder()
.licensingProgram("Retail")
.subscriptionId("lee")
.build())
.currency("Unknown")
.discountPercentage(5.0)
.environmentType("Production")
.linuxAzureHybridUseBenefit("Unknown")
.performanceData(PerformanceDataArgs.builder()
.percentile("Unknown")
.perfDataEndTime("2025-02-21T05:47:51.336Z")
.perfDataStartTime("2025-02-21T05:47:51.336Z")
.timeRange("Day")
.build())
.savingsSettings(SavingsSettingsArgs.builder()
.azureOfferCode("Unknown")
.savingsOptions("None")
.build())
.scalingFactor(9.0)
.sizingCriterion("PerformanceBased")
.vmUptime(VmUptimeArgs.builder()
.daysPerMonth(9.0)
.hoursPerDay(10.0)
.build())
.build())
.build())
.resourceGroupName("rgmachineAssessments")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const machineAssessmentsV2Operation = new azure_native.migrate.MachineAssessmentsV2Operation("machineAssessmentsV2Operation", {
assessmentName: "assessmentName",
projectName: "contosoProject",
properties: {
scope: {
azureResourceGraphQuery: "hfhwuqalmenpcttboxvo",
scopeType: azure_native.migrate.ScopeType.ServerGroupId,
serverGroupId: "f",
},
settings: {
azureDiskTypes: [azure_native.migrate.AzureDiskType.Unknown],
azureHybridUseBenefit: azure_native.migrate.AzureHybridUseBenefit.Unknown,
azureLocation: "rsequlcso",
azurePricingTier: azure_native.migrate.AzurePricingTier.Standard,
azureSecurityOfferingType: azure_native.migrate.AzureSecurityOfferingType.NO,
azureStorageRedundancy: azure_native.migrate.AzureStorageRedundancy.Unknown,
azureVmFamilies: [azure_native.migrate.AzureVmFamily.Unknown],
azureVmSecurityOptions: [azure_native.migrate.AzureVmSecurityType.TVM],
billingSettings: {
licensingProgram: azure_native.migrate.LicensingProgram.Retail,
subscriptionId: "lee",
},
currency: azure_native.migrate.AzureCurrency.Unknown,
discountPercentage: 5,
environmentType: azure_native.migrate.EnvironmentType.Production,
linuxAzureHybridUseBenefit: azure_native.migrate.AzureHybridUseBenefit.Unknown,
performanceData: {
percentile: "Unknown",
perfDataEndTime: "2025-02-21T05:47:51.336Z",
perfDataStartTime: "2025-02-21T05:47:51.336Z",
timeRange: azure_native.migrate.TimeRange.Day,
},
savingsSettings: {
azureOfferCode: azure_native.migrate.AzureOffer.Unknown,
savingsOptions: azure_native.migrate.SavingsOptions.None,
},
scalingFactor: 9,
sizingCriterion: azure_native.migrate.AssessmentSizingCriterion.PerformanceBased,
vmUptime: {
daysPerMonth: 9,
hoursPerDay: 10,
},
},
},
resourceGroupName: "rgmachineAssessments",
});
import pulumi
import pulumi_azure_native as azure_native
machine_assessments_v2_operation = azure_native.migrate.MachineAssessmentsV2Operation("machineAssessmentsV2Operation",
assessment_name="assessmentName",
project_name="contosoProject",
properties={
"scope": {
"azure_resource_graph_query": "hfhwuqalmenpcttboxvo",
"scope_type": azure_native.migrate.ScopeType.SERVER_GROUP_ID,
"server_group_id": "f",
},
"settings": {
"azure_disk_types": [azure_native.migrate.AzureDiskType.UNKNOWN],
"azure_hybrid_use_benefit": azure_native.migrate.AzureHybridUseBenefit.UNKNOWN,
"azure_location": "rsequlcso",
"azure_pricing_tier": azure_native.migrate.AzurePricingTier.STANDARD,
"azure_security_offering_type": azure_native.migrate.AzureSecurityOfferingType.NO,
"azure_storage_redundancy": azure_native.migrate.AzureStorageRedundancy.UNKNOWN,
"azure_vm_families": [azure_native.migrate.AzureVmFamily.UNKNOWN],
"azure_vm_security_options": [azure_native.migrate.AzureVmSecurityType.TVM],
"billing_settings": {
"licensing_program": azure_native.migrate.LicensingProgram.RETAIL,
"subscription_id": "lee",
},
"currency": azure_native.migrate.AzureCurrency.UNKNOWN,
"discount_percentage": 5,
"environment_type": azure_native.migrate.EnvironmentType.PRODUCTION,
"linux_azure_hybrid_use_benefit": azure_native.migrate.AzureHybridUseBenefit.UNKNOWN,
"performance_data": {
"percentile": "Unknown",
"perf_data_end_time": "2025-02-21T05:47:51.336Z",
"perf_data_start_time": "2025-02-21T05:47:51.336Z",
"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": 9,
"sizing_criterion": azure_native.migrate.AssessmentSizingCriterion.PERFORMANCE_BASED,
"vm_uptime": {
"days_per_month": 9,
"hours_per_day": 10,
},
},
},
resource_group_name="rgmachineAssessments")
resources:
machineAssessmentsV2Operation:
type: azure-native:migrate:MachineAssessmentsV2Operation
properties:
assessmentName: assessmentName
projectName: contosoProject
properties:
scope:
azureResourceGraphQuery: hfhwuqalmenpcttboxvo
scopeType: ServerGroupId
serverGroupId: f
settings:
azureDiskTypes:
- Unknown
azureHybridUseBenefit: Unknown
azureLocation: rsequlcso
azurePricingTier: Standard
azureSecurityOfferingType: NO
azureStorageRedundancy: Unknown
azureVmFamilies:
- Unknown
azureVmSecurityOptions:
- TVM
billingSettings:
licensingProgram: Retail
subscriptionId: lee
currency: Unknown
discountPercentage: 5
environmentType: Production
linuxAzureHybridUseBenefit: Unknown
performanceData:
percentile: Unknown
perfDataEndTime: 2025-02-21T05:47:51.336Z
perfDataStartTime: 2025-02-21T05:47:51.336Z
timeRange: Day
savingsSettings:
azureOfferCode: Unknown
savingsOptions: None
scalingFactor: 9
sizingCriterion: PerformanceBased
vmUptime:
daysPerMonth: 9
hoursPerDay: 10
resourceGroupName: rgmachineAssessments
Create MachineAssessmentsV2Operation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MachineAssessmentsV2Operation(name: string, args: MachineAssessmentsV2OperationArgs, opts?: CustomResourceOptions);@overload
def MachineAssessmentsV2Operation(resource_name: str,
args: MachineAssessmentsV2OperationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MachineAssessmentsV2Operation(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[MachineAssessmentV2PropertiesArgs] = None)func NewMachineAssessmentsV2Operation(ctx *Context, name string, args MachineAssessmentsV2OperationArgs, opts ...ResourceOption) (*MachineAssessmentsV2Operation, error)public MachineAssessmentsV2Operation(string name, MachineAssessmentsV2OperationArgs args, CustomResourceOptions? opts = null)
public MachineAssessmentsV2Operation(String name, MachineAssessmentsV2OperationArgs args)
public MachineAssessmentsV2Operation(String name, MachineAssessmentsV2OperationArgs args, CustomResourceOptions options)
type: azure-native:migrate:MachineAssessmentsV2Operation
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 MachineAssessmentsV2OperationArgs
- 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 MachineAssessmentsV2OperationArgs
- 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 MachineAssessmentsV2OperationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MachineAssessmentsV2OperationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MachineAssessmentsV2OperationArgs
- 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 machineAssessmentsV2OperationResource = new AzureNative.Migrate.MachineAssessmentsV2Operation("machineAssessmentsV2OperationResource", new()
{
ProjectName = "string",
ResourceGroupName = "string",
AssessmentName = "string",
Properties = new AzureNative.Migrate.Inputs.MachineAssessmentV2PropertiesArgs
{
Scope = new AzureNative.Migrate.Inputs.ScopeArgs
{
AzureResourceGraphQuery = "string",
ScopeType = "string",
ServerGroupId = "string",
},
Settings = new AzureNative.Migrate.Inputs.MachineAssessmentSettingsArgs
{
AzureDiskTypes = new[]
{
"string",
},
AzureHybridUseBenefit = "string",
AzureLocation = "string",
AzurePricingTier = "string",
AzureSecurityOfferingType = "string",
AzureStorageRedundancy = "string",
AzureVmFamilies = new[]
{
"string",
},
AzureVmSecurityOptions = new[]
{
"string",
},
BillingSettings = new AzureNative.Migrate.Inputs.BillingSettingsArgs
{
LicensingProgram = "string",
SubscriptionId = "string",
},
Currency = "string",
DiscountPercentage = 0,
EnvironmentType = "string",
LinuxAzureHybridUseBenefit = "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",
VmUptime = new AzureNative.Migrate.Inputs.VmUptimeArgs
{
DaysPerMonth = 0,
HoursPerDay = 0,
},
},
},
});
example, err := migrate.NewMachineAssessmentsV2Operation(ctx, "machineAssessmentsV2OperationResource", &migrate.MachineAssessmentsV2OperationArgs{
ProjectName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
AssessmentName: pulumi.String("string"),
Properties: &migrate.MachineAssessmentV2PropertiesArgs{
Scope: &migrate.ScopeArgs{
AzureResourceGraphQuery: pulumi.String("string"),
ScopeType: pulumi.String("string"),
ServerGroupId: pulumi.String("string"),
},
Settings: &migrate.MachineAssessmentSettingsArgs{
AzureDiskTypes: pulumi.StringArray{
pulumi.String("string"),
},
AzureHybridUseBenefit: pulumi.String("string"),
AzureLocation: pulumi.String("string"),
AzurePricingTier: pulumi.String("string"),
AzureSecurityOfferingType: pulumi.String("string"),
AzureStorageRedundancy: pulumi.String("string"),
AzureVmFamilies: pulumi.StringArray{
pulumi.String("string"),
},
AzureVmSecurityOptions: pulumi.StringArray{
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"),
LinuxAzureHybridUseBenefit: 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"),
VmUptime: &migrate.VmUptimeArgs{
DaysPerMonth: pulumi.Float64(0),
HoursPerDay: pulumi.Float64(0),
},
},
},
})
var machineAssessmentsV2OperationResource = new MachineAssessmentsV2Operation("machineAssessmentsV2OperationResource", MachineAssessmentsV2OperationArgs.builder()
.projectName("string")
.resourceGroupName("string")
.assessmentName("string")
.properties(MachineAssessmentV2PropertiesArgs.builder()
.scope(ScopeArgs.builder()
.azureResourceGraphQuery("string")
.scopeType("string")
.serverGroupId("string")
.build())
.settings(MachineAssessmentSettingsArgs.builder()
.azureDiskTypes("string")
.azureHybridUseBenefit("string")
.azureLocation("string")
.azurePricingTier("string")
.azureSecurityOfferingType("string")
.azureStorageRedundancy("string")
.azureVmFamilies("string")
.azureVmSecurityOptions("string")
.billingSettings(BillingSettingsArgs.builder()
.licensingProgram("string")
.subscriptionId("string")
.build())
.currency("string")
.discountPercentage(0.0)
.environmentType("string")
.linuxAzureHybridUseBenefit("string")
.performanceData(PerformanceDataArgs.builder()
.percentile("string")
.perfDataEndTime("string")
.perfDataStartTime("string")
.timeRange("string")
.build())
.savingsSettings(SavingsSettingsArgs.builder()
.azureOfferCode("string")
.savingsOptions("string")
.build())
.scalingFactor(0.0)
.sizingCriterion("string")
.vmUptime(VmUptimeArgs.builder()
.daysPerMonth(0.0)
.hoursPerDay(0.0)
.build())
.build())
.build())
.build());
machine_assessments_v2_operation_resource = azure_native.migrate.MachineAssessmentsV2Operation("machineAssessmentsV2OperationResource",
project_name="string",
resource_group_name="string",
assessment_name="string",
properties={
"scope": {
"azure_resource_graph_query": "string",
"scope_type": "string",
"server_group_id": "string",
},
"settings": {
"azure_disk_types": ["string"],
"azure_hybrid_use_benefit": "string",
"azure_location": "string",
"azure_pricing_tier": "string",
"azure_security_offering_type": "string",
"azure_storage_redundancy": "string",
"azure_vm_families": ["string"],
"azure_vm_security_options": ["string"],
"billing_settings": {
"licensing_program": "string",
"subscription_id": "string",
},
"currency": "string",
"discount_percentage": 0,
"environment_type": "string",
"linux_azure_hybrid_use_benefit": "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",
"vm_uptime": {
"days_per_month": 0,
"hours_per_day": 0,
},
},
})
const machineAssessmentsV2OperationResource = new azure_native.migrate.MachineAssessmentsV2Operation("machineAssessmentsV2OperationResource", {
projectName: "string",
resourceGroupName: "string",
assessmentName: "string",
properties: {
scope: {
azureResourceGraphQuery: "string",
scopeType: "string",
serverGroupId: "string",
},
settings: {
azureDiskTypes: ["string"],
azureHybridUseBenefit: "string",
azureLocation: "string",
azurePricingTier: "string",
azureSecurityOfferingType: "string",
azureStorageRedundancy: "string",
azureVmFamilies: ["string"],
azureVmSecurityOptions: ["string"],
billingSettings: {
licensingProgram: "string",
subscriptionId: "string",
},
currency: "string",
discountPercentage: 0,
environmentType: "string",
linuxAzureHybridUseBenefit: "string",
performanceData: {
percentile: "string",
perfDataEndTime: "string",
perfDataStartTime: "string",
timeRange: "string",
},
savingsSettings: {
azureOfferCode: "string",
savingsOptions: "string",
},
scalingFactor: 0,
sizingCriterion: "string",
vmUptime: {
daysPerMonth: 0,
hoursPerDay: 0,
},
},
},
});
type: azure-native:migrate:MachineAssessmentsV2Operation
properties:
assessmentName: string
projectName: string
properties:
scope:
azureResourceGraphQuery: string
scopeType: string
serverGroupId: string
settings:
azureDiskTypes:
- string
azureHybridUseBenefit: string
azureLocation: string
azurePricingTier: string
azureSecurityOfferingType: string
azureStorageRedundancy: string
azureVmFamilies:
- string
azureVmSecurityOptions:
- string
billingSettings:
licensingProgram: string
subscriptionId: string
currency: string
discountPercentage: 0
environmentType: string
linuxAzureHybridUseBenefit: string
performanceData:
percentile: string
perfDataEndTime: string
perfDataStartTime: string
timeRange: string
savingsSettings:
azureOfferCode: string
savingsOptions: string
scalingFactor: 0
sizingCriterion: string
vmUptime:
daysPerMonth: 0
hoursPerDay: 0
resourceGroupName: string
MachineAssessmentsV2Operation 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 MachineAssessmentsV2Operation 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 - Machine Assessment V2 ARM name
- Properties
Pulumi.
Azure Native. Migrate. Inputs. Machine Assessment V2Properties - 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 - Machine Assessment V2 ARM name
- Properties
Machine
Assessment V2Properties 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 - Machine Assessment V2 ARM name
- properties
Machine
Assessment V2Properties - 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 - Machine Assessment V2 ARM name
- properties
Machine
Assessment V2Properties - 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 - Machine Assessment V2 ARM name
- properties
Machine
Assessment V2Properties 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 - Machine Assessment V2 ARM name
- properties Property Map
- The resource-specific properties for this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the MachineAssessmentsV2Operation 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
AssessmentDetailsResponse, AssessmentDetailsResponseArgs
Assessment details class.- 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
AzureDiskType, AzureDiskTypeArgs
- Unknown
UnknownUnknown Azure Disk Type- Standard
StandardStandard Azure Disk Type- Standard
SSD StandardSSDStandardSSD Azure Disk Type- Premium
PremiumPremium Azure Disk Type- Standard
Or Premium StandardOrPremiumStandardOrPremium Azure Disk Type- Ultra
UltraUltra Azure Disk Type- Premium
V2 PremiumV2PremiumV2 Azure Disk Type
- Azure
Disk Type Unknown UnknownUnknown Azure Disk Type- Azure
Disk Type Standard StandardStandard Azure Disk Type- Azure
Disk Type Standard SSD StandardSSDStandardSSD Azure Disk Type- Azure
Disk Type Premium PremiumPremium Azure Disk Type- Azure
Disk Type Standard Or Premium StandardOrPremiumStandardOrPremium Azure Disk Type- Azure
Disk Type Ultra UltraUltra Azure Disk Type- Azure
Disk Type Premium V2 PremiumV2PremiumV2 Azure Disk Type
- Unknown
UnknownUnknown Azure Disk Type- Standard
StandardStandard Azure Disk Type- Standard
SSD StandardSSDStandardSSD Azure Disk Type- Premium
PremiumPremium Azure Disk Type- Standard
Or Premium StandardOrPremiumStandardOrPremium Azure Disk Type- Ultra
UltraUltra Azure Disk Type- Premium
V2 PremiumV2PremiumV2 Azure Disk Type
- Unknown
UnknownUnknown Azure Disk Type- Standard
StandardStandard Azure Disk Type- Standard
SSD StandardSSDStandardSSD Azure Disk Type- Premium
PremiumPremium Azure Disk Type- Standard
Or Premium StandardOrPremiumStandardOrPremium Azure Disk Type- Ultra
UltraUltra Azure Disk Type- Premium
V2 PremiumV2PremiumV2 Azure Disk Type
- UNKNOWN
UnknownUnknown Azure Disk Type- STANDARD
StandardStandard Azure Disk Type- STANDARD_SSD
StandardSSDStandardSSD Azure Disk Type- PREMIUM
PremiumPremium Azure Disk Type- STANDARD_OR_PREMIUM
StandardOrPremiumStandardOrPremium Azure Disk Type- ULTRA
UltraUltra Azure Disk Type- PREMIUM_V2
PremiumV2PremiumV2 Azure Disk Type
- "Unknown"
UnknownUnknown Azure Disk Type- "Standard"
StandardStandard Azure Disk Type- "Standard
SSD" StandardSSDStandardSSD Azure Disk Type- "Premium"
PremiumPremium Azure Disk Type- "Standard
Or Premium" StandardOrPremiumStandardOrPremium Azure Disk Type- "Ultra"
UltraUltra Azure Disk Type- "Premium
V2" PremiumV2PremiumV2 Azure Disk Type
AzureHybridUseBenefit, AzureHybridUseBenefitArgs
- Unknown
UnknownUnknown Azure Hybrid Use Benefit- Yes
YesYes Azure Hybrid Use Benefit- No
NoNo Azure Hybrid Use Benefit
- Azure
Hybrid Use Benefit Unknown UnknownUnknown Azure Hybrid Use Benefit- Azure
Hybrid Use Benefit Yes YesYes Azure Hybrid Use Benefit- Azure
Hybrid Use Benefit No NoNo Azure Hybrid Use Benefit
- Unknown
UnknownUnknown Azure Hybrid Use Benefit- Yes
YesYes Azure Hybrid Use Benefit- No
NoNo Azure Hybrid Use Benefit
- Unknown
UnknownUnknown Azure Hybrid Use Benefit- Yes
YesYes Azure Hybrid Use Benefit- No
NoNo Azure Hybrid Use Benefit
- UNKNOWN
UnknownUnknown Azure Hybrid Use Benefit- YES
YesYes Azure Hybrid Use Benefit- NO
NoNo Azure Hybrid Use Benefit
- "Unknown"
UnknownUnknown Azure Hybrid Use Benefit- "Yes"
YesYes Azure Hybrid Use Benefit- "No"
NoNo Azure Hybrid Use Benefit
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
AzurePricingTier, AzurePricingTierArgs
- Standard
StandardStandard Azure Pricing Tier- Basic
BasicBasic Azure Pricing Tier
- Azure
Pricing Tier Standard StandardStandard Azure Pricing Tier- Azure
Pricing Tier Basic BasicBasic Azure Pricing Tier
- Standard
StandardStandard Azure Pricing Tier- Basic
BasicBasic Azure Pricing Tier
- Standard
StandardStandard Azure Pricing Tier- Basic
BasicBasic Azure Pricing Tier
- STANDARD
StandardStandard Azure Pricing Tier- BASIC
BasicBasic Azure Pricing Tier
- "Standard"
StandardStandard Azure Pricing Tier- "Basic"
BasicBasic Azure Pricing Tier
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
AzureStorageRedundancy, AzureStorageRedundancyArgs
- Unknown
UnknownUnknown Azure Storage Redundancy- Locally
Redundant LocallyRedundantLocallyRedundant Azure Storage Redundancy- Zone
Redundant ZoneRedundantZoneRedundant Azure Storage Redundancy- Geo
Redundant GeoRedundantGeoRedundant Azure Storage Redundancy- Read
Access Geo Redundant ReadAccessGeoRedundantReadAccessGeoRedundant Azure Storage Redundancy
- Azure
Storage Redundancy Unknown UnknownUnknown Azure Storage Redundancy- Azure
Storage Redundancy Locally Redundant LocallyRedundantLocallyRedundant Azure Storage Redundancy- Azure
Storage Redundancy Zone Redundant ZoneRedundantZoneRedundant Azure Storage Redundancy- Azure
Storage Redundancy Geo Redundant GeoRedundantGeoRedundant Azure Storage Redundancy- Azure
Storage Redundancy Read Access Geo Redundant ReadAccessGeoRedundantReadAccessGeoRedundant Azure Storage Redundancy
- Unknown
UnknownUnknown Azure Storage Redundancy- Locally
Redundant LocallyRedundantLocallyRedundant Azure Storage Redundancy- Zone
Redundant ZoneRedundantZoneRedundant Azure Storage Redundancy- Geo
Redundant GeoRedundantGeoRedundant Azure Storage Redundancy- Read
Access Geo Redundant ReadAccessGeoRedundantReadAccessGeoRedundant Azure Storage Redundancy
- Unknown
UnknownUnknown Azure Storage Redundancy- Locally
Redundant LocallyRedundantLocallyRedundant Azure Storage Redundancy- Zone
Redundant ZoneRedundantZoneRedundant Azure Storage Redundancy- Geo
Redundant GeoRedundantGeoRedundant Azure Storage Redundancy- Read
Access Geo Redundant ReadAccessGeoRedundantReadAccessGeoRedundant Azure Storage Redundancy
- UNKNOWN
UnknownUnknown Azure Storage Redundancy- LOCALLY_REDUNDANT
LocallyRedundantLocallyRedundant Azure Storage Redundancy- ZONE_REDUNDANT
ZoneRedundantZoneRedundant Azure Storage Redundancy- GEO_REDUNDANT
GeoRedundantGeoRedundant Azure Storage Redundancy- READ_ACCESS_GEO_REDUNDANT
ReadAccessGeoRedundantReadAccessGeoRedundant Azure Storage Redundancy
- "Unknown"
UnknownUnknown Azure Storage Redundancy- "Locally
Redundant" LocallyRedundantLocallyRedundant Azure Storage Redundancy- "Zone
Redundant" ZoneRedundantZoneRedundant Azure Storage Redundancy- "Geo
Redundant" GeoRedundantGeoRedundant Azure Storage Redundancy- "Read
Access Geo Redundant" ReadAccessGeoRedundantReadAccessGeoRedundant Azure Storage Redundancy
AzureVmFamily, AzureVmFamilyArgs
- Unknown
UnknownUnknown - Azure VM Family- Basic
A0A4 Basic_A0_A4Basic_A0_A4- Standard
A0A7 Standard_A0_A7Standard_A0_A7- Standard
A8A11 Standard_A8_A11Standard_A8_A11- Av2Series
Av2_seriesAv2_series- DSeries
D_seriesD_series- Dv2Series
Dv2_seriesDv2_series- DSSeries
DS_seriesDS_series- DSv2Series
DSv2_seriesDSv2_series- FSeries
F_seriesF_series- Fs
Series Fs_seriesFs_series- GSeries
G_seriesG_series- GSSeries
GS_seriesGS_series- HSeries
H_seriesH_series- Ls
Series Ls_seriesLs_series- Dsv3Series
Dsv3_seriesDsv3_series- Dv3Series
Dv3_seriesDv3_series- Fsv2Series
Fsv2_seriesFsv2_series- Ev3Series
Ev3_seriesEv3_series- Esv3Series
Esv3_seriesEsv3_series- MSeries
M_seriesM_series- DCSeries
DC_SeriesDC_Series- Lsv2Series
Lsv2_seriesLsv2_series- Ev4Series
Ev4_seriesEv4_series- Esv4Series
Esv4_seriesEsv4_series- Edv4Series
Edv4_seriesEdv4_series- Edsv4Series
Edsv4_seriesEdsv4_series- Dv4Series
Dv4_seriesDv4_series- Dsv4Series
Dsv4_seriesDsv4_series- Ddv4Series
Ddv4_seriesDdv4_series- Ddsv4Series
Ddsv4_seriesDdsv4_series- Easv4Series
Easv4_seriesEasv4_series- Dasv4Series
Dasv4_seriesDasv4_series- Mv2Series
Mv2_seriesMv2_series- Eav4Series
Eav4_seriesEav4_series- Dav4Series
Dav4_seriesDav4_series- Msv2Series
Msv2_seriesMsv2_series- Mdsv2Series
Mdsv2_seriesMdsv2_series- Dv5Series
Dv5_seriesDv5_series- Dsv5Series
Dsv5_seriesDsv5_series- Ddv5Series
Ddv5_seriesDdv5_series- Ddsv5Series
Ddsv5_seriesDdsv5_series- Dasv5Series
Dasv5_seriesDasv5_series- Dadsv5Series
Dadsv5_seriesDadsv5_series- Ev5Series
Ev5_seriesEv5_series- Esv5Series
Esv5_seriesEsv5_series- Edv5Series
Edv5_seriesEdv5_series- Edsv5Series
Edsv5_seriesEdsv5_series- Easv5Series
Easv5_seriesEasv5_series- Eadsv5Series
Eadsv5_seriesEadsv5_series- Ebsv5Series
Ebsv5_seriesEbsv5_series- Ebdsv5Series
Ebdsv5_seriesEbdsv5_series
- Azure
Vm Family Unknown UnknownUnknown - Azure VM Family- Azure
Vm Family Basic A0A4 Basic_A0_A4Basic_A0_A4- Azure
Vm Family Standard A0A7 Standard_A0_A7Standard_A0_A7- Azure
Vm Family Standard A8A11 Standard_A8_A11Standard_A8_A11- Azure
Vm Family Av2Series Av2_seriesAv2_series- Azure
Vm Family DSeries D_seriesD_series- Azure
Vm Family Dv2Series Dv2_seriesDv2_series- Azure
Vm Family DSSeries DS_seriesDS_series- Azure
Vm Family DSv2Series DSv2_seriesDSv2_series- Azure
Vm Family FSeries F_seriesF_series- Azure
Vm Family Fs Series Fs_seriesFs_series- Azure
Vm Family GSeries G_seriesG_series- Azure
Vm Family GSSeries GS_seriesGS_series- Azure
Vm Family HSeries H_seriesH_series- Azure
Vm Family Ls Series Ls_seriesLs_series- Azure
Vm Family Dsv3Series Dsv3_seriesDsv3_series- Azure
Vm Family Dv3Series Dv3_seriesDv3_series- Azure
Vm Family Fsv2Series Fsv2_seriesFsv2_series- Azure
Vm Family Ev3Series Ev3_seriesEv3_series- Azure
Vm Family Esv3Series Esv3_seriesEsv3_series- Azure
Vm Family MSeries M_seriesM_series- Azure
Vm Family DCSeries DC_SeriesDC_Series- Azure
Vm Family Lsv2Series Lsv2_seriesLsv2_series- Azure
Vm Family Ev4Series Ev4_seriesEv4_series- Azure
Vm Family Esv4Series Esv4_seriesEsv4_series- Azure
Vm Family Edv4Series Edv4_seriesEdv4_series- Azure
Vm Family Edsv4Series Edsv4_seriesEdsv4_series- Azure
Vm Family Dv4Series Dv4_seriesDv4_series- Azure
Vm Family Dsv4Series Dsv4_seriesDsv4_series- Azure
Vm Family Ddv4Series Ddv4_seriesDdv4_series- Azure
Vm Family Ddsv4Series Ddsv4_seriesDdsv4_series- Azure
Vm Family Easv4Series Easv4_seriesEasv4_series- Azure
Vm Family Dasv4Series Dasv4_seriesDasv4_series- Azure
Vm Family Mv2Series Mv2_seriesMv2_series- Azure
Vm Family Eav4Series Eav4_seriesEav4_series- Azure
Vm Family Dav4Series Dav4_seriesDav4_series- Azure
Vm Family Msv2Series Msv2_seriesMsv2_series- Azure
Vm Family Mdsv2Series Mdsv2_seriesMdsv2_series- Azure
Vm Family Dv5Series Dv5_seriesDv5_series- Azure
Vm Family Dsv5Series Dsv5_seriesDsv5_series- Azure
Vm Family Ddv5Series Ddv5_seriesDdv5_series- Azure
Vm Family Ddsv5Series Ddsv5_seriesDdsv5_series- Azure
Vm Family Dasv5Series Dasv5_seriesDasv5_series- Azure
Vm Family Dadsv5Series Dadsv5_seriesDadsv5_series- Azure
Vm Family Ev5Series Ev5_seriesEv5_series- Azure
Vm Family Esv5Series Esv5_seriesEsv5_series- Azure
Vm Family Edv5Series Edv5_seriesEdv5_series- Azure
Vm Family Edsv5Series Edsv5_seriesEdsv5_series- Azure
Vm Family Easv5Series Easv5_seriesEasv5_series- Azure
Vm Family Eadsv5Series Eadsv5_seriesEadsv5_series- Azure
Vm Family Ebsv5Series Ebsv5_seriesEbsv5_series- Azure
Vm Family Ebdsv5Series Ebdsv5_seriesEbdsv5_series
- Unknown
UnknownUnknown - Azure VM Family- Basic
A0A4 Basic_A0_A4Basic_A0_A4- Standard
A0A7 Standard_A0_A7Standard_A0_A7- Standard
A8A11 Standard_A8_A11Standard_A8_A11- Av2Series
Av2_seriesAv2_series- DSeries
D_seriesD_series- Dv2Series
Dv2_seriesDv2_series- DSSeries
DS_seriesDS_series- DSv2Series
DSv2_seriesDSv2_series- FSeries
F_seriesF_series- Fs
Series Fs_seriesFs_series- GSeries
G_seriesG_series- GSSeries
GS_seriesGS_series- HSeries
H_seriesH_series- Ls
Series Ls_seriesLs_series- Dsv3Series
Dsv3_seriesDsv3_series- Dv3Series
Dv3_seriesDv3_series- Fsv2Series
Fsv2_seriesFsv2_series- Ev3Series
Ev3_seriesEv3_series- Esv3Series
Esv3_seriesEsv3_series- MSeries
M_seriesM_series- DCSeries
DC_SeriesDC_Series- Lsv2Series
Lsv2_seriesLsv2_series- Ev4Series
Ev4_seriesEv4_series- Esv4Series
Esv4_seriesEsv4_series- Edv4Series
Edv4_seriesEdv4_series- Edsv4Series
Edsv4_seriesEdsv4_series- Dv4Series
Dv4_seriesDv4_series- Dsv4Series
Dsv4_seriesDsv4_series- Ddv4Series
Ddv4_seriesDdv4_series- Ddsv4Series
Ddsv4_seriesDdsv4_series- Easv4Series
Easv4_seriesEasv4_series- Dasv4Series
Dasv4_seriesDasv4_series- Mv2Series
Mv2_seriesMv2_series- Eav4Series
Eav4_seriesEav4_series- Dav4Series
Dav4_seriesDav4_series- Msv2Series
Msv2_seriesMsv2_series- Mdsv2Series
Mdsv2_seriesMdsv2_series- Dv5Series
Dv5_seriesDv5_series- Dsv5Series
Dsv5_seriesDsv5_series- Ddv5Series
Ddv5_seriesDdv5_series- Ddsv5Series
Ddsv5_seriesDdsv5_series- Dasv5Series
Dasv5_seriesDasv5_series- Dadsv5Series
Dadsv5_seriesDadsv5_series- Ev5Series
Ev5_seriesEv5_series- Esv5Series
Esv5_seriesEsv5_series- Edv5Series
Edv5_seriesEdv5_series- Edsv5Series
Edsv5_seriesEdsv5_series- Easv5Series
Easv5_seriesEasv5_series- Eadsv5Series
Eadsv5_seriesEadsv5_series- Ebsv5Series
Ebsv5_seriesEbsv5_series- Ebdsv5Series
Ebdsv5_seriesEbdsv5_series
- Unknown
UnknownUnknown - Azure VM Family- Basic
A0A4 Basic_A0_A4Basic_A0_A4- Standard
A0A7 Standard_A0_A7Standard_A0_A7- Standard
A8A11 Standard_A8_A11Standard_A8_A11- Av2Series
Av2_seriesAv2_series- DSeries
D_seriesD_series- Dv2Series
Dv2_seriesDv2_series- DSSeries
DS_seriesDS_series- DSv2Series
DSv2_seriesDSv2_series- FSeries
F_seriesF_series- Fs
Series Fs_seriesFs_series- GSeries
G_seriesG_series- GSSeries
GS_seriesGS_series- HSeries
H_seriesH_series- Ls
Series Ls_seriesLs_series- Dsv3Series
Dsv3_seriesDsv3_series- Dv3Series
Dv3_seriesDv3_series- Fsv2Series
Fsv2_seriesFsv2_series- Ev3Series
Ev3_seriesEv3_series- Esv3Series
Esv3_seriesEsv3_series- MSeries
M_seriesM_series- DCSeries
DC_SeriesDC_Series- Lsv2Series
Lsv2_seriesLsv2_series- Ev4Series
Ev4_seriesEv4_series- Esv4Series
Esv4_seriesEsv4_series- Edv4Series
Edv4_seriesEdv4_series- Edsv4Series
Edsv4_seriesEdsv4_series- Dv4Series
Dv4_seriesDv4_series- Dsv4Series
Dsv4_seriesDsv4_series- Ddv4Series
Ddv4_seriesDdv4_series- Ddsv4Series
Ddsv4_seriesDdsv4_series- Easv4Series
Easv4_seriesEasv4_series- Dasv4Series
Dasv4_seriesDasv4_series- Mv2Series
Mv2_seriesMv2_series- Eav4Series
Eav4_seriesEav4_series- Dav4Series
Dav4_seriesDav4_series- Msv2Series
Msv2_seriesMsv2_series- Mdsv2Series
Mdsv2_seriesMdsv2_series- Dv5Series
Dv5_seriesDv5_series- Dsv5Series
Dsv5_seriesDsv5_series- Ddv5Series
Ddv5_seriesDdv5_series- Ddsv5Series
Ddsv5_seriesDdsv5_series- Dasv5Series
Dasv5_seriesDasv5_series- Dadsv5Series
Dadsv5_seriesDadsv5_series- Ev5Series
Ev5_seriesEv5_series- Esv5Series
Esv5_seriesEsv5_series- Edv5Series
Edv5_seriesEdv5_series- Edsv5Series
Edsv5_seriesEdsv5_series- Easv5Series
Easv5_seriesEasv5_series- Eadsv5Series
Eadsv5_seriesEadsv5_series- Ebsv5Series
Ebsv5_seriesEbsv5_series- Ebdsv5Series
Ebdsv5_seriesEbdsv5_series
- UNKNOWN
UnknownUnknown - Azure VM Family- BASIC_A0_A4
Basic_A0_A4Basic_A0_A4- STANDARD_A0_A7
Standard_A0_A7Standard_A0_A7- STANDARD_A8_A11
Standard_A8_A11Standard_A8_A11- AV2_SERIES
Av2_seriesAv2_series- D_SERIES
D_seriesD_series- DV2_SERIES
Dv2_seriesDv2_series- DS_SERIES
DS_seriesDS_series- D_SV2_SERIES
DSv2_seriesDSv2_series- F_SERIES
F_seriesF_series- FS_SERIES
Fs_seriesFs_series- G_SERIES
G_seriesG_series- GS_SERIES
GS_seriesGS_series- H_SERIES
H_seriesH_series- LS_SERIES
Ls_seriesLs_series- DSV3_SERIES
Dsv3_seriesDsv3_series- DV3_SERIES
Dv3_seriesDv3_series- FSV2_SERIES
Fsv2_seriesFsv2_series- EV3_SERIES
Ev3_seriesEv3_series- ESV3_SERIES
Esv3_seriesEsv3_series- M_SERIES
M_seriesM_series- DC_SERIES
DC_SeriesDC_Series- LSV2_SERIES
Lsv2_seriesLsv2_series- EV4_SERIES
Ev4_seriesEv4_series- ESV4_SERIES
Esv4_seriesEsv4_series- EDV4_SERIES
Edv4_seriesEdv4_series- EDSV4_SERIES
Edsv4_seriesEdsv4_series- DV4_SERIES
Dv4_seriesDv4_series- DSV4_SERIES
Dsv4_seriesDsv4_series- DDV4_SERIES
Ddv4_seriesDdv4_series- DDSV4_SERIES
Ddsv4_seriesDdsv4_series- EASV4_SERIES
Easv4_seriesEasv4_series- DASV4_SERIES
Dasv4_seriesDasv4_series- MV2_SERIES
Mv2_seriesMv2_series- EAV4_SERIES
Eav4_seriesEav4_series- DAV4_SERIES
Dav4_seriesDav4_series- MSV2_SERIES
Msv2_seriesMsv2_series- MDSV2_SERIES
Mdsv2_seriesMdsv2_series- DV5_SERIES
Dv5_seriesDv5_series- DSV5_SERIES
Dsv5_seriesDsv5_series- DDV5_SERIES
Ddv5_seriesDdv5_series- DDSV5_SERIES
Ddsv5_seriesDdsv5_series- DASV5_SERIES
Dasv5_seriesDasv5_series- DADSV5_SERIES
Dadsv5_seriesDadsv5_series- EV5_SERIES
Ev5_seriesEv5_series- ESV5_SERIES
Esv5_seriesEsv5_series- EDV5_SERIES
Edv5_seriesEdv5_series- EDSV5_SERIES
Edsv5_seriesEdsv5_series- EASV5_SERIES
Easv5_seriesEasv5_series- EADSV5_SERIES
Eadsv5_seriesEadsv5_series- EBSV5_SERIES
Ebsv5_seriesEbsv5_series- EBDSV5_SERIES
Ebdsv5_seriesEbdsv5_series
- "Unknown"
UnknownUnknown - Azure VM Family- "Basic_A0_A4"
Basic_A0_A4Basic_A0_A4- "Standard_A0_A7"
Standard_A0_A7Standard_A0_A7- "Standard_A8_A11"
Standard_A8_A11Standard_A8_A11- "Av2_
series" Av2_seriesAv2_series- "D_
series" D_seriesD_series- "Dv2_
series" Dv2_seriesDv2_series- "DS_
series" DS_seriesDS_series- "DSv2_
series" DSv2_seriesDSv2_series- "F_
series" F_seriesF_series- "Fs_
series" Fs_seriesFs_series- "G_
series" G_seriesG_series- "GS_
series" GS_seriesGS_series- "H_
series" H_seriesH_series- "Ls_
series" Ls_seriesLs_series- "Dsv3_
series" Dsv3_seriesDsv3_series- "Dv3_
series" Dv3_seriesDv3_series- "Fsv2_
series" Fsv2_seriesFsv2_series- "Ev3_
series" Ev3_seriesEv3_series- "Esv3_
series" Esv3_seriesEsv3_series- "M_
series" M_seriesM_series- "DC_Series"
DC_SeriesDC_Series- "Lsv2_
series" Lsv2_seriesLsv2_series- "Ev4_
series" Ev4_seriesEv4_series- "Esv4_
series" Esv4_seriesEsv4_series- "Edv4_
series" Edv4_seriesEdv4_series- "Edsv4_
series" Edsv4_seriesEdsv4_series- "Dv4_
series" Dv4_seriesDv4_series- "Dsv4_
series" Dsv4_seriesDsv4_series- "Ddv4_
series" Ddv4_seriesDdv4_series- "Ddsv4_
series" Ddsv4_seriesDdsv4_series- "Easv4_
series" Easv4_seriesEasv4_series- "Dasv4_
series" Dasv4_seriesDasv4_series- "Mv2_
series" Mv2_seriesMv2_series- "Eav4_
series" Eav4_seriesEav4_series- "Dav4_
series" Dav4_seriesDav4_series- "Msv2_
series" Msv2_seriesMsv2_series- "Mdsv2_
series" Mdsv2_seriesMdsv2_series- "Dv5_
series" Dv5_seriesDv5_series- "Dsv5_
series" Dsv5_seriesDsv5_series- "Ddv5_
series" Ddv5_seriesDdv5_series- "Ddsv5_
series" Ddsv5_seriesDdsv5_series- "Dasv5_
series" Dasv5_seriesDasv5_series- "Dadsv5_
series" Dadsv5_seriesDadsv5_series- "Ev5_
series" Ev5_seriesEv5_series- "Esv5_
series" Esv5_seriesEsv5_series- "Edv5_
series" Edv5_seriesEdv5_series- "Edsv5_
series" Edsv5_seriesEdsv5_series- "Easv5_
series" Easv5_seriesEasv5_series- "Eadsv5_
series" Eadsv5_seriesEadsv5_series- "Ebsv5_
series" Ebsv5_seriesEbsv5_series- "Ebdsv5_
series" Ebdsv5_seriesEbdsv5_series
AzureVmSecurityType, AzureVmSecurityTypeArgs
- Unknown
UnknownUnknown - Azure Vm Security Type- Standard
StandardStandard Azure Vm Security Type- TVM
TVMTVM Azure Vm Security Type- CVM
CVMCVM Azure Vm Security Type
- Azure
Vm Security Type Unknown UnknownUnknown - Azure Vm Security Type- Azure
Vm Security Type Standard StandardStandard Azure Vm Security Type- Azure
Vm Security Type TVM TVMTVM Azure Vm Security Type- Azure
Vm Security Type CVM CVMCVM Azure Vm Security Type
- Unknown
UnknownUnknown - Azure Vm Security Type- Standard
StandardStandard Azure Vm Security Type- TVM
TVMTVM Azure Vm Security Type- CVM
CVMCVM Azure Vm Security Type
- Unknown
UnknownUnknown - Azure Vm Security Type- Standard
StandardStandard Azure Vm Security Type- TVM
TVMTVM Azure Vm Security Type- CVM
CVMCVM Azure Vm Security Type
- UNKNOWN
UnknownUnknown - Azure Vm Security Type- STANDARD
StandardStandard Azure Vm Security Type- TVM
TVMTVM Azure Vm Security Type- CVM
CVMCVM Azure Vm Security Type
- "Unknown"
UnknownUnknown - Azure Vm Security Type- "Standard"
StandardStandard Azure Vm Security Type- "TVM"
TVMTVM Azure Vm Security Type- "CVM"
CVMCVM Azure Vm Security Type
BillingSettings, BillingSettingsArgs
Billing settings class.- 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
Billing settings class.- 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.
MachineAssessmentSettings, MachineAssessmentSettingsArgs
Properties of an assessment.- Azure
Disk List<Union<string, Pulumi.Types Azure Native. Migrate. Azure Disk Type>> - The disk type for the assessment.
- Azure
Hybrid string | Pulumi.Use Benefit Azure Native. Migrate. Azure Hybrid Use Benefit - Gets or sets the user configurable setting to display the azure hybrid use benefit.
- Azure
Location string - Azure Location or Azure region where to which the machines will be migrated.
- Azure
Pricing string | Pulumi.Tier Azure Native. Migrate. Azure Pricing Tier - Gets or sets Azure Pricing Tier - Free, Basic, etc.
- Azure
Security string | Pulumi.Offering Type Azure Native. Migrate. Azure Security Offering Type - The azure security offering type.
- Azure
Storage string | Pulumi.Redundancy Azure Native. Migrate. Azure Storage Redundancy - Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- Azure
Vm List<Union<string, Pulumi.Families Azure Native. Migrate. Azure Vm Family>> - Gets or sets the Azure VM families.
- Azure
Vm List<Union<string, Pulumi.Security Options Azure Native. Migrate. Azure Vm Security Type>> - Gets or sets the Azure VM security options.
- 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.
- Linux
Azure string | Pulumi.Hybrid Use Benefit Azure Native. Migrate. Azure Hybrid Use Benefit - Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- 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.
- Vm
Uptime Pulumi.Azure Native. Migrate. Inputs. Vm Uptime - Gets or sets the duration for which the VMs are up in the on-premises environment.
- Azure
Disk []stringTypes - The disk type for the assessment.
- Azure
Hybrid string | AzureUse Benefit Hybrid Use Benefit - Gets or sets the user configurable setting to display the azure hybrid use benefit.
- Azure
Location string - Azure Location or Azure region where to which the machines will be migrated.
- Azure
Pricing string | AzureTier Pricing Tier - Gets or sets Azure Pricing Tier - Free, Basic, etc.
- Azure
Security string | AzureOffering Type Security Offering Type - The azure security offering type.
- Azure
Storage string | AzureRedundancy Storage Redundancy - Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- Azure
Vm []stringFamilies - Gets or sets the Azure VM families.
- Azure
Vm []stringSecurity Options - Gets or sets the Azure VM security options.
- 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.
- Linux
Azure string | AzureHybrid Use Benefit Hybrid Use Benefit - Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- 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.
- Vm
Uptime VmUptime - Gets or sets the duration for which the VMs are up in the on-premises environment.
- azure
Disk List<Either<String,AzureTypes Disk Type>> - The disk type for the assessment.
- azure
Hybrid String | AzureUse Benefit Hybrid Use Benefit - Gets or sets the user configurable setting to display the azure hybrid use benefit.
- azure
Location String - Azure Location or Azure region where to which the machines will be migrated.
- azure
Pricing String | AzureTier Pricing Tier - Gets or sets Azure Pricing Tier - Free, Basic, etc.
- azure
Security String | AzureOffering Type Security Offering Type - The azure security offering type.
- azure
Storage String | AzureRedundancy Storage Redundancy - Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- azure
Vm List<Either<String,AzureFamilies Vm Family>> - Gets or sets the Azure VM families.
- azure
Vm List<Either<String,AzureSecurity Options Vm Security Type>> - Gets or sets the Azure VM security options.
- 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.
- linux
Azure String | AzureHybrid Use Benefit Hybrid Use Benefit - Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- 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.
- vm
Uptime VmUptime - Gets or sets the duration for which the VMs are up in the on-premises environment.
- azure
Disk (string | AzureTypes Disk Type)[] - The disk type for the assessment.
- azure
Hybrid string | AzureUse Benefit Hybrid Use Benefit - Gets or sets the user configurable setting to display the azure hybrid use benefit.
- azure
Location string - Azure Location or Azure region where to which the machines will be migrated.
- azure
Pricing string | AzureTier Pricing Tier - Gets or sets Azure Pricing Tier - Free, Basic, etc.
- azure
Security string | AzureOffering Type Security Offering Type - The azure security offering type.
- azure
Storage string | AzureRedundancy Storage Redundancy - Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- azure
Vm (string | AzureFamilies Vm Family)[] - Gets or sets the Azure VM families.
- azure
Vm (string | AzureSecurity Options Vm Security Type)[] - Gets or sets the Azure VM security options.
- 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.
- linux
Azure string | AzureHybrid Use Benefit Hybrid Use Benefit - Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- 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.
- vm
Uptime VmUptime - Gets or sets the duration for which the VMs are up in the on-premises environment.
- azure_
disk_ Sequence[Union[str, Azuretypes Disk Type]] - The disk type for the assessment.
- azure_
hybrid_ str | Azureuse_ benefit Hybrid Use Benefit - Gets or sets the user configurable setting to display the azure hybrid use benefit.
- azure_
location str - Azure Location or Azure region where to which the machines will be migrated.
- azure_
pricing_ str | Azuretier Pricing Tier - Gets or sets Azure Pricing Tier - Free, Basic, etc.
- azure_
security_ str | Azureoffering_ type Security Offering Type - The azure security offering type.
- azure_
storage_ str | Azureredundancy Storage Redundancy - Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- azure_
vm_ Sequence[Union[str, Azurefamilies Vm Family]] - Gets or sets the Azure VM families.
- azure_
vm_ Sequence[Union[str, Azuresecurity_ options Vm Security Type]] - Gets or sets the Azure VM security options.
- 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.
- linux_
azure_ str | Azurehybrid_ use_ benefit Hybrid Use Benefit - Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- 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.
- vm_
uptime VmUptime - Gets or sets the duration for which the VMs are up in the on-premises environment.
- azure
Disk List<String | "Unknown" | "Standard" | "StandardTypes SSD" | "Premium" | "Standard Or Premium" | "Ultra" | "Premium V2"> - The disk type for the assessment.
- azure
Hybrid String | "Unknown" | "Yes" | "No"Use Benefit - Gets or sets the user configurable setting to display the azure hybrid use benefit.
- azure
Location String - Azure Location or Azure region where to which the machines will be migrated.
- azure
Pricing String | "Standard" | "Basic"Tier - Gets or sets Azure Pricing Tier - Free, Basic, etc.
- azure
Security String | "NO" | "MDC"Offering Type - The azure security offering type.
- azure
Storage String | "Unknown" | "LocallyRedundancy Redundant" | "Zone Redundant" | "Geo Redundant" | "Read Access Geo Redundant" - Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- azure
Vm List<String | "Unknown" | "Basic_A0_A4" | "Standard_A0_A7" | "Standard_A8_A11" | "Av2_Families series" | "D_ series" | "Dv2_ series" | "DS_ series" | "DSv2_ series" | "F_ series" | "Fs_ series" | "G_ series" | "GS_ series" | "H_ series" | "Ls_ series" | "Dsv3_ series" | "Dv3_ series" | "Fsv2_ series" | "Ev3_ series" | "Esv3_ series" | "M_ series" | "DC_Series" | "Lsv2_ series" | "Ev4_ series" | "Esv4_ series" | "Edv4_ series" | "Edsv4_ series" | "Dv4_ series" | "Dsv4_ series" | "Ddv4_ series" | "Ddsv4_ series" | "Easv4_ series" | "Dasv4_ series" | "Mv2_ series" | "Eav4_ series" | "Dav4_ series" | "Msv2_ series" | "Mdsv2_ series" | "Dv5_ series" | "Dsv5_ series" | "Ddv5_ series" | "Ddsv5_ series" | "Dasv5_ series" | "Dadsv5_ series" | "Ev5_ series" | "Esv5_ series" | "Edv5_ series" | "Edsv5_ series" | "Easv5_ series" | "Eadsv5_ series" | "Ebsv5_ series" | "Ebdsv5_ series"> - Gets or sets the Azure VM families.
- azure
Vm List<String | "Unknown" | "Standard" | "TVM" | "CVM">Security Options - Gets or sets the Azure VM security options.
- 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.
- linux
Azure String | "Unknown" | "Yes" | "No"Hybrid Use Benefit - Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- 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.
- vm
Uptime Property Map - Gets or sets the duration for which the VMs are up in the on-premises environment.
MachineAssessmentSettingsResponse, MachineAssessmentSettingsResponseArgs
Properties of an assessment.- Azure
Disk List<string>Types - The disk type for the assessment.
- Azure
Hybrid stringUse Benefit - Gets or sets the user configurable setting to display the azure hybrid use benefit.
- Azure
Location string - Azure Location or Azure region where to which the machines will be migrated.
- Azure
Pricing stringTier - Gets or sets Azure Pricing Tier - Free, Basic, etc.
- Azure
Security stringOffering Type - The azure security offering type.
- Azure
Storage stringRedundancy - Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- Azure
Vm List<string>Families - Gets or sets the Azure VM families.
- Azure
Vm List<string>Security Options - Gets or sets the Azure VM security options.
- 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.
- Linux
Azure stringHybrid Use Benefit - Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- 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.
- Vm
Uptime Pulumi.Azure Native. Migrate. Inputs. Vm Uptime Response - Gets or sets the duration for which the VMs are up in the on-premises environment.
- Azure
Disk []stringTypes - The disk type for the assessment.
- Azure
Hybrid stringUse Benefit - Gets or sets the user configurable setting to display the azure hybrid use benefit.
- Azure
Location string - Azure Location or Azure region where to which the machines will be migrated.
- Azure
Pricing stringTier - Gets or sets Azure Pricing Tier - Free, Basic, etc.
- Azure
Security stringOffering Type - The azure security offering type.
- Azure
Storage stringRedundancy - Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- Azure
Vm []stringFamilies - Gets or sets the Azure VM families.
- Azure
Vm []stringSecurity Options - Gets or sets the Azure VM security options.
- 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.
- Linux
Azure stringHybrid Use Benefit - Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- 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.
- Vm
Uptime VmUptime Response - Gets or sets the duration for which the VMs are up in the on-premises environment.
- azure
Disk List<String>Types - The disk type for the assessment.
- azure
Hybrid StringUse Benefit - Gets or sets the user configurable setting to display the azure hybrid use benefit.
- azure
Location String - Azure Location or Azure region where to which the machines will be migrated.
- azure
Pricing StringTier - Gets or sets Azure Pricing Tier - Free, Basic, etc.
- azure
Security StringOffering Type - The azure security offering type.
- azure
Storage StringRedundancy - Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- azure
Vm List<String>Families - Gets or sets the Azure VM families.
- azure
Vm List<String>Security Options - Gets or sets the Azure VM security options.
- 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.
- linux
Azure StringHybrid Use Benefit - Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- 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.
- vm
Uptime VmUptime Response - Gets or sets the duration for which the VMs are up in the on-premises environment.
- azure
Disk string[]Types - The disk type for the assessment.
- azure
Hybrid stringUse Benefit - Gets or sets the user configurable setting to display the azure hybrid use benefit.
- azure
Location string - Azure Location or Azure region where to which the machines will be migrated.
- azure
Pricing stringTier - Gets or sets Azure Pricing Tier - Free, Basic, etc.
- azure
Security stringOffering Type - The azure security offering type.
- azure
Storage stringRedundancy - Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- azure
Vm string[]Families - Gets or sets the Azure VM families.
- azure
Vm string[]Security Options - Gets or sets the Azure VM security options.
- 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.
- linux
Azure stringHybrid Use Benefit - Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- 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.
- vm
Uptime VmUptime Response - Gets or sets the duration for which the VMs are up in the on-premises environment.
- azure_
disk_ Sequence[str]types - The disk type for the assessment.
- azure_
hybrid_ struse_ benefit - Gets or sets the user configurable setting to display the azure hybrid use benefit.
- azure_
location str - Azure Location or Azure region where to which the machines will be migrated.
- azure_
pricing_ strtier - Gets or sets Azure Pricing Tier - Free, Basic, etc.
- azure_
security_ stroffering_ type - The azure security offering type.
- azure_
storage_ strredundancy - Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- azure_
vm_ Sequence[str]families - Gets or sets the Azure VM families.
- azure_
vm_ Sequence[str]security_ options - Gets or sets the Azure VM security options.
- 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.
- linux_
azure_ strhybrid_ use_ benefit - Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- 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.
- vm_
uptime VmUptime Response - Gets or sets the duration for which the VMs are up in the on-premises environment.
- azure
Disk List<String>Types - The disk type for the assessment.
- azure
Hybrid StringUse Benefit - Gets or sets the user configurable setting to display the azure hybrid use benefit.
- azure
Location String - Azure Location or Azure region where to which the machines will be migrated.
- azure
Pricing StringTier - Gets or sets Azure Pricing Tier - Free, Basic, etc.
- azure
Security StringOffering Type - The azure security offering type.
- azure
Storage StringRedundancy - Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- azure
Vm List<String>Families - Gets or sets the Azure VM families.
- azure
Vm List<String>Security Options - Gets or sets the Azure VM security options.
- 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.
- linux
Azure StringHybrid Use Benefit - Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- 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.
- vm
Uptime Property Map - Gets or sets the duration for which the VMs are up in the on-premises environment.
MachineAssessmentV2Properties, MachineAssessmentV2PropertiesArgs
Assessment properties class.- Scope
Pulumi.
Azure Native. Migrate. Inputs. Scope - Gets or sets the scope of assessment.
- Settings
Pulumi.
Azure Native. Migrate. Inputs. Machine Assessment Settings - Gets or sets the settings for the assessment.
- Scope Scope
- Gets or sets the scope of assessment.
- Settings
Machine
Assessment Settings - Gets or sets the settings for the assessment.
- scope Scope
- Gets or sets the scope of assessment.
- settings
Machine
Assessment Settings - Gets or sets the settings for the assessment.
- scope Scope
- Gets or sets the scope of assessment.
- settings
Machine
Assessment Settings - Gets or sets the settings for the assessment.
- scope Scope
- Gets or sets the scope of assessment.
- settings
Machine
Assessment Settings - Gets or sets the settings for the assessment.
- scope Property Map
- Gets or sets the scope of assessment.
- settings Property Map
- Gets or sets the settings for the assessment.
MachineAssessmentV2PropertiesResponse, MachineAssessmentV2PropertiesResponseArgs
Assessment properties class.- 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.
- Scope
Pulumi.
Azure Native. Migrate. Inputs. Scope Response - Gets or sets the scope of assessment.
- Settings
Pulumi.
Azure Native. Migrate. Inputs. Machine 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.
- Scope
Scope
Response - Gets or sets the scope of assessment.
- Settings
Machine
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.
- scope
Scope
Response - Gets or sets the scope of assessment.
- settings
Machine
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.
- scope
Scope
Response - Gets or sets the scope of assessment.
- settings
Machine
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.
- scope
Scope
Response - Gets or sets the scope of assessment.
- settings
Machine
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.
- scope Property Map
- Gets or sets the scope of assessment.
- settings Property Map
- Gets or sets the settings for the assessment.
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
Performance data class.- 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
Performance data class.- 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
Savings settings class.- 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
Savings settings class.- 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
Scope of the assessment.- 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
Scope of the assessment.- 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
Metadata pertaining to creation and last modification of 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 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.
VmUptime, VmUptimeArgs
Details on the total up-time for the VM.- Days
Per doubleMonth - Number of days in a month for VM uptime.
- Hours
Per doubleDay - Number of hours per day for VM uptime.
- Days
Per float64Month - Number of days in a month for VM uptime.
- Hours
Per float64Day - Number of hours per day for VM uptime.
- days
Per DoubleMonth - Number of days in a month for VM uptime.
- hours
Per DoubleDay - Number of hours per day for VM uptime.
- days
Per numberMonth - Number of days in a month for VM uptime.
- hours
Per numberDay - Number of hours per day for VM uptime.
- days_
per_ floatmonth - Number of days in a month for VM uptime.
- hours_
per_ floatday - Number of hours per day for VM uptime.
- days
Per NumberMonth - Number of days in a month for VM uptime.
- hours
Per NumberDay - Number of hours per day for VM uptime.
VmUptimeResponse, VmUptimeResponseArgs
Details on the total up-time for the VM.- Days
Per doubleMonth - Number of days in a month for VM uptime.
- Hours
Per doubleDay - Number of hours per day for VM uptime.
- Days
Per float64Month - Number of days in a month for VM uptime.
- Hours
Per float64Day - Number of hours per day for VM uptime.
- days
Per DoubleMonth - Number of days in a month for VM uptime.
- hours
Per DoubleDay - Number of hours per day for VM uptime.
- days
Per numberMonth - Number of days in a month for VM uptime.
- hours
Per numberDay - Number of hours per day for VM uptime.
- days_
per_ floatmonth - Number of days in a month for VM uptime.
- hours_
per_ floatday - Number of hours per day for VM uptime.
- days
Per NumberMonth - Number of days in a month for VM uptime.
- hours
Per NumberDay - Number of hours per day for VM uptime.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:migrate:MachineAssessmentsV2Operation assessmentName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/assessments/{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
published on Wednesday, Mar 4, 2026 by Pulumi
