published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
An assessment created for a group in the Migration project.
Uses Azure REST API version 2019-10-01. In version 1.x of the Azure Native provider, it used API version 2019-10-01.
Other available API versions: 2018-02-02.
Example Usage
Assessments_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var assessment = new AzureNative.Migrate.Assessment("assessment", new()
{
AssessmentName = "assessment_5_14_2019_16_48_47",
ETag = "\"1e000c2c-0000-0d00-0000-5cdaa4190000\"",
GroupName = "Group2",
ProjectName = "abgoyalWEselfhostb72bproject",
Properties = new AzureNative.Migrate.Inputs.AssessmentPropertiesArgs
{
AzureDiskType = AzureNative.Migrate.AzureDiskType.StandardOrPremium,
AzureHybridUseBenefit = AzureNative.Migrate.AzureHybridUseBenefit.Yes,
AzureLocation = AzureNative.Migrate.AzureLocation.NorthEurope,
AzureOfferCode = AzureNative.Migrate.AzureOfferCode.Msazr0003P,
AzurePricingTier = AzureNative.Migrate.AzurePricingTier.Standard,
AzureStorageRedundancy = AzureNative.Migrate.AzureStorageRedundancy.LocallyRedundant,
AzureVmFamilies = new[]
{
AzureNative.Migrate.AzureVmFamily.Dv2Series,
AzureNative.Migrate.AzureVmFamily.FSeries,
AzureNative.Migrate.AzureVmFamily.Dv3Series,
AzureNative.Migrate.AzureVmFamily.DSSeries,
AzureNative.Migrate.AzureVmFamily.DSv2Series,
AzureNative.Migrate.AzureVmFamily.FsSeries,
AzureNative.Migrate.AzureVmFamily.Dsv3Series,
AzureNative.Migrate.AzureVmFamily.Ev3Series,
AzureNative.Migrate.AzureVmFamily.Esv3Series,
AzureNative.Migrate.AzureVmFamily.DSeries,
AzureNative.Migrate.AzureVmFamily.MSeries,
AzureNative.Migrate.AzureVmFamily.Fsv2Series,
AzureNative.Migrate.AzureVmFamily.HSeries,
},
Currency = AzureNative.Migrate.Currency.USD,
DiscountPercentage = 100,
Percentile = AzureNative.Migrate.Percentile.Percentile95,
ReservedInstance = AzureNative.Migrate.ReservedInstance.RI3Year,
ScalingFactor = 1,
SizingCriterion = AzureNative.Migrate.AssessmentSizingCriterion.PerformanceBased,
Stage = AzureNative.Migrate.AssessmentStage.InProgress,
TimeRange = AzureNative.Migrate.TimeRange.Day,
VmUptime = new AzureNative.Migrate.Inputs.VmUptimeArgs
{
DaysPerMonth = 31,
HoursPerDay = 24,
},
},
ResourceGroupName = "abgoyal-westEurope",
});
});
package main
import (
migrate "github.com/pulumi/pulumi-azure-native-sdk/migrate/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := migrate.NewAssessment(ctx, "assessment", &migrate.AssessmentArgs{
AssessmentName: pulumi.String("assessment_5_14_2019_16_48_47"),
ETag: pulumi.String("\"1e000c2c-0000-0d00-0000-5cdaa4190000\""),
GroupName: pulumi.String("Group2"),
ProjectName: pulumi.String("abgoyalWEselfhostb72bproject"),
Properties: &migrate.AssessmentPropertiesArgs{
AzureDiskType: pulumi.String(migrate.AzureDiskTypeStandardOrPremium),
AzureHybridUseBenefit: pulumi.String(migrate.AzureHybridUseBenefitYes),
AzureLocation: pulumi.String(migrate.AzureLocationNorthEurope),
AzureOfferCode: pulumi.String(migrate.AzureOfferCodeMsazr0003P),
AzurePricingTier: pulumi.String(migrate.AzurePricingTierStandard),
AzureStorageRedundancy: pulumi.String(migrate.AzureStorageRedundancyLocallyRedundant),
AzureVmFamilies: pulumi.StringArray{
pulumi.String(migrate.AzureVmFamilyDv2Series),
pulumi.String(migrate.AzureVmFamilyFSeries),
pulumi.String(migrate.AzureVmFamilyDv3Series),
pulumi.String(migrate.AzureVmFamilyDSSeries),
pulumi.String(migrate.AzureVmFamilyDSv2Series),
pulumi.String(migrate.AzureVmFamilyFsSeries),
pulumi.String(migrate.AzureVmFamilyDsv3Series),
pulumi.String(migrate.AzureVmFamilyEv3Series),
pulumi.String(migrate.AzureVmFamilyEsv3Series),
pulumi.String(migrate.AzureVmFamilyDSeries),
pulumi.String(migrate.AzureVmFamilyMSeries),
pulumi.String(migrate.AzureVmFamilyFsv2Series),
pulumi.String(migrate.AzureVmFamilyHSeries),
},
Currency: pulumi.String(migrate.CurrencyUSD),
DiscountPercentage: pulumi.Float64(100),
Percentile: pulumi.String(migrate.PercentilePercentile95),
ReservedInstance: pulumi.String(migrate.ReservedInstanceRI3Year),
ScalingFactor: pulumi.Float64(1),
SizingCriterion: pulumi.String(migrate.AssessmentSizingCriterionPerformanceBased),
Stage: pulumi.String(migrate.AssessmentStageInProgress),
TimeRange: pulumi.String(migrate.TimeRangeDay),
VmUptime: &migrate.VmUptimeArgs{
DaysPerMonth: pulumi.Float64(31),
HoursPerDay: pulumi.Float64(24),
},
},
ResourceGroupName: pulumi.String("abgoyal-westEurope"),
})
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.Assessment;
import com.pulumi.azurenative.migrate.AssessmentArgs;
import com.pulumi.azurenative.migrate.inputs.AssessmentPropertiesArgs;
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 assessment = new Assessment("assessment", AssessmentArgs.builder()
.assessmentName("assessment_5_14_2019_16_48_47")
.eTag("\"1e000c2c-0000-0d00-0000-5cdaa4190000\"")
.groupName("Group2")
.projectName("abgoyalWEselfhostb72bproject")
.properties(AssessmentPropertiesArgs.builder()
.azureDiskType("StandardOrPremium")
.azureHybridUseBenefit("Yes")
.azureLocation("NorthEurope")
.azureOfferCode("MSAZR0003P")
.azurePricingTier("Standard")
.azureStorageRedundancy("LocallyRedundant")
.azureVmFamilies(
"Dv2_series",
"F_series",
"Dv3_series",
"DS_series",
"DSv2_series",
"Fs_series",
"Dsv3_series",
"Ev3_series",
"Esv3_series",
"D_series",
"M_series",
"Fsv2_series",
"H_series")
.currency("USD")
.discountPercentage(100)
.percentile("Percentile95")
.reservedInstance("RI3Year")
.scalingFactor(1)
.sizingCriterion("PerformanceBased")
.stage("InProgress")
.timeRange("Day")
.vmUptime(VmUptimeArgs.builder()
.daysPerMonth(31)
.hoursPerDay(24)
.build())
.build())
.resourceGroupName("abgoyal-westEurope")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const assessment = new azure_native.migrate.Assessment("assessment", {
assessmentName: "assessment_5_14_2019_16_48_47",
eTag: "\"1e000c2c-0000-0d00-0000-5cdaa4190000\"",
groupName: "Group2",
projectName: "abgoyalWEselfhostb72bproject",
properties: {
azureDiskType: azure_native.migrate.AzureDiskType.StandardOrPremium,
azureHybridUseBenefit: azure_native.migrate.AzureHybridUseBenefit.Yes,
azureLocation: azure_native.migrate.AzureLocation.NorthEurope,
azureOfferCode: azure_native.migrate.AzureOfferCode.Msazr0003P,
azurePricingTier: azure_native.migrate.AzurePricingTier.Standard,
azureStorageRedundancy: azure_native.migrate.AzureStorageRedundancy.LocallyRedundant,
azureVmFamilies: [
azure_native.migrate.AzureVmFamily.Dv2Series,
azure_native.migrate.AzureVmFamily.FSeries,
azure_native.migrate.AzureVmFamily.Dv3Series,
azure_native.migrate.AzureVmFamily.DSSeries,
azure_native.migrate.AzureVmFamily.DSv2Series,
azure_native.migrate.AzureVmFamily.FsSeries,
azure_native.migrate.AzureVmFamily.Dsv3Series,
azure_native.migrate.AzureVmFamily.Ev3Series,
azure_native.migrate.AzureVmFamily.Esv3Series,
azure_native.migrate.AzureVmFamily.DSeries,
azure_native.migrate.AzureVmFamily.MSeries,
azure_native.migrate.AzureVmFamily.Fsv2Series,
azure_native.migrate.AzureVmFamily.HSeries,
],
currency: azure_native.migrate.Currency.USD,
discountPercentage: 100,
percentile: azure_native.migrate.Percentile.Percentile95,
reservedInstance: azure_native.migrate.ReservedInstance.RI3Year,
scalingFactor: 1,
sizingCriterion: azure_native.migrate.AssessmentSizingCriterion.PerformanceBased,
stage: azure_native.migrate.AssessmentStage.InProgress,
timeRange: azure_native.migrate.TimeRange.Day,
vmUptime: {
daysPerMonth: 31,
hoursPerDay: 24,
},
},
resourceGroupName: "abgoyal-westEurope",
});
import pulumi
import pulumi_azure_native as azure_native
assessment = azure_native.migrate.Assessment("assessment",
assessment_name="assessment_5_14_2019_16_48_47",
e_tag="\"1e000c2c-0000-0d00-0000-5cdaa4190000\"",
group_name="Group2",
project_name="abgoyalWEselfhostb72bproject",
properties={
"azure_disk_type": azure_native.migrate.AzureDiskType.STANDARD_OR_PREMIUM,
"azure_hybrid_use_benefit": azure_native.migrate.AzureHybridUseBenefit.YES,
"azure_location": azure_native.migrate.AzureLocation.NORTH_EUROPE,
"azure_offer_code": azure_native.migrate.AzureOfferCode.MSAZR0003_P,
"azure_pricing_tier": azure_native.migrate.AzurePricingTier.STANDARD,
"azure_storage_redundancy": azure_native.migrate.AzureStorageRedundancy.LOCALLY_REDUNDANT,
"azure_vm_families": [
azure_native.migrate.AzureVmFamily.DV2_SERIES,
azure_native.migrate.AzureVmFamily.F_SERIES,
azure_native.migrate.AzureVmFamily.DV3_SERIES,
azure_native.migrate.AzureVmFamily.DS_SERIES,
azure_native.migrate.AzureVmFamily.D_SV2_SERIES,
azure_native.migrate.AzureVmFamily.FS_SERIES,
azure_native.migrate.AzureVmFamily.DSV3_SERIES,
azure_native.migrate.AzureVmFamily.EV3_SERIES,
azure_native.migrate.AzureVmFamily.ESV3_SERIES,
azure_native.migrate.AzureVmFamily.D_SERIES,
azure_native.migrate.AzureVmFamily.M_SERIES,
azure_native.migrate.AzureVmFamily.FSV2_SERIES,
azure_native.migrate.AzureVmFamily.H_SERIES,
],
"currency": azure_native.migrate.Currency.USD,
"discount_percentage": 100,
"percentile": azure_native.migrate.Percentile.PERCENTILE95,
"reserved_instance": azure_native.migrate.ReservedInstance.RI3_YEAR,
"scaling_factor": 1,
"sizing_criterion": azure_native.migrate.AssessmentSizingCriterion.PERFORMANCE_BASED,
"stage": azure_native.migrate.AssessmentStage.IN_PROGRESS,
"time_range": azure_native.migrate.TimeRange.DAY,
"vm_uptime": {
"days_per_month": 31,
"hours_per_day": 24,
},
},
resource_group_name="abgoyal-westEurope")
resources:
assessment:
type: azure-native:migrate:Assessment
properties:
assessmentName: assessment_5_14_2019_16_48_47
eTag: '"1e000c2c-0000-0d00-0000-5cdaa4190000"'
groupName: Group2
projectName: abgoyalWEselfhostb72bproject
properties:
azureDiskType: StandardOrPremium
azureHybridUseBenefit: Yes
azureLocation: NorthEurope
azureOfferCode: MSAZR0003P
azurePricingTier: Standard
azureStorageRedundancy: LocallyRedundant
azureVmFamilies:
- Dv2_series
- F_series
- Dv3_series
- DS_series
- DSv2_series
- Fs_series
- Dsv3_series
- Ev3_series
- Esv3_series
- D_series
- M_series
- Fsv2_series
- H_series
currency: USD
discountPercentage: 100
percentile: Percentile95
reservedInstance: RI3Year
scalingFactor: 1
sizingCriterion: PerformanceBased
stage: InProgress
timeRange: Day
vmUptime:
daysPerMonth: 31
hoursPerDay: 24
resourceGroupName: abgoyal-westEurope
Create Assessment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Assessment(name: string, args: AssessmentArgs, opts?: CustomResourceOptions);@overload
def Assessment(resource_name: str,
args: AssessmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Assessment(resource_name: str,
opts: Optional[ResourceOptions] = None,
group_name: Optional[str] = None,
project_name: Optional[str] = None,
properties: Optional[AssessmentPropertiesArgs] = None,
resource_group_name: Optional[str] = None,
assessment_name: Optional[str] = None,
e_tag: Optional[str] = None)func NewAssessment(ctx *Context, name string, args AssessmentArgs, opts ...ResourceOption) (*Assessment, error)public Assessment(string name, AssessmentArgs args, CustomResourceOptions? opts = null)
public Assessment(String name, AssessmentArgs args)
public Assessment(String name, AssessmentArgs args, CustomResourceOptions options)
type: azure-native:migrate:Assessment
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 AssessmentArgs
- 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 AssessmentArgs
- 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 AssessmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AssessmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AssessmentArgs
- 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 azure_nativeAssessmentResource = new AzureNative.Migrate.Assessment("azure-nativeAssessmentResource", new()
{
GroupName = "string",
ProjectName = "string",
Properties = new AzureNative.Migrate.Inputs.AssessmentPropertiesArgs
{
AzureDiskType = "string",
AzureHybridUseBenefit = "string",
AzureLocation = "string",
AzureOfferCode = "string",
AzurePricingTier = "string",
AzureStorageRedundancy = "string",
AzureVmFamilies = new[]
{
"string",
},
Currency = "string",
DiscountPercentage = 0,
Percentile = "string",
ReservedInstance = "string",
ScalingFactor = 0,
SizingCriterion = "string",
Stage = "string",
TimeRange = "string",
VmUptime = new AzureNative.Migrate.Inputs.VmUptimeArgs
{
DaysPerMonth = 0,
HoursPerDay = 0,
},
},
ResourceGroupName = "string",
AssessmentName = "string",
ETag = "string",
});
example, err := migrate.NewAssessment(ctx, "azure-nativeAssessmentResource", &migrate.AssessmentArgs{
GroupName: pulumi.String("string"),
ProjectName: pulumi.String("string"),
Properties: &migrate.AssessmentPropertiesArgs{
AzureDiskType: pulumi.String("string"),
AzureHybridUseBenefit: pulumi.String("string"),
AzureLocation: pulumi.String("string"),
AzureOfferCode: pulumi.String("string"),
AzurePricingTier: pulumi.String("string"),
AzureStorageRedundancy: pulumi.String("string"),
AzureVmFamilies: pulumi.StringArray{
pulumi.String("string"),
},
Currency: pulumi.String("string"),
DiscountPercentage: pulumi.Float64(0),
Percentile: pulumi.String("string"),
ReservedInstance: pulumi.String("string"),
ScalingFactor: pulumi.Float64(0),
SizingCriterion: pulumi.String("string"),
Stage: pulumi.String("string"),
TimeRange: pulumi.String("string"),
VmUptime: &migrate.VmUptimeArgs{
DaysPerMonth: pulumi.Float64(0),
HoursPerDay: pulumi.Float64(0),
},
},
ResourceGroupName: pulumi.String("string"),
AssessmentName: pulumi.String("string"),
ETag: pulumi.String("string"),
})
var azure_nativeAssessmentResource = new com.pulumi.azurenative.migrate.Assessment("azure-nativeAssessmentResource", com.pulumi.azurenative.migrate.AssessmentArgs.builder()
.groupName("string")
.projectName("string")
.properties(AssessmentPropertiesArgs.builder()
.azureDiskType("string")
.azureHybridUseBenefit("string")
.azureLocation("string")
.azureOfferCode("string")
.azurePricingTier("string")
.azureStorageRedundancy("string")
.azureVmFamilies("string")
.currency("string")
.discountPercentage(0.0)
.percentile("string")
.reservedInstance("string")
.scalingFactor(0.0)
.sizingCriterion("string")
.stage("string")
.timeRange("string")
.vmUptime(VmUptimeArgs.builder()
.daysPerMonth(0.0)
.hoursPerDay(0.0)
.build())
.build())
.resourceGroupName("string")
.assessmentName("string")
.eTag("string")
.build());
azure_native_assessment_resource = azure_native.migrate.Assessment("azure-nativeAssessmentResource",
group_name="string",
project_name="string",
properties={
"azure_disk_type": "string",
"azure_hybrid_use_benefit": "string",
"azure_location": "string",
"azure_offer_code": "string",
"azure_pricing_tier": "string",
"azure_storage_redundancy": "string",
"azure_vm_families": ["string"],
"currency": "string",
"discount_percentage": 0,
"percentile": "string",
"reserved_instance": "string",
"scaling_factor": 0,
"sizing_criterion": "string",
"stage": "string",
"time_range": "string",
"vm_uptime": {
"days_per_month": 0,
"hours_per_day": 0,
},
},
resource_group_name="string",
assessment_name="string",
e_tag="string")
const azure_nativeAssessmentResource = new azure_native.migrate.Assessment("azure-nativeAssessmentResource", {
groupName: "string",
projectName: "string",
properties: {
azureDiskType: "string",
azureHybridUseBenefit: "string",
azureLocation: "string",
azureOfferCode: "string",
azurePricingTier: "string",
azureStorageRedundancy: "string",
azureVmFamilies: ["string"],
currency: "string",
discountPercentage: 0,
percentile: "string",
reservedInstance: "string",
scalingFactor: 0,
sizingCriterion: "string",
stage: "string",
timeRange: "string",
vmUptime: {
daysPerMonth: 0,
hoursPerDay: 0,
},
},
resourceGroupName: "string",
assessmentName: "string",
eTag: "string",
});
type: azure-native:migrate:Assessment
properties:
assessmentName: string
eTag: string
groupName: string
projectName: string
properties:
azureDiskType: string
azureHybridUseBenefit: string
azureLocation: string
azureOfferCode: string
azurePricingTier: string
azureStorageRedundancy: string
azureVmFamilies:
- string
currency: string
discountPercentage: 0
percentile: string
reservedInstance: string
scalingFactor: 0
sizingCriterion: string
stage: string
timeRange: string
vmUptime:
daysPerMonth: 0
hoursPerDay: 0
resourceGroupName: string
Assessment 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 Assessment resource accepts the following input properties:
- Group
Name string - Unique name of a group within a project.
- Project
Name string - Name of the Azure Migrate project.
- Properties
Pulumi.
Azure Native. Migrate. Inputs. Assessment Properties - Properties of the assessment.
- Resource
Group stringName - Name of the Azure Resource Group that project is part of.
- Assessment
Name string - Unique name of an assessment within a project.
- ETag string
- For optimistic concurrency control.
- Group
Name string - Unique name of a group within a project.
- Project
Name string - Name of the Azure Migrate project.
- Properties
Assessment
Properties Args - Properties of the assessment.
- Resource
Group stringName - Name of the Azure Resource Group that project is part of.
- Assessment
Name string - Unique name of an assessment within a project.
- ETag string
- For optimistic concurrency control.
- group
Name String - Unique name of a group within a project.
- project
Name String - Name of the Azure Migrate project.
- properties
Assessment
Properties - Properties of the assessment.
- resource
Group StringName - Name of the Azure Resource Group that project is part of.
- assessment
Name String - Unique name of an assessment within a project.
- e
Tag String - For optimistic concurrency control.
- group
Name string - Unique name of a group within a project.
- project
Name string - Name of the Azure Migrate project.
- properties
Assessment
Properties - Properties of the assessment.
- resource
Group stringName - Name of the Azure Resource Group that project is part of.
- assessment
Name string - Unique name of an assessment within a project.
- e
Tag string - For optimistic concurrency control.
- group_
name str - Unique name of a group within a project.
- project_
name str - Name of the Azure Migrate project.
- properties
Assessment
Properties Args - Properties of the assessment.
- resource_
group_ strname - Name of the Azure Resource Group that project is part of.
- assessment_
name str - Unique name of an assessment within a project.
- e_
tag str - For optimistic concurrency control.
- group
Name String - Unique name of a group within a project.
- project
Name String - Name of the Azure Migrate project.
- properties Property Map
- Properties of the assessment.
- resource
Group StringName - Name of the Azure Resource Group that project is part of.
- assessment
Name String - Unique name of an assessment within a project.
- e
Tag String - For optimistic concurrency control.
Outputs
All input properties are implicitly available as output properties. Additionally, the Assessment resource produces the following output properties:
Supporting Types
AssessmentProperties, AssessmentPropertiesArgs
Properties of an assessment.- Azure
Disk string | Pulumi.Type Azure Native. Migrate. Azure Disk Type - Storage type selected for this disk.
- Azure
Hybrid string | Pulumi.Use Benefit Azure Native. Migrate. Azure Hybrid Use Benefit - AHUB discount on windows virtual machines.
- Azure
Location string | Pulumi.Azure Native. Migrate. Azure Location - Target Azure location for which the machines should be assessed. These enums are the same as used by Compute API.
- Azure
Offer string | Pulumi.Code Azure Native. Migrate. Azure Offer Code - Offer code according to which cost estimation is done.
- Azure
Pricing string | Pulumi.Tier Azure Native. Migrate. Azure Pricing Tier - Pricing tier for Size evaluation.
- Azure
Storage string | Pulumi.Redundancy Azure Native. Migrate. Azure Storage Redundancy - Storage Redundancy type offered by Azure.
- Azure
Vm List<Union<string, Pulumi.Families Azure Native. Migrate. Azure Vm Family>> - List of azure VM families.
- Currency
string | Pulumi.
Azure Native. Migrate. Currency - Currency to report prices in.
- Discount
Percentage double - Custom discount percentage to be applied on final costs. Can be in the range [0, 100].
- Percentile
string | Pulumi.
Azure Native. Migrate. Percentile - Percentile of performance data used to recommend Azure size.
- Reserved
Instance string | Pulumi.Azure Native. Migrate. Reserved Instance - Azure reserved instance.
- Scaling
Factor double - Scaling factor used over utilization data to add a performance buffer for new machines to be created in Azure. Min Value = 1.0, Max value = 1.9, Default = 1.3.
- Sizing
Criterion string | Pulumi.Azure Native. Migrate. Assessment Sizing Criterion - Assessment sizing criterion.
- Stage
string | Pulumi.
Azure Native. Migrate. Assessment Stage - User configurable setting that describes the status of the assessment.
- Time
Range string | Pulumi.Azure Native. Migrate. Time Range - Time range of performance data used to recommend a size.
- Vm
Uptime Pulumi.Azure Native. Migrate. Inputs. Vm Uptime - Specify the duration for which the VMs are up in the on-premises environment.
- Azure
Disk string | AzureType Disk Type - Storage type selected for this disk.
- Azure
Hybrid string | AzureUse Benefit Hybrid Use Benefit - AHUB discount on windows virtual machines.
- Azure
Location string | AzureLocation - Target Azure location for which the machines should be assessed. These enums are the same as used by Compute API.
- Azure
Offer string | AzureCode Offer Code - Offer code according to which cost estimation is done.
- Azure
Pricing string | AzureTier Pricing Tier - Pricing tier for Size evaluation.
- Azure
Storage string | AzureRedundancy Storage Redundancy - Storage Redundancy type offered by Azure.
- Azure
Vm []stringFamilies - List of azure VM families.
- Currency string | Currency
- Currency to report prices in.
- Discount
Percentage float64 - Custom discount percentage to be applied on final costs. Can be in the range [0, 100].
- Percentile string | Percentile
- Percentile of performance data used to recommend Azure size.
- Reserved
Instance string | ReservedInstance - Azure reserved instance.
- Scaling
Factor float64 - Scaling factor used over utilization data to add a performance buffer for new machines to be created in Azure. Min Value = 1.0, Max value = 1.9, Default = 1.3.
- Sizing
Criterion string | AssessmentSizing Criterion - Assessment sizing criterion.
- Stage
string | Assessment
Stage - User configurable setting that describes the status of the assessment.
- Time
Range string | TimeRange - Time range of performance data used to recommend a size.
- Vm
Uptime VmUptime - Specify the duration for which the VMs are up in the on-premises environment.
- azure
Disk String | AzureType Disk Type - Storage type selected for this disk.
- azure
Hybrid String | AzureUse Benefit Hybrid Use Benefit - AHUB discount on windows virtual machines.
- azure
Location String | AzureLocation - Target Azure location for which the machines should be assessed. These enums are the same as used by Compute API.
- azure
Offer String | AzureCode Offer Code - Offer code according to which cost estimation is done.
- azure
Pricing String | AzureTier Pricing Tier - Pricing tier for Size evaluation.
- azure
Storage String | AzureRedundancy Storage Redundancy - Storage Redundancy type offered by Azure.
- azure
Vm List<Either<String,AzureFamilies Vm Family>> - List of azure VM families.
- currency String | Currency
- Currency to report prices in.
- discount
Percentage Double - Custom discount percentage to be applied on final costs. Can be in the range [0, 100].
- percentile String | Percentile
- Percentile of performance data used to recommend Azure size.
- reserved
Instance String | ReservedInstance - Azure reserved instance.
- scaling
Factor Double - Scaling factor used over utilization data to add a performance buffer for new machines to be created in Azure. Min Value = 1.0, Max value = 1.9, Default = 1.3.
- sizing
Criterion String | AssessmentSizing Criterion - Assessment sizing criterion.
- stage
String | Assessment
Stage - User configurable setting that describes the status of the assessment.
- time
Range String | TimeRange - Time range of performance data used to recommend a size.
- vm
Uptime VmUptime - Specify the duration for which the VMs are up in the on-premises environment.
- azure
Disk string | AzureType Disk Type - Storage type selected for this disk.
- azure
Hybrid string | AzureUse Benefit Hybrid Use Benefit - AHUB discount on windows virtual machines.
- azure
Location string | AzureLocation - Target Azure location for which the machines should be assessed. These enums are the same as used by Compute API.
- azure
Offer string | AzureCode Offer Code - Offer code according to which cost estimation is done.
- azure
Pricing string | AzureTier Pricing Tier - Pricing tier for Size evaluation.
- azure
Storage string | AzureRedundancy Storage Redundancy - Storage Redundancy type offered by Azure.
- azure
Vm (string | AzureFamilies Vm Family)[] - List of azure VM families.
- currency string | Currency
- Currency to report prices in.
- discount
Percentage number - Custom discount percentage to be applied on final costs. Can be in the range [0, 100].
- percentile string | Percentile
- Percentile of performance data used to recommend Azure size.
- reserved
Instance string | ReservedInstance - Azure reserved instance.
- scaling
Factor number - Scaling factor used over utilization data to add a performance buffer for new machines to be created in Azure. Min Value = 1.0, Max value = 1.9, Default = 1.3.
- sizing
Criterion string | AssessmentSizing Criterion - Assessment sizing criterion.
- stage
string | Assessment
Stage - User configurable setting that describes the status of the assessment.
- time
Range string | TimeRange - Time range of performance data used to recommend a size.
- vm
Uptime VmUptime - Specify the duration for which the VMs are up in the on-premises environment.
- azure_
disk_ str | Azuretype Disk Type - Storage type selected for this disk.
- azure_
hybrid_ str | Azureuse_ benefit Hybrid Use Benefit - AHUB discount on windows virtual machines.
- azure_
location str | AzureLocation - Target Azure location for which the machines should be assessed. These enums are the same as used by Compute API.
- azure_
offer_ str | Azurecode Offer Code - Offer code according to which cost estimation is done.
- azure_
pricing_ str | Azuretier Pricing Tier - Pricing tier for Size evaluation.
- azure_
storage_ str | Azureredundancy Storage Redundancy - Storage Redundancy type offered by Azure.
- azure_
vm_ Sequence[Union[str, Azurefamilies Vm Family]] - List of azure VM families.
- currency str | Currency
- Currency to report prices in.
- discount_
percentage float - Custom discount percentage to be applied on final costs. Can be in the range [0, 100].
- percentile str | Percentile
- Percentile of performance data used to recommend Azure size.
- reserved_
instance str | ReservedInstance - Azure reserved instance.
- scaling_
factor float - Scaling factor used over utilization data to add a performance buffer for new machines to be created in Azure. Min Value = 1.0, Max value = 1.9, Default = 1.3.
- sizing_
criterion str | AssessmentSizing Criterion - Assessment sizing criterion.
- stage
str | Assessment
Stage - User configurable setting that describes the status of the assessment.
- time_
range str | TimeRange - Time range of performance data used to recommend a size.
- vm_
uptime VmUptime - Specify the duration for which the VMs are up in the on-premises environment.
- azure
Disk String | "Unknown" | "Standard" | "StandardType SSD" | "Premium" | "Standard Or Premium" | "Ultra" | "Premium V2" - Storage type selected for this disk.
- azure
Hybrid String | "Unknown" | "Yes" | "No"Use Benefit - AHUB discount on windows virtual machines.
- azure
Location String | "Unknown" | "EastAsia" | "Southeast Asia" | "Australia East" | "Australia Southeast" | "Brazil South" | "Canada Central" | "Canada East" | "West Europe" | "North Europe" | "Central India" | "South India" | "West India" | "Japan East" | "Japan West" | "Korea Central" | "Korea South" | "Uk West" | "Uk South" | "North Central Us" | "East Us" | "West Us2" | "South Central Us" | "Central Us" | "East Us2" | "West Us" | "West Central Us" | "Germany Central" | "Germany Northeast" | "China North" | "China East" | "USGov Arizona" | "USGov Texas" | "USGov Iowa" | "USGov Virginia" | "USDo DCentral" | "USDo DEast" | "France Central" | "Australia Central" | "South Africa North" | "France South" | "Australia Central2" | "South Africa West" | "Germany North" | "Germany West Central" | "Norway East" | "Norway West" | "China East2" | "China North2" | "Switzerland North" | "Switzerland West" | "UAENorth" | "UAECentral" | "Us Nat East" | "Us Nat West" | "Us Sec East" | "Us Sec Central" | "Us Sec West" | "Sweden Central" | "Qatar Central" - Target Azure location for which the machines should be assessed. These enums are the same as used by Compute API.
- azure
Offer String | "Unknown" | "MSAZR0003P" | "MSAZR0044P" | "MSAZR0059P" | "MSAZR0060P" | "MSAZR0062P" | "MSAZR0063P" | "MSAZR0064P" | "MSAZR0029P" | "MSAZR0022P" | "MSAZR0023P" | "MSAZR0148P" | "MSAZR0025P" | "MSAZR0036P" | "MSAZR0120P" | "MSAZR0121P" | "MSAZR0122P" | "MSAZR0123P" | "MSAZR0124P" | "MSAZR0125P" | "MSAZR0126P" | "MSAZR0127P" | "MSAZR0128P" | "MSAZR0129P" | "MSAZR0130P" | "MSAZR0111P" | "MSAZR0144P" | "MSAZR0149P" | "MSMCAZR0044P" | "MSMCAZR0059P" | "MSMCAZR0060P" | "MSMCAZR0063P" | "MSMCAZR0120P" | "MSMCAZR0121P" | "MSMCAZR0125P" | "MSMCAZR0128P" | "MSAZRDE0003P" | "MSAZRDE0044P" | "MSAZRUSGOV0003P" | "EA" | "MSAZR0243P" | "SavingsCode Plan1Year" | "Savings Plan3Year" - Offer code according to which cost estimation is done.
- azure
Pricing String | "Standard" | "Basic"Tier - Pricing tier for Size evaluation.
- azure
Storage String | "Unknown" | "LocallyRedundancy Redundant" | "Zone Redundant" | "Geo Redundant" | "Read Access Geo Redundant" - Storage Redundancy type offered by Azure.
- 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"> - List of azure VM families.
- 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 to report prices in.
- discount
Percentage Number - Custom discount percentage to be applied on final costs. Can be in the range [0, 100].
- percentile String | "Percentile50" | "Percentile90" | "Percentile95" | "Percentile99"
- Percentile of performance data used to recommend Azure size.
- reserved
Instance String | "None" | "RI1Year" | "RI3Year" - Azure reserved instance.
- scaling
Factor Number - Scaling factor used over utilization data to add a performance buffer for new machines to be created in Azure. Min Value = 1.0, Max value = 1.9, Default = 1.3.
- sizing
Criterion String | "PerformanceBased" | "As On Premises" - Assessment sizing criterion.
- stage
String | "In
Progress" | "Under Review" | "Approved" - User configurable setting that describes the status of the assessment.
- time
Range String | "Day" | "Week" | "Month" | "Custom" - Time range of performance data used to recommend a size.
- vm
Uptime Property Map - Specify the duration for which the VMs are up in the on-premises environment.
AssessmentPropertiesResponse, AssessmentPropertiesResponseArgs
Properties of an assessment.- Azure
Disk stringType - Storage type selected for this disk.
- Azure
Hybrid stringUse Benefit - AHUB discount on windows virtual machines.
- Azure
Location string - Target Azure location for which the machines should be assessed. These enums are the same as used by Compute API.
- Azure
Offer stringCode - Offer code according to which cost estimation is done.
- Azure
Pricing stringTier - Pricing tier for Size evaluation.
- Azure
Storage stringRedundancy - Storage Redundancy type offered by Azure.
- Azure
Vm List<string>Families - List of azure VM families.
- Confidence
Rating doubleIn Percentage - Confidence rating percentage for assessment. Can be in the range [0, 100].
- Created
Timestamp string - Time when this project was created. Date-Time represented in ISO-8601 format.
- Currency string
- Currency to report prices in.
- Discount
Percentage double - Custom discount percentage to be applied on final costs. Can be in the range [0, 100].
- Ea
Subscription stringId - Enterprise agreement subscription arm id.
- Monthly
Bandwidth doubleCost - Monthly network cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- Monthly
Compute doubleCost - Monthly compute cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- double
- Monthly premium storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- Monthly
Standard doubleSSDStorage Cost - Monthly standard SSD storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- Monthly
Storage doubleCost - Monthly storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- Number
Of intMachines - Number of assessed machines part of this assessment.
- Percentile string
- Percentile of performance data used to recommend Azure size.
- Perf
Data stringEnd Time - End time to consider performance data for assessment
- Perf
Data stringStart Time - Start time to consider performance data for assessment
- Prices
Timestamp string - Time when the Azure Prices were queried. Date-Time represented in ISO-8601 format.
- Reserved
Instance string - Azure reserved instance.
- Scaling
Factor double - Scaling factor used over utilization data to add a performance buffer for new machines to be created in Azure. Min Value = 1.0, Max value = 1.9, Default = 1.3.
- Sizing
Criterion string - Assessment sizing criterion.
- Stage string
- User configurable setting that describes the status of the assessment.
- Status string
- Whether the assessment has been created and is valid.
- Time
Range string - Time range of performance data used to recommend a size.
- Updated
Timestamp string - Time when this project was last updated. Date-Time represented in ISO-8601 format.
- Vm
Uptime Pulumi.Azure Native. Migrate. Inputs. Vm Uptime Response - Specify the duration for which the VMs are up in the on-premises environment.
- Azure
Disk stringType - Storage type selected for this disk.
- Azure
Hybrid stringUse Benefit - AHUB discount on windows virtual machines.
- Azure
Location string - Target Azure location for which the machines should be assessed. These enums are the same as used by Compute API.
- Azure
Offer stringCode - Offer code according to which cost estimation is done.
- Azure
Pricing stringTier - Pricing tier for Size evaluation.
- Azure
Storage stringRedundancy - Storage Redundancy type offered by Azure.
- Azure
Vm []stringFamilies - List of azure VM families.
- Confidence
Rating float64In Percentage - Confidence rating percentage for assessment. Can be in the range [0, 100].
- Created
Timestamp string - Time when this project was created. Date-Time represented in ISO-8601 format.
- Currency string
- Currency to report prices in.
- Discount
Percentage float64 - Custom discount percentage to be applied on final costs. Can be in the range [0, 100].
- Ea
Subscription stringId - Enterprise agreement subscription arm id.
- Monthly
Bandwidth float64Cost - Monthly network cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- Monthly
Compute float64Cost - Monthly compute cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- float64
- Monthly premium storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- Monthly
Standard float64SSDStorage Cost - Monthly standard SSD storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- Monthly
Storage float64Cost - Monthly storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- Number
Of intMachines - Number of assessed machines part of this assessment.
- Percentile string
- Percentile of performance data used to recommend Azure size.
- Perf
Data stringEnd Time - End time to consider performance data for assessment
- Perf
Data stringStart Time - Start time to consider performance data for assessment
- Prices
Timestamp string - Time when the Azure Prices were queried. Date-Time represented in ISO-8601 format.
- Reserved
Instance string - Azure reserved instance.
- Scaling
Factor float64 - Scaling factor used over utilization data to add a performance buffer for new machines to be created in Azure. Min Value = 1.0, Max value = 1.9, Default = 1.3.
- Sizing
Criterion string - Assessment sizing criterion.
- Stage string
- User configurable setting that describes the status of the assessment.
- Status string
- Whether the assessment has been created and is valid.
- Time
Range string - Time range of performance data used to recommend a size.
- Updated
Timestamp string - Time when this project was last updated. Date-Time represented in ISO-8601 format.
- Vm
Uptime VmUptime Response - Specify the duration for which the VMs are up in the on-premises environment.
- azure
Disk StringType - Storage type selected for this disk.
- azure
Hybrid StringUse Benefit - AHUB discount on windows virtual machines.
- azure
Location String - Target Azure location for which the machines should be assessed. These enums are the same as used by Compute API.
- azure
Offer StringCode - Offer code according to which cost estimation is done.
- azure
Pricing StringTier - Pricing tier for Size evaluation.
- azure
Storage StringRedundancy - Storage Redundancy type offered by Azure.
- azure
Vm List<String>Families - List of azure VM families.
- confidence
Rating DoubleIn Percentage - Confidence rating percentage for assessment. Can be in the range [0, 100].
- created
Timestamp String - Time when this project was created. Date-Time represented in ISO-8601 format.
- currency String
- Currency to report prices in.
- discount
Percentage Double - Custom discount percentage to be applied on final costs. Can be in the range [0, 100].
- ea
Subscription StringId - Enterprise agreement subscription arm id.
- monthly
Bandwidth DoubleCost - Monthly network cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- monthly
Compute DoubleCost - Monthly compute cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- Double
- Monthly premium storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- monthly
Standard DoubleSSDStorage Cost - Monthly standard SSD storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- monthly
Storage DoubleCost - Monthly storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- number
Of IntegerMachines - Number of assessed machines part of this assessment.
- percentile String
- Percentile of performance data used to recommend Azure size.
- perf
Data StringEnd Time - End time to consider performance data for assessment
- perf
Data StringStart Time - Start time to consider performance data for assessment
- prices
Timestamp String - Time when the Azure Prices were queried. Date-Time represented in ISO-8601 format.
- reserved
Instance String - Azure reserved instance.
- scaling
Factor Double - Scaling factor used over utilization data to add a performance buffer for new machines to be created in Azure. Min Value = 1.0, Max value = 1.9, Default = 1.3.
- sizing
Criterion String - Assessment sizing criterion.
- stage String
- User configurable setting that describes the status of the assessment.
- status String
- Whether the assessment has been created and is valid.
- time
Range String - Time range of performance data used to recommend a size.
- updated
Timestamp String - Time when this project was last updated. Date-Time represented in ISO-8601 format.
- vm
Uptime VmUptime Response - Specify the duration for which the VMs are up in the on-premises environment.
- azure
Disk stringType - Storage type selected for this disk.
- azure
Hybrid stringUse Benefit - AHUB discount on windows virtual machines.
- azure
Location string - Target Azure location for which the machines should be assessed. These enums are the same as used by Compute API.
- azure
Offer stringCode - Offer code according to which cost estimation is done.
- azure
Pricing stringTier - Pricing tier for Size evaluation.
- azure
Storage stringRedundancy - Storage Redundancy type offered by Azure.
- azure
Vm string[]Families - List of azure VM families.
- confidence
Rating numberIn Percentage - Confidence rating percentage for assessment. Can be in the range [0, 100].
- created
Timestamp string - Time when this project was created. Date-Time represented in ISO-8601 format.
- currency string
- Currency to report prices in.
- discount
Percentage number - Custom discount percentage to be applied on final costs. Can be in the range [0, 100].
- ea
Subscription stringId - Enterprise agreement subscription arm id.
- monthly
Bandwidth numberCost - Monthly network cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- monthly
Compute numberCost - Monthly compute cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- number
- Monthly premium storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- monthly
Standard numberSSDStorage Cost - Monthly standard SSD storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- monthly
Storage numberCost - Monthly storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- number
Of numberMachines - Number of assessed machines part of this assessment.
- percentile string
- Percentile of performance data used to recommend Azure size.
- perf
Data stringEnd Time - End time to consider performance data for assessment
- perf
Data stringStart Time - Start time to consider performance data for assessment
- prices
Timestamp string - Time when the Azure Prices were queried. Date-Time represented in ISO-8601 format.
- reserved
Instance string - Azure reserved instance.
- scaling
Factor number - Scaling factor used over utilization data to add a performance buffer for new machines to be created in Azure. Min Value = 1.0, Max value = 1.9, Default = 1.3.
- sizing
Criterion string - Assessment sizing criterion.
- stage string
- User configurable setting that describes the status of the assessment.
- status string
- Whether the assessment has been created and is valid.
- time
Range string - Time range of performance data used to recommend a size.
- updated
Timestamp string - Time when this project was last updated. Date-Time represented in ISO-8601 format.
- vm
Uptime VmUptime Response - Specify the duration for which the VMs are up in the on-premises environment.
- azure_
disk_ strtype - Storage type selected for this disk.
- azure_
hybrid_ struse_ benefit - AHUB discount on windows virtual machines.
- azure_
location str - Target Azure location for which the machines should be assessed. These enums are the same as used by Compute API.
- azure_
offer_ strcode - Offer code according to which cost estimation is done.
- azure_
pricing_ strtier - Pricing tier for Size evaluation.
- azure_
storage_ strredundancy - Storage Redundancy type offered by Azure.
- azure_
vm_ Sequence[str]families - List of azure VM families.
- confidence_
rating_ floatin_ percentage - Confidence rating percentage for assessment. Can be in the range [0, 100].
- created_
timestamp str - Time when this project was created. Date-Time represented in ISO-8601 format.
- currency str
- Currency to report prices in.
- discount_
percentage float - Custom discount percentage to be applied on final costs. Can be in the range [0, 100].
- ea_
subscription_ strid - Enterprise agreement subscription arm id.
- monthly_
bandwidth_ floatcost - Monthly network cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- monthly_
compute_ floatcost - Monthly compute cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- float
- Monthly premium storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- monthly_
standard_ floatssd_ storage_ cost - Monthly standard SSD storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- monthly_
storage_ floatcost - Monthly storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- number_
of_ intmachines - Number of assessed machines part of this assessment.
- percentile str
- Percentile of performance data used to recommend Azure size.
- perf_
data_ strend_ time - End time to consider performance data for assessment
- perf_
data_ strstart_ time - Start time to consider performance data for assessment
- prices_
timestamp str - Time when the Azure Prices were queried. Date-Time represented in ISO-8601 format.
- reserved_
instance str - Azure reserved instance.
- scaling_
factor float - Scaling factor used over utilization data to add a performance buffer for new machines to be created in Azure. Min Value = 1.0, Max value = 1.9, Default = 1.3.
- sizing_
criterion str - Assessment sizing criterion.
- stage str
- User configurable setting that describes the status of the assessment.
- status str
- Whether the assessment has been created and is valid.
- time_
range str - Time range of performance data used to recommend a size.
- updated_
timestamp str - Time when this project was last updated. Date-Time represented in ISO-8601 format.
- vm_
uptime VmUptime Response - Specify the duration for which the VMs are up in the on-premises environment.
- azure
Disk StringType - Storage type selected for this disk.
- azure
Hybrid StringUse Benefit - AHUB discount on windows virtual machines.
- azure
Location String - Target Azure location for which the machines should be assessed. These enums are the same as used by Compute API.
- azure
Offer StringCode - Offer code according to which cost estimation is done.
- azure
Pricing StringTier - Pricing tier for Size evaluation.
- azure
Storage StringRedundancy - Storage Redundancy type offered by Azure.
- azure
Vm List<String>Families - List of azure VM families.
- confidence
Rating NumberIn Percentage - Confidence rating percentage for assessment. Can be in the range [0, 100].
- created
Timestamp String - Time when this project was created. Date-Time represented in ISO-8601 format.
- currency String
- Currency to report prices in.
- discount
Percentage Number - Custom discount percentage to be applied on final costs. Can be in the range [0, 100].
- ea
Subscription StringId - Enterprise agreement subscription arm id.
- monthly
Bandwidth NumberCost - Monthly network cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- monthly
Compute NumberCost - Monthly compute cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- Number
- Monthly premium storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- monthly
Standard NumberSSDStorage Cost - Monthly standard SSD storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- monthly
Storage NumberCost - Monthly storage cost estimate for the machines that are part of this assessment as a group, for a 31-day month.
- number
Of NumberMachines - Number of assessed machines part of this assessment.
- percentile String
- Percentile of performance data used to recommend Azure size.
- perf
Data StringEnd Time - End time to consider performance data for assessment
- perf
Data StringStart Time - Start time to consider performance data for assessment
- prices
Timestamp String - Time when the Azure Prices were queried. Date-Time represented in ISO-8601 format.
- reserved
Instance String - Azure reserved instance.
- scaling
Factor Number - Scaling factor used over utilization data to add a performance buffer for new machines to be created in Azure. Min Value = 1.0, Max value = 1.9, Default = 1.3.
- sizing
Criterion String - Assessment sizing criterion.
- stage String
- User configurable setting that describes the status of the assessment.
- status String
- Whether the assessment has been created and is valid.
- time
Range String - Time range of performance data used to recommend a size.
- updated
Timestamp String - Time when this project was last updated. Date-Time represented in ISO-8601 format.
- vm
Uptime Property Map - Specify the duration for which the VMs are up in the on-premises environment.
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.
AssessmentStage, AssessmentStageArgs
- In
Progress InProgress- Under
Review UnderReview- Approved
Approved
- Assessment
Stage In Progress InProgress- Assessment
Stage Under Review UnderReview- Assessment
Stage Approved Approved
- In
Progress InProgress- Under
Review UnderReview- Approved
Approved
- In
Progress InProgress- Under
Review UnderReview- Approved
Approved
- IN_PROGRESS
InProgress- UNDER_REVIEW
UnderReview- APPROVED
Approved
- "In
Progress" InProgress- "Under
Review" UnderReview- "Approved"
Approved
AzureDiskType, AzureDiskTypeArgs
- Unknown
Unknown- Standard
Standard- Standard
SSD StandardSSD- Premium
Premium- Standard
Or Premium StandardOrPremium- Ultra
Ultra- Premium
V2 PremiumV2
- Azure
Disk Type Unknown Unknown- Azure
Disk Type Standard Standard- Azure
Disk Type Standard SSD StandardSSD- Azure
Disk Type Premium Premium- Azure
Disk Type Standard Or Premium StandardOrPremium- Azure
Disk Type Ultra Ultra- Azure
Disk Type Premium V2 PremiumV2
- Unknown
Unknown- Standard
Standard- Standard
SSD StandardSSD- Premium
Premium- Standard
Or Premium StandardOrPremium- Ultra
Ultra- Premium
V2 PremiumV2
- Unknown
Unknown- Standard
Standard- Standard
SSD StandardSSD- Premium
Premium- Standard
Or Premium StandardOrPremium- Ultra
Ultra- Premium
V2 PremiumV2
- UNKNOWN
Unknown- STANDARD
Standard- STANDARD_SSD
StandardSSD- PREMIUM
Premium- STANDARD_OR_PREMIUM
StandardOrPremium- ULTRA
Ultra- PREMIUM_V2
PremiumV2
- "Unknown"
Unknown- "Standard"
Standard- "Standard
SSD" StandardSSD- "Premium"
Premium- "Standard
Or Premium" StandardOrPremium- "Ultra"
Ultra- "Premium
V2" PremiumV2
AzureHybridUseBenefit, AzureHybridUseBenefitArgs
- Unknown
Unknown- Yes
Yes- No
No
- Azure
Hybrid Use Benefit Unknown Unknown- Azure
Hybrid Use Benefit Yes Yes- Azure
Hybrid Use Benefit No No
- Unknown
Unknown- Yes
Yes- No
No
- Unknown
Unknown- Yes
Yes- No
No
- UNKNOWN
Unknown- YES
Yes- NO
No
- "Unknown"
Unknown- "Yes"
Yes- "No"
No
AzureLocation, AzureLocationArgs
- Unknown
Unknown- East
Asia EastAsia- Southeast
Asia SoutheastAsia- Australia
East AustraliaEast- Australia
Southeast AustraliaSoutheast- Brazil
South BrazilSouth- Canada
Central CanadaCentral- Canada
East CanadaEast- West
Europe WestEurope- North
Europe NorthEurope- Central
India CentralIndia- South
India SouthIndia- West
India WestIndia- Japan
East JapanEast- Japan
West JapanWest- Korea
Central KoreaCentral- Korea
South KoreaSouth- Uk
West UkWest- Uk
South UkSouth- North
Central Us NorthCentralUs- East
Us EastUs- West
Us2 WestUs2- South
Central Us SouthCentralUs- Central
Us CentralUs- East
Us2 EastUs2- West
Us WestUs- West
Central Us WestCentralUs- Germany
Central GermanyCentral- Germany
Northeast GermanyNortheast- China
North ChinaNorth- China
East ChinaEast- USGov
Arizona USGovArizona- USGov
Texas USGovTexas- USGov
Iowa USGovIowa- USGov
Virginia USGovVirginia- USDo
DCentral USDoDCentral- USDo
DEast USDoDEast- France
Central FranceCentral- Australia
Central AustraliaCentral- South
Africa North SouthAfricaNorth- France
South FranceSouth- Australia
Central2 AustraliaCentral2- South
Africa West SouthAfricaWest- Germany
North GermanyNorth- Germany
West Central GermanyWestCentral- Norway
East NorwayEast- Norway
West NorwayWest- China
East2 ChinaEast2- China
North2 ChinaNorth2- Switzerland
North SwitzerlandNorth- Switzerland
West SwitzerlandWest- UAENorth
UAENorth- UAECentral
UAECentral- Us
Nat East UsNatEast- Us
Nat West UsNatWest- Us
Sec East UsSecEast- Us
Sec Central UsSecCentral- Us
Sec West UsSecWest- Sweden
Central SwedenCentral- Qatar
Central QatarCentral
- Azure
Location Unknown Unknown- Azure
Location East Asia EastAsia- Azure
Location Southeast Asia SoutheastAsia- Azure
Location Australia East AustraliaEast- Azure
Location Australia Southeast AustraliaSoutheast- Azure
Location Brazil South BrazilSouth- Azure
Location Canada Central CanadaCentral- Azure
Location Canada East CanadaEast- Azure
Location West Europe WestEurope- Azure
Location North Europe NorthEurope- Azure
Location Central India CentralIndia- Azure
Location South India SouthIndia- Azure
Location West India WestIndia- Azure
Location Japan East JapanEast- Azure
Location Japan West JapanWest- Azure
Location Korea Central KoreaCentral- Azure
Location Korea South KoreaSouth- Azure
Location Uk West UkWest- Azure
Location Uk South UkSouth- Azure
Location North Central Us NorthCentralUs- Azure
Location East Us EastUs- Azure
Location West Us2 WestUs2- Azure
Location South Central Us SouthCentralUs- Azure
Location Central Us CentralUs- Azure
Location East Us2 EastUs2- Azure
Location West Us WestUs- Azure
Location West Central Us WestCentralUs- Azure
Location Germany Central GermanyCentral- Azure
Location Germany Northeast GermanyNortheast- Azure
Location China North ChinaNorth- Azure
Location China East ChinaEast- Azure
Location USGov Arizona USGovArizona- Azure
Location USGov Texas USGovTexas- Azure
Location USGov Iowa USGovIowa- Azure
Location USGov Virginia USGovVirginia- Azure
Location USDo DCentral USDoDCentral- Azure
Location USDo DEast USDoDEast- Azure
Location France Central FranceCentral- Azure
Location Australia Central AustraliaCentral- Azure
Location South Africa North SouthAfricaNorth- Azure
Location France South FranceSouth- Azure
Location Australia Central2 AustraliaCentral2- Azure
Location South Africa West SouthAfricaWest- Azure
Location Germany North GermanyNorth- Azure
Location Germany West Central GermanyWestCentral- Azure
Location Norway East NorwayEast- Azure
Location Norway West NorwayWest- Azure
Location China East2 ChinaEast2- Azure
Location China North2 ChinaNorth2- Azure
Location Switzerland North SwitzerlandNorth- Azure
Location Switzerland West SwitzerlandWest- Azure
Location UAENorth UAENorth- Azure
Location UAECentral UAECentral- Azure
Location Us Nat East UsNatEast- Azure
Location Us Nat West UsNatWest- Azure
Location Us Sec East UsSecEast- Azure
Location Us Sec Central UsSecCentral- Azure
Location Us Sec West UsSecWest- Azure
Location Sweden Central SwedenCentral- Azure
Location Qatar Central QatarCentral
- Unknown
Unknown- East
Asia EastAsia- Southeast
Asia SoutheastAsia- Australia
East AustraliaEast- Australia
Southeast AustraliaSoutheast- Brazil
South BrazilSouth- Canada
Central CanadaCentral- Canada
East CanadaEast- West
Europe WestEurope- North
Europe NorthEurope- Central
India CentralIndia- South
India SouthIndia- West
India WestIndia- Japan
East JapanEast- Japan
West JapanWest- Korea
Central KoreaCentral- Korea
South KoreaSouth- Uk
West UkWest- Uk
South UkSouth- North
Central Us NorthCentralUs- East
Us EastUs- West
Us2 WestUs2- South
Central Us SouthCentralUs- Central
Us CentralUs- East
Us2 EastUs2- West
Us WestUs- West
Central Us WestCentralUs- Germany
Central GermanyCentral- Germany
Northeast GermanyNortheast- China
North ChinaNorth- China
East ChinaEast- USGov
Arizona USGovArizona- USGov
Texas USGovTexas- USGov
Iowa USGovIowa- USGov
Virginia USGovVirginia- USDo
DCentral USDoDCentral- USDo
DEast USDoDEast- France
Central FranceCentral- Australia
Central AustraliaCentral- South
Africa North SouthAfricaNorth- France
South FranceSouth- Australia
Central2 AustraliaCentral2- South
Africa West SouthAfricaWest- Germany
North GermanyNorth- Germany
West Central GermanyWestCentral- Norway
East NorwayEast- Norway
West NorwayWest- China
East2 ChinaEast2- China
North2 ChinaNorth2- Switzerland
North SwitzerlandNorth- Switzerland
West SwitzerlandWest- UAENorth
UAENorth- UAECentral
UAECentral- Us
Nat East UsNatEast- Us
Nat West UsNatWest- Us
Sec East UsSecEast- Us
Sec Central UsSecCentral- Us
Sec West UsSecWest- Sweden
Central SwedenCentral- Qatar
Central QatarCentral
- Unknown
Unknown- East
Asia EastAsia- Southeast
Asia SoutheastAsia- Australia
East AustraliaEast- Australia
Southeast AustraliaSoutheast- Brazil
South BrazilSouth- Canada
Central CanadaCentral- Canada
East CanadaEast- West
Europe WestEurope- North
Europe NorthEurope- Central
India CentralIndia- South
India SouthIndia- West
India WestIndia- Japan
East JapanEast- Japan
West JapanWest- Korea
Central KoreaCentral- Korea
South KoreaSouth- Uk
West UkWest- Uk
South UkSouth- North
Central Us NorthCentralUs- East
Us EastUs- West
Us2 WestUs2- South
Central Us SouthCentralUs- Central
Us CentralUs- East
Us2 EastUs2- West
Us WestUs- West
Central Us WestCentralUs- Germany
Central GermanyCentral- Germany
Northeast GermanyNortheast- China
North ChinaNorth- China
East ChinaEast- USGov
Arizona USGovArizona- USGov
Texas USGovTexas- USGov
Iowa USGovIowa- USGov
Virginia USGovVirginia- USDo
DCentral USDoDCentral- USDo
DEast USDoDEast- France
Central FranceCentral- Australia
Central AustraliaCentral- South
Africa North SouthAfricaNorth- France
South FranceSouth- Australia
Central2 AustraliaCentral2- South
Africa West SouthAfricaWest- Germany
North GermanyNorth- Germany
West Central GermanyWestCentral- Norway
East NorwayEast- Norway
West NorwayWest- China
East2 ChinaEast2- China
North2 ChinaNorth2- Switzerland
North SwitzerlandNorth- Switzerland
West SwitzerlandWest- UAENorth
UAENorth- UAECentral
UAECentral- Us
Nat East UsNatEast- Us
Nat West UsNatWest- Us
Sec East UsSecEast- Us
Sec Central UsSecCentral- Us
Sec West UsSecWest- Sweden
Central SwedenCentral- Qatar
Central QatarCentral
- UNKNOWN
Unknown- EAST_ASIA
EastAsia- SOUTHEAST_ASIA
SoutheastAsia- AUSTRALIA_EAST
AustraliaEast- AUSTRALIA_SOUTHEAST
AustraliaSoutheast- BRAZIL_SOUTH
BrazilSouth- CANADA_CENTRAL
CanadaCentral- CANADA_EAST
CanadaEast- WEST_EUROPE
WestEurope- NORTH_EUROPE
NorthEurope- CENTRAL_INDIA
CentralIndia- SOUTH_INDIA
SouthIndia- WEST_INDIA
WestIndia- JAPAN_EAST
JapanEast- JAPAN_WEST
JapanWest- KOREA_CENTRAL
KoreaCentral- KOREA_SOUTH
KoreaSouth- UK_WEST
UkWest- UK_SOUTH
UkSouth- NORTH_CENTRAL_US
NorthCentralUs- EAST_US
EastUs- WEST_US2
WestUs2- SOUTH_CENTRAL_US
SouthCentralUs- CENTRAL_US
CentralUs- EAST_US2
EastUs2- WEST_US
WestUs- WEST_CENTRAL_US
WestCentralUs- GERMANY_CENTRAL
GermanyCentral- GERMANY_NORTHEAST
GermanyNortheast- CHINA_NORTH
ChinaNorth- CHINA_EAST
ChinaEast- US_GOV_ARIZONA
USGovArizona- US_GOV_TEXAS
USGovTexas- US_GOV_IOWA
USGovIowa- US_GOV_VIRGINIA
USGovVirginia- US_DO_D_CENTRAL
USDoDCentral- US_DO_D_EAST
USDoDEast- FRANCE_CENTRAL
FranceCentral- AUSTRALIA_CENTRAL
AustraliaCentral- SOUTH_AFRICA_NORTH
SouthAfricaNorth- FRANCE_SOUTH
FranceSouth- AUSTRALIA_CENTRAL2
AustraliaCentral2- SOUTH_AFRICA_WEST
SouthAfricaWest- GERMANY_NORTH
GermanyNorth- GERMANY_WEST_CENTRAL
GermanyWestCentral- NORWAY_EAST
NorwayEast- NORWAY_WEST
NorwayWest- CHINA_EAST2
ChinaEast2- CHINA_NORTH2
ChinaNorth2- SWITZERLAND_NORTH
SwitzerlandNorth- SWITZERLAND_WEST
SwitzerlandWest- UAE_NORTH
UAENorth- UAE_CENTRAL
UAECentral- US_NAT_EAST
UsNatEast- US_NAT_WEST
UsNatWest- US_SEC_EAST
UsSecEast- US_SEC_CENTRAL
UsSecCentral- US_SEC_WEST
UsSecWest- SWEDEN_CENTRAL
SwedenCentral- QATAR_CENTRAL
QatarCentral
- "Unknown"
Unknown- "East
Asia" EastAsia- "Southeast
Asia" SoutheastAsia- "Australia
East" AustraliaEast- "Australia
Southeast" AustraliaSoutheast- "Brazil
South" BrazilSouth- "Canada
Central" CanadaCentral- "Canada
East" CanadaEast- "West
Europe" WestEurope- "North
Europe" NorthEurope- "Central
India" CentralIndia- "South
India" SouthIndia- "West
India" WestIndia- "Japan
East" JapanEast- "Japan
West" JapanWest- "Korea
Central" KoreaCentral- "Korea
South" KoreaSouth- "Uk
West" UkWest- "Uk
South" UkSouth- "North
Central Us" NorthCentralUs- "East
Us" EastUs- "West
Us2" WestUs2- "South
Central Us" SouthCentralUs- "Central
Us" CentralUs- "East
Us2" EastUs2- "West
Us" WestUs- "West
Central Us" WestCentralUs- "Germany
Central" GermanyCentral- "Germany
Northeast" GermanyNortheast- "China
North" ChinaNorth- "China
East" ChinaEast- "USGov
Arizona" USGovArizona- "USGov
Texas" USGovTexas- "USGov
Iowa" USGovIowa- "USGov
Virginia" USGovVirginia- "USDo
DCentral" USDoDCentral- "USDo
DEast" USDoDEast- "France
Central" FranceCentral- "Australia
Central" AustraliaCentral- "South
Africa North" SouthAfricaNorth- "France
South" FranceSouth- "Australia
Central2" AustraliaCentral2- "South
Africa West" SouthAfricaWest- "Germany
North" GermanyNorth- "Germany
West Central" GermanyWestCentral- "Norway
East" NorwayEast- "Norway
West" NorwayWest- "China
East2" ChinaEast2- "China
North2" ChinaNorth2- "Switzerland
North" SwitzerlandNorth- "Switzerland
West" SwitzerlandWest- "UAENorth"
UAENorth- "UAECentral"
UAECentral- "Us
Nat East" UsNatEast- "Us
Nat West" UsNatWest- "Us
Sec East" UsSecEast- "Us
Sec Central" UsSecCentral- "Us
Sec West" UsSecWest- "Sweden
Central" SwedenCentral- "Qatar
Central" QatarCentral
AzureOfferCode, AzureOfferCodeArgs
- Unknown
Unknown- Msazr0003P
MSAZR0003P- Msazr0044P
MSAZR0044P- Msazr0059P
MSAZR0059P- Msazr0060P
MSAZR0060P- Msazr0062P
MSAZR0062P- Msazr0063P
MSAZR0063P- Msazr0064P
MSAZR0064P- Msazr0029P
MSAZR0029P- Msazr0022P
MSAZR0022P- Msazr0023P
MSAZR0023P- Msazr0148P
MSAZR0148P- Msazr0025P
MSAZR0025P- Msazr0036P
MSAZR0036P- Msazr0120P
MSAZR0120P- Msazr0121P
MSAZR0121P- Msazr0122P
MSAZR0122P- Msazr0123P
MSAZR0123P- Msazr0124P
MSAZR0124P- Msazr0125P
MSAZR0125P- Msazr0126P
MSAZR0126P- Msazr0127P
MSAZR0127P- Msazr0128P
MSAZR0128P- Msazr0129P
MSAZR0129P- Msazr0130P
MSAZR0130P- Msazr0111P
MSAZR0111P- Msazr0144P
MSAZR0144P- Msazr0149P
MSAZR0149P- Msmcazr0044P
MSMCAZR0044P- Msmcazr0059P
MSMCAZR0059P- Msmcazr0060P
MSMCAZR0060P- Msmcazr0063P
MSMCAZR0063P- Msmcazr0120P
MSMCAZR0120P- Msmcazr0121P
MSMCAZR0121P- Msmcazr0125P
MSMCAZR0125P- Msmcazr0128P
MSMCAZR0128P- Msazrde0003P
MSAZRDE0003P- Msazrde0044P
MSAZRDE0044P- Msazrusgov0003P
MSAZRUSGOV0003P- EA
EA- Msazr0243P
MSAZR0243P- Savings
Plan1Year SavingsPlan1Year- Savings
Plan3Year SavingsPlan3Year
- Azure
Offer Code Unknown Unknown- Azure
Offer Code Msazr0003P MSAZR0003P- Azure
Offer Code Msazr0044P MSAZR0044P- Azure
Offer Code Msazr0059P MSAZR0059P- Azure
Offer Code Msazr0060P MSAZR0060P- Azure
Offer Code Msazr0062P MSAZR0062P- Azure
Offer Code Msazr0063P MSAZR0063P- Azure
Offer Code Msazr0064P MSAZR0064P- Azure
Offer Code Msazr0029P MSAZR0029P- Azure
Offer Code Msazr0022P MSAZR0022P- Azure
Offer Code Msazr0023P MSAZR0023P- Azure
Offer Code Msazr0148P MSAZR0148P- Azure
Offer Code Msazr0025P MSAZR0025P- Azure
Offer Code Msazr0036P MSAZR0036P- Azure
Offer Code Msazr0120P MSAZR0120P- Azure
Offer Code Msazr0121P MSAZR0121P- Azure
Offer Code Msazr0122P MSAZR0122P- Azure
Offer Code Msazr0123P MSAZR0123P- Azure
Offer Code Msazr0124P MSAZR0124P- Azure
Offer Code Msazr0125P MSAZR0125P- Azure
Offer Code Msazr0126P MSAZR0126P- Azure
Offer Code Msazr0127P MSAZR0127P- Azure
Offer Code Msazr0128P MSAZR0128P- Azure
Offer Code Msazr0129P MSAZR0129P- Azure
Offer Code Msazr0130P MSAZR0130P- Azure
Offer Code Msazr0111P MSAZR0111P- Azure
Offer Code Msazr0144P MSAZR0144P- Azure
Offer Code Msazr0149P MSAZR0149P- Azure
Offer Code Msmcazr0044P MSMCAZR0044P- Azure
Offer Code Msmcazr0059P MSMCAZR0059P- Azure
Offer Code Msmcazr0060P MSMCAZR0060P- Azure
Offer Code Msmcazr0063P MSMCAZR0063P- Azure
Offer Code Msmcazr0120P MSMCAZR0120P- Azure
Offer Code Msmcazr0121P MSMCAZR0121P- Azure
Offer Code Msmcazr0125P MSMCAZR0125P- Azure
Offer Code Msmcazr0128P MSMCAZR0128P- Azure
Offer Code Msazrde0003P MSAZRDE0003P- Azure
Offer Code Msazrde0044P MSAZRDE0044P- Azure
Offer Code Msazrusgov0003P MSAZRUSGOV0003P- Azure
Offer Code EA EA- Azure
Offer Code Msazr0243P MSAZR0243P- Azure
Offer Code Savings Plan1Year SavingsPlan1Year- Azure
Offer Code Savings Plan3Year SavingsPlan3Year
- Unknown
Unknown- Msazr0003P
MSAZR0003P- Msazr0044P
MSAZR0044P- Msazr0059P
MSAZR0059P- Msazr0060P
MSAZR0060P- Msazr0062P
MSAZR0062P- Msazr0063P
MSAZR0063P- Msazr0064P
MSAZR0064P- Msazr0029P
MSAZR0029P- Msazr0022P
MSAZR0022P- Msazr0023P
MSAZR0023P- Msazr0148P
MSAZR0148P- Msazr0025P
MSAZR0025P- Msazr0036P
MSAZR0036P- Msazr0120P
MSAZR0120P- Msazr0121P
MSAZR0121P- Msazr0122P
MSAZR0122P- Msazr0123P
MSAZR0123P- Msazr0124P
MSAZR0124P- Msazr0125P
MSAZR0125P- Msazr0126P
MSAZR0126P- Msazr0127P
MSAZR0127P- Msazr0128P
MSAZR0128P- Msazr0129P
MSAZR0129P- Msazr0130P
MSAZR0130P- Msazr0111P
MSAZR0111P- Msazr0144P
MSAZR0144P- Msazr0149P
MSAZR0149P- Msmcazr0044P
MSMCAZR0044P- Msmcazr0059P
MSMCAZR0059P- Msmcazr0060P
MSMCAZR0060P- Msmcazr0063P
MSMCAZR0063P- Msmcazr0120P
MSMCAZR0120P- Msmcazr0121P
MSMCAZR0121P- Msmcazr0125P
MSMCAZR0125P- Msmcazr0128P
MSMCAZR0128P- Msazrde0003P
MSAZRDE0003P- Msazrde0044P
MSAZRDE0044P- Msazrusgov0003P
MSAZRUSGOV0003P- EA
EA- Msazr0243P
MSAZR0243P- Savings
Plan1Year SavingsPlan1Year- Savings
Plan3Year SavingsPlan3Year
- Unknown
Unknown- Msazr0003P
MSAZR0003P- Msazr0044P
MSAZR0044P- Msazr0059P
MSAZR0059P- Msazr0060P
MSAZR0060P- Msazr0062P
MSAZR0062P- Msazr0063P
MSAZR0063P- Msazr0064P
MSAZR0064P- Msazr0029P
MSAZR0029P- Msazr0022P
MSAZR0022P- Msazr0023P
MSAZR0023P- Msazr0148P
MSAZR0148P- Msazr0025P
MSAZR0025P- Msazr0036P
MSAZR0036P- Msazr0120P
MSAZR0120P- Msazr0121P
MSAZR0121P- Msazr0122P
MSAZR0122P- Msazr0123P
MSAZR0123P- Msazr0124P
MSAZR0124P- Msazr0125P
MSAZR0125P- Msazr0126P
MSAZR0126P- Msazr0127P
MSAZR0127P- Msazr0128P
MSAZR0128P- Msazr0129P
MSAZR0129P- Msazr0130P
MSAZR0130P- Msazr0111P
MSAZR0111P- Msazr0144P
MSAZR0144P- Msazr0149P
MSAZR0149P- Msmcazr0044P
MSMCAZR0044P- Msmcazr0059P
MSMCAZR0059P- Msmcazr0060P
MSMCAZR0060P- Msmcazr0063P
MSMCAZR0063P- Msmcazr0120P
MSMCAZR0120P- Msmcazr0121P
MSMCAZR0121P- Msmcazr0125P
MSMCAZR0125P- Msmcazr0128P
MSMCAZR0128P- Msazrde0003P
MSAZRDE0003P- Msazrde0044P
MSAZRDE0044P- Msazrusgov0003P
MSAZRUSGOV0003P- EA
EA- Msazr0243P
MSAZR0243P- Savings
Plan1Year SavingsPlan1Year- Savings
Plan3Year SavingsPlan3Year
- UNKNOWN
Unknown- MSAZR0003_P
MSAZR0003P- MSAZR0044_P
MSAZR0044P- MSAZR0059_P
MSAZR0059P- MSAZR0060_P
MSAZR0060P- MSAZR0062_P
MSAZR0062P- MSAZR0063_P
MSAZR0063P- MSAZR0064_P
MSAZR0064P- MSAZR0029_P
MSAZR0029P- MSAZR0022_P
MSAZR0022P- MSAZR0023_P
MSAZR0023P- MSAZR0148_P
MSAZR0148P- MSAZR0025_P
MSAZR0025P- MSAZR0036_P
MSAZR0036P- MSAZR0120_P
MSAZR0120P- MSAZR0121_P
MSAZR0121P- MSAZR0122_P
MSAZR0122P- MSAZR0123_P
MSAZR0123P- MSAZR0124_P
MSAZR0124P- MSAZR0125_P
MSAZR0125P- MSAZR0126_P
MSAZR0126P- MSAZR0127_P
MSAZR0127P- MSAZR0128_P
MSAZR0128P- MSAZR0129_P
MSAZR0129P- MSAZR0130_P
MSAZR0130P- MSAZR0111_P
MSAZR0111P- MSAZR0144_P
MSAZR0144P- MSAZR0149_P
MSAZR0149P- MSMCAZR0044_P
MSMCAZR0044P- MSMCAZR0059_P
MSMCAZR0059P- MSMCAZR0060_P
MSMCAZR0060P- MSMCAZR0063_P
MSMCAZR0063P- MSMCAZR0120_P
MSMCAZR0120P- MSMCAZR0121_P
MSMCAZR0121P- MSMCAZR0125_P
MSMCAZR0125P- MSMCAZR0128_P
MSMCAZR0128P- MSAZRDE0003_P
MSAZRDE0003P- MSAZRDE0044_P
MSAZRDE0044P- MSAZRUSGOV0003_P
MSAZRUSGOV0003P- EA
EA- MSAZR0243_P
MSAZR0243P- SAVINGS_PLAN1_YEAR
SavingsPlan1Year- SAVINGS_PLAN3_YEAR
SavingsPlan3Year
- "Unknown"
Unknown- "MSAZR0003P"
MSAZR0003P- "MSAZR0044P"
MSAZR0044P- "MSAZR0059P"
MSAZR0059P- "MSAZR0060P"
MSAZR0060P- "MSAZR0062P"
MSAZR0062P- "MSAZR0063P"
MSAZR0063P- "MSAZR0064P"
MSAZR0064P- "MSAZR0029P"
MSAZR0029P- "MSAZR0022P"
MSAZR0022P- "MSAZR0023P"
MSAZR0023P- "MSAZR0148P"
MSAZR0148P- "MSAZR0025P"
MSAZR0025P- "MSAZR0036P"
MSAZR0036P- "MSAZR0120P"
MSAZR0120P- "MSAZR0121P"
MSAZR0121P- "MSAZR0122P"
MSAZR0122P- "MSAZR0123P"
MSAZR0123P- "MSAZR0124P"
MSAZR0124P- "MSAZR0125P"
MSAZR0125P- "MSAZR0126P"
MSAZR0126P- "MSAZR0127P"
MSAZR0127P- "MSAZR0128P"
MSAZR0128P- "MSAZR0129P"
MSAZR0129P- "MSAZR0130P"
MSAZR0130P- "MSAZR0111P"
MSAZR0111P- "MSAZR0144P"
MSAZR0144P- "MSAZR0149P"
MSAZR0149P- "MSMCAZR0044P"
MSMCAZR0044P- "MSMCAZR0059P"
MSMCAZR0059P- "MSMCAZR0060P"
MSMCAZR0060P- "MSMCAZR0063P"
MSMCAZR0063P- "MSMCAZR0120P"
MSMCAZR0120P- "MSMCAZR0121P"
MSMCAZR0121P- "MSMCAZR0125P"
MSMCAZR0125P- "MSMCAZR0128P"
MSMCAZR0128P- "MSAZRDE0003P"
MSAZRDE0003P- "MSAZRDE0044P"
MSAZRDE0044P- "MSAZRUSGOV0003P"
MSAZRUSGOV0003P- "EA"
EA- "MSAZR0243P"
MSAZR0243P- "Savings
Plan1Year" SavingsPlan1Year- "Savings
Plan3Year" SavingsPlan3Year
AzurePricingTier, AzurePricingTierArgs
- Standard
Standard- Basic
Basic
- Azure
Pricing Tier Standard Standard- Azure
Pricing Tier Basic Basic
- Standard
Standard- Basic
Basic
- Standard
Standard- Basic
Basic
- STANDARD
Standard- BASIC
Basic
- "Standard"
Standard- "Basic"
Basic
AzureStorageRedundancy, AzureStorageRedundancyArgs
- Unknown
Unknown- Locally
Redundant LocallyRedundant- Zone
Redundant ZoneRedundant- Geo
Redundant GeoRedundant- Read
Access Geo Redundant ReadAccessGeoRedundant
- Azure
Storage Redundancy Unknown Unknown- Azure
Storage Redundancy Locally Redundant LocallyRedundant- Azure
Storage Redundancy Zone Redundant ZoneRedundant- Azure
Storage Redundancy Geo Redundant GeoRedundant- Azure
Storage Redundancy Read Access Geo Redundant ReadAccessGeoRedundant
- Unknown
Unknown- Locally
Redundant LocallyRedundant- Zone
Redundant ZoneRedundant- Geo
Redundant GeoRedundant- Read
Access Geo Redundant ReadAccessGeoRedundant
- Unknown
Unknown- Locally
Redundant LocallyRedundant- Zone
Redundant ZoneRedundant- Geo
Redundant GeoRedundant- Read
Access Geo Redundant ReadAccessGeoRedundant
- UNKNOWN
Unknown- LOCALLY_REDUNDANT
LocallyRedundant- ZONE_REDUNDANT
ZoneRedundant- GEO_REDUNDANT
GeoRedundant- READ_ACCESS_GEO_REDUNDANT
ReadAccessGeoRedundant
- "Unknown"
Unknown- "Locally
Redundant" LocallyRedundant- "Zone
Redundant" ZoneRedundant- "Geo
Redundant" GeoRedundant- "Read
Access Geo Redundant" ReadAccessGeoRedundant
AzureVmFamily, AzureVmFamilyArgs
- Unknown
Unknown- Basic
A0A4 Basic_A0_A4- Standard
A0A7 Standard_A0_A7- Standard
A8A11 Standard_A8_A11- Av2Series
Av2_series- DSeries
D_series- Dv2Series
Dv2_series- DSSeries
DS_series- DSv2Series
DSv2_series- FSeries
F_series- Fs
Series Fs_series- GSeries
G_series- GSSeries
GS_series- HSeries
H_series- Ls
Series Ls_series- Dsv3Series
Dsv3_series- Dv3Series
Dv3_series- Fsv2Series
Fsv2_series- Ev3Series
Ev3_series- Esv3Series
Esv3_series- MSeries
M_series- DCSeries
DC_Series- Lsv2Series
Lsv2_series- Ev4Series
Ev4_series- Esv4Series
Esv4_series- Edv4Series
Edv4_series- Edsv4Series
Edsv4_series- Dv4Series
Dv4_series- Dsv4Series
Dsv4_series- Ddv4Series
Ddv4_series- Ddsv4Series
Ddsv4_series- Easv4Series
Easv4_series- Dasv4Series
Dasv4_series- Mv2Series
Mv2_series- Eav4Series
Eav4_series- Dav4Series
Dav4_series- Msv2Series
Msv2_series- Mdsv2Series
Mdsv2_series- Dv5Series
Dv5_series- Dsv5Series
Dsv5_series- Ddv5Series
Ddv5_series- Ddsv5Series
Ddsv5_series- Dasv5Series
Dasv5_series- Dadsv5Series
Dadsv5_series- Ev5Series
Ev5_series- Esv5Series
Esv5_series- Edv5Series
Edv5_series- Edsv5Series
Edsv5_series- Easv5Series
Easv5_series- Eadsv5Series
Eadsv5_series- Ebsv5Series
Ebsv5_series- Ebdsv5Series
Ebdsv5_series
- Azure
Vm Family Unknown Unknown- Azure
Vm Family Basic A0A4 Basic_A0_A4- Azure
Vm Family Standard A0A7 Standard_A0_A7- Azure
Vm Family Standard A8A11 Standard_A8_A11- Azure
Vm Family Av2Series Av2_series- Azure
Vm Family DSeries D_series- Azure
Vm Family Dv2Series Dv2_series- Azure
Vm Family DSSeries DS_series- Azure
Vm Family DSv2Series DSv2_series- Azure
Vm Family FSeries F_series- Azure
Vm Family Fs Series Fs_series- Azure
Vm Family GSeries G_series- Azure
Vm Family GSSeries GS_series- Azure
Vm Family HSeries H_series- Azure
Vm Family Ls Series Ls_series- Azure
Vm Family Dsv3Series Dsv3_series- Azure
Vm Family Dv3Series Dv3_series- Azure
Vm Family Fsv2Series Fsv2_series- Azure
Vm Family Ev3Series Ev3_series- Azure
Vm Family Esv3Series Esv3_series- Azure
Vm Family MSeries M_series- Azure
Vm Family DCSeries DC_Series- Azure
Vm Family Lsv2Series Lsv2_series- Azure
Vm Family Ev4Series Ev4_series- Azure
Vm Family Esv4Series Esv4_series- Azure
Vm Family Edv4Series Edv4_series- Azure
Vm Family Edsv4Series Edsv4_series- Azure
Vm Family Dv4Series Dv4_series- Azure
Vm Family Dsv4Series Dsv4_series- Azure
Vm Family Ddv4Series Ddv4_series- Azure
Vm Family Ddsv4Series Ddsv4_series- Azure
Vm Family Easv4Series Easv4_series- Azure
Vm Family Dasv4Series Dasv4_series- Azure
Vm Family Mv2Series Mv2_series- Azure
Vm Family Eav4Series Eav4_series- Azure
Vm Family Dav4Series Dav4_series- Azure
Vm Family Msv2Series Msv2_series- Azure
Vm Family Mdsv2Series Mdsv2_series- Azure
Vm Family Dv5Series Dv5_series- Azure
Vm Family Dsv5Series Dsv5_series- Azure
Vm Family Ddv5Series Ddv5_series- Azure
Vm Family Ddsv5Series Ddsv5_series- Azure
Vm Family Dasv5Series Dasv5_series- Azure
Vm Family Dadsv5Series Dadsv5_series- Azure
Vm Family Ev5Series Ev5_series- Azure
Vm Family Esv5Series Esv5_series- Azure
Vm Family Edv5Series Edv5_series- Azure
Vm Family Edsv5Series Edsv5_series- Azure
Vm Family Easv5Series Easv5_series- Azure
Vm Family Eadsv5Series Eadsv5_series- Azure
Vm Family Ebsv5Series Ebsv5_series- Azure
Vm Family Ebdsv5Series Ebdsv5_series
- Unknown
Unknown- Basic
A0A4 Basic_A0_A4- Standard
A0A7 Standard_A0_A7- Standard
A8A11 Standard_A8_A11- Av2Series
Av2_series- DSeries
D_series- Dv2Series
Dv2_series- DSSeries
DS_series- DSv2Series
DSv2_series- FSeries
F_series- Fs
Series Fs_series- GSeries
G_series- GSSeries
GS_series- HSeries
H_series- Ls
Series Ls_series- Dsv3Series
Dsv3_series- Dv3Series
Dv3_series- Fsv2Series
Fsv2_series- Ev3Series
Ev3_series- Esv3Series
Esv3_series- MSeries
M_series- DCSeries
DC_Series- Lsv2Series
Lsv2_series- Ev4Series
Ev4_series- Esv4Series
Esv4_series- Edv4Series
Edv4_series- Edsv4Series
Edsv4_series- Dv4Series
Dv4_series- Dsv4Series
Dsv4_series- Ddv4Series
Ddv4_series- Ddsv4Series
Ddsv4_series- Easv4Series
Easv4_series- Dasv4Series
Dasv4_series- Mv2Series
Mv2_series- Eav4Series
Eav4_series- Dav4Series
Dav4_series- Msv2Series
Msv2_series- Mdsv2Series
Mdsv2_series- Dv5Series
Dv5_series- Dsv5Series
Dsv5_series- Ddv5Series
Ddv5_series- Ddsv5Series
Ddsv5_series- Dasv5Series
Dasv5_series- Dadsv5Series
Dadsv5_series- Ev5Series
Ev5_series- Esv5Series
Esv5_series- Edv5Series
Edv5_series- Edsv5Series
Edsv5_series- Easv5Series
Easv5_series- Eadsv5Series
Eadsv5_series- Ebsv5Series
Ebsv5_series- Ebdsv5Series
Ebdsv5_series
- Unknown
Unknown- Basic
A0A4 Basic_A0_A4- Standard
A0A7 Standard_A0_A7- Standard
A8A11 Standard_A8_A11- Av2Series
Av2_series- DSeries
D_series- Dv2Series
Dv2_series- DSSeries
DS_series- DSv2Series
DSv2_series- FSeries
F_series- Fs
Series Fs_series- GSeries
G_series- GSSeries
GS_series- HSeries
H_series- Ls
Series Ls_series- Dsv3Series
Dsv3_series- Dv3Series
Dv3_series- Fsv2Series
Fsv2_series- Ev3Series
Ev3_series- Esv3Series
Esv3_series- MSeries
M_series- DCSeries
DC_Series- Lsv2Series
Lsv2_series- Ev4Series
Ev4_series- Esv4Series
Esv4_series- Edv4Series
Edv4_series- Edsv4Series
Edsv4_series- Dv4Series
Dv4_series- Dsv4Series
Dsv4_series- Ddv4Series
Ddv4_series- Ddsv4Series
Ddsv4_series- Easv4Series
Easv4_series- Dasv4Series
Dasv4_series- Mv2Series
Mv2_series- Eav4Series
Eav4_series- Dav4Series
Dav4_series- Msv2Series
Msv2_series- Mdsv2Series
Mdsv2_series- Dv5Series
Dv5_series- Dsv5Series
Dsv5_series- Ddv5Series
Ddv5_series- Ddsv5Series
Ddsv5_series- Dasv5Series
Dasv5_series- Dadsv5Series
Dadsv5_series- Ev5Series
Ev5_series- Esv5Series
Esv5_series- Edv5Series
Edv5_series- Edsv5Series
Edsv5_series- Easv5Series
Easv5_series- Eadsv5Series
Eadsv5_series- Ebsv5Series
Ebsv5_series- Ebdsv5Series
Ebdsv5_series
- UNKNOWN
Unknown- BASIC_A0_A4
Basic_A0_A4- STANDARD_A0_A7
Standard_A0_A7- STANDARD_A8_A11
Standard_A8_A11- AV2_SERIES
Av2_series- D_SERIES
D_series- DV2_SERIES
Dv2_series- DS_SERIES
DS_series- D_SV2_SERIES
DSv2_series- F_SERIES
F_series- FS_SERIES
Fs_series- G_SERIES
G_series- GS_SERIES
GS_series- H_SERIES
H_series- LS_SERIES
Ls_series- DSV3_SERIES
Dsv3_series- DV3_SERIES
Dv3_series- FSV2_SERIES
Fsv2_series- EV3_SERIES
Ev3_series- ESV3_SERIES
Esv3_series- M_SERIES
M_series- DC_SERIES
DC_Series- LSV2_SERIES
Lsv2_series- EV4_SERIES
Ev4_series- ESV4_SERIES
Esv4_series- EDV4_SERIES
Edv4_series- EDSV4_SERIES
Edsv4_series- DV4_SERIES
Dv4_series- DSV4_SERIES
Dsv4_series- DDV4_SERIES
Ddv4_series- DDSV4_SERIES
Ddsv4_series- EASV4_SERIES
Easv4_series- DASV4_SERIES
Dasv4_series- MV2_SERIES
Mv2_series- EAV4_SERIES
Eav4_series- DAV4_SERIES
Dav4_series- MSV2_SERIES
Msv2_series- MDSV2_SERIES
Mdsv2_series- DV5_SERIES
Dv5_series- DSV5_SERIES
Dsv5_series- DDV5_SERIES
Ddv5_series- DDSV5_SERIES
Ddsv5_series- DASV5_SERIES
Dasv5_series- DADSV5_SERIES
Dadsv5_series- EV5_SERIES
Ev5_series- ESV5_SERIES
Esv5_series- EDV5_SERIES
Edv5_series- EDSV5_SERIES
Edsv5_series- EASV5_SERIES
Easv5_series- EADSV5_SERIES
Eadsv5_series- EBSV5_SERIES
Ebsv5_series- EBDSV5_SERIES
Ebdsv5_series
- "Unknown"
Unknown- "Basic_A0_A4"
Basic_A0_A4- "Standard_A0_A7"
Standard_A0_A7- "Standard_A8_A11"
Standard_A8_A11- "Av2_
series" Av2_series- "D_
series" D_series- "Dv2_
series" Dv2_series- "DS_
series" DS_series- "DSv2_
series" DSv2_series- "F_
series" F_series- "Fs_
series" Fs_series- "G_
series" G_series- "GS_
series" GS_series- "H_
series" H_series- "Ls_
series" Ls_series- "Dsv3_
series" Dsv3_series- "Dv3_
series" Dv3_series- "Fsv2_
series" Fsv2_series- "Ev3_
series" Ev3_series- "Esv3_
series" Esv3_series- "M_
series" M_series- "DC_Series"
DC_Series- "Lsv2_
series" Lsv2_series- "Ev4_
series" Ev4_series- "Esv4_
series" Esv4_series- "Edv4_
series" Edv4_series- "Edsv4_
series" Edsv4_series- "Dv4_
series" Dv4_series- "Dsv4_
series" Dsv4_series- "Ddv4_
series" Ddv4_series- "Ddsv4_
series" Ddsv4_series- "Easv4_
series" Easv4_series- "Dasv4_
series" Dasv4_series- "Mv2_
series" Mv2_series- "Eav4_
series" Eav4_series- "Dav4_
series" Dav4_series- "Msv2_
series" Msv2_series- "Mdsv2_
series" Mdsv2_series- "Dv5_
series" Dv5_series- "Dsv5_
series" Dsv5_series- "Ddv5_
series" Ddv5_series- "Ddsv5_
series" Ddsv5_series- "Dasv5_
series" Dasv5_series- "Dadsv5_
series" Dadsv5_series- "Ev5_
series" Ev5_series- "Esv5_
series" Esv5_series- "Edv5_
series" Edv5_series- "Edsv5_
series" Edsv5_series- "Easv5_
series" Easv5_series- "Eadsv5_
series" Eadsv5_series- "Ebsv5_
series" Ebsv5_series- "Ebdsv5_
series" Ebdsv5_series
Currency, CurrencyArgs
- Unknown
Unknown- USD
USD- DKK
DKK- CAD
CAD- IDR
IDR- JPY
JPY- KRW
KRW- NZD
NZD- NOK
NOK- RUB
RUB- SAR
SAR- ZAR
ZAR- SEK
SEK- TRY
TRY- GBP
GBP- MXN
MXN- MYR
MYR- INR
INR- HKD
HKD- BRL
BRL- TWD
TWD- EUR
EUR- CHF
CHF- ARS
ARS- AUD
AUD- CNY
CNY
- Currency
Unknown Unknown- Currency
USD USD- Currency
DKK DKK- Currency
CAD CAD- Currency
IDR IDR- Currency
JPY JPY- Currency
KRW KRW- Currency
NZD NZD- Currency
NOK NOK- Currency
RUB RUB- Currency
SAR SAR- Currency
ZAR ZAR- Currency
SEK SEK- Currency
TRY TRY- Currency
GBP GBP- Currency
MXN MXN- Currency
MYR MYR- Currency
INR INR- Currency
HKD HKD- Currency
BRL BRL- Currency
TWD TWD- Currency
EUR EUR- Currency
CHF CHF- Currency
ARS ARS- Currency
AUD AUD- Currency
CNY CNY
- Unknown
Unknown- USD
USD- DKK
DKK- CAD
CAD- IDR
IDR- JPY
JPY- KRW
KRW- NZD
NZD- NOK
NOK- RUB
RUB- SAR
SAR- ZAR
ZAR- SEK
SEK- TRY
TRY- GBP
GBP- MXN
MXN- MYR
MYR- INR
INR- HKD
HKD- BRL
BRL- TWD
TWD- EUR
EUR- CHF
CHF- ARS
ARS- AUD
AUD- CNY
CNY
- Unknown
Unknown- USD
USD- DKK
DKK- CAD
CAD- IDR
IDR- JPY
JPY- KRW
KRW- NZD
NZD- NOK
NOK- RUB
RUB- SAR
SAR- ZAR
ZAR- SEK
SEK- TRY
TRY- GBP
GBP- MXN
MXN- MYR
MYR- INR
INR- HKD
HKD- BRL
BRL- TWD
TWD- EUR
EUR- CHF
CHF- ARS
ARS- AUD
AUD- CNY
CNY
- UNKNOWN
Unknown- USD
USD- DKK
DKK- CAD
CAD- IDR
IDR- JPY
JPY- KRW
KRW- NZD
NZD- NOK
NOK- RUB
RUB- SAR
SAR- ZAR
ZAR- SEK
SEK- TRY_
TRY- GBP
GBP- MXN
MXN- MYR
MYR- INR
INR- HKD
HKD- BRL
BRL- TWD
TWD- EUR
EUR- CHF
CHF- ARS
ARS- AUD
AUD- CNY
CNY
- "Unknown"
Unknown- "USD"
USD- "DKK"
DKK- "CAD"
CAD- "IDR"
IDR- "JPY"
JPY- "KRW"
KRW- "NZD"
NZD- "NOK"
NOK- "RUB"
RUB- "SAR"
SAR- "ZAR"
ZAR- "SEK"
SEK- "TRY"
TRY- "GBP"
GBP- "MXN"
MXN- "MYR"
MYR- "INR"
INR- "HKD"
HKD- "BRL"
BRL- "TWD"
TWD- "EUR"
EUR- "CHF"
CHF- "ARS"
ARS- "AUD"
AUD- "CNY"
CNY
Percentile, PercentileArgs
- Percentile50
Percentile50Percentile 50.- Percentile90
Percentile90Percentile 90.- Percentile95
Percentile95Percentile 95.- Percentile99
Percentile99Percentile 99.
- Percentile
Percentile50 Percentile50Percentile 50.- Percentile
Percentile90 Percentile90Percentile 90.- Percentile
Percentile95 Percentile95Percentile 95.- Percentile
Percentile99 Percentile99Percentile 99.
- Percentile50
Percentile50Percentile 50.- Percentile90
Percentile90Percentile 90.- Percentile95
Percentile95Percentile 95.- Percentile99
Percentile99Percentile 99.
- Percentile50
Percentile50Percentile 50.- Percentile90
Percentile90Percentile 90.- Percentile95
Percentile95Percentile 95.- Percentile99
Percentile99Percentile 99.
- PERCENTILE50
Percentile50Percentile 50.- PERCENTILE90
Percentile90Percentile 90.- PERCENTILE95
Percentile95Percentile 95.- PERCENTILE99
Percentile99Percentile 99.
- "Percentile50"
Percentile50Percentile 50.- "Percentile90"
Percentile90Percentile 90.- "Percentile95"
Percentile95Percentile 95.- "Percentile99"
Percentile99Percentile 99.
ReservedInstance, ReservedInstanceArgs
- None
None- RI1Year
RI1Year- RI3Year
RI3Year
- Reserved
Instance None None- Reserved
Instance RI1Year RI1Year- Reserved
Instance RI3Year RI3Year
- None
None- RI1Year
RI1Year- RI3Year
RI3Year
- None
None- RI1Year
RI1Year- RI3Year
RI3Year
- NONE
None- RI1_YEAR
RI1Year- RI3_YEAR
RI3Year
- "None"
None- "RI1Year"
RI1Year- "RI3Year"
RI3Year
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:Assessment assessment_5_14_2019_16_48_47 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/groups/{groupName}/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 Monday, Mar 9, 2026 by Pulumi
