azure-native.migrate.AssessmentsOperation
Machine assessment resource.
Uses Azure REST API version 2024-01-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-04-01-preview.
Other available API versions: 2023-03-15, 2023-04-01-preview, 2023-05-01-preview, 2023-09-09-preview, 2024-01-15. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native migrate [ApiVersion]. See the version guide for details.
Example Usage
AssessmentsOperations_Create_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var assessmentsOperation = new AzureNative.Migrate.AssessmentsOperation("assessmentsOperation", new()
    {
        AssessmentName = "asm1",
        AzureDiskTypes = new[]
        {
            AzureNative.Migrate.AzureDiskType.Premium,
            AzureNative.Migrate.AzureDiskType.PremiumV2,
            AzureNative.Migrate.AzureDiskType.StandardSSD,
        },
        AzureHybridUseBenefit = AzureNative.Migrate.AzureHybridUseBenefit.Unknown,
        AzureLocation = "njxbwdtsxzhichsnk",
        AzureOfferCode = AzureNative.Migrate.AzureOfferCode.Unknown,
        AzurePricingTier = AzureNative.Migrate.AzurePricingTier.Standard,
        AzureStorageRedundancy = AzureNative.Migrate.AzureStorageRedundancy.Unknown,
        AzureVmFamilies = new[]
        {
            AzureNative.Migrate.AzureVmFamily.DSeries,
            AzureNative.Migrate.AzureVmFamily.Lsv2Series,
            AzureNative.Migrate.AzureVmFamily.MSeries,
            AzureNative.Migrate.AzureVmFamily.Mdsv2Series,
            AzureNative.Migrate.AzureVmFamily.Msv2Series,
            AzureNative.Migrate.AzureVmFamily.Mv2Series,
        },
        Currency = AzureNative.Migrate.AzureCurrency.Unknown,
        DiscountPercentage = 6,
        EaSubscriptionId = "kwsu",
        GroupName = "kuchatur-test",
        LinuxAzureHybridUseBenefit = AzureNative.Migrate.AzureHybridUseBenefit.Unknown,
        Percentile = AzureNative.Migrate.Percentile.Percentile50,
        PerfDataEndTime = "2023-09-26T09:36:48.491Z",
        PerfDataStartTime = "2023-09-26T09:36:48.491Z",
        ProjectName = "app18700project",
        ProvisioningState = AzureNative.Migrate.ProvisioningState.Succeeded,
        ReservedInstance = AzureNative.Migrate.AzureReservedInstance.None,
        ResourceGroupName = "ayagrawrg",
        ScalingFactor = 24,
        SizingCriterion = AzureNative.Migrate.AssessmentSizingCriterion.PerformanceBased,
        TimeRange = AzureNative.Migrate.TimeRange.Day,
        VmUptime = new AzureNative.Migrate.Inputs.VmUptimeArgs
        {
            DaysPerMonth = 13,
            HoursPerDay = 26,
        },
    });
});
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.NewAssessmentsOperation(ctx, "assessmentsOperation", &migrate.AssessmentsOperationArgs{
			AssessmentName: pulumi.String("asm1"),
			AzureDiskTypes: pulumi.StringArray{
				pulumi.String(migrate.AzureDiskTypePremium),
				pulumi.String(migrate.AzureDiskTypePremiumV2),
				pulumi.String(migrate.AzureDiskTypeStandardSSD),
			},
			AzureHybridUseBenefit:  pulumi.String(migrate.AzureHybridUseBenefitUnknown),
			AzureLocation:          pulumi.String("njxbwdtsxzhichsnk"),
			AzureOfferCode:         pulumi.String(migrate.AzureOfferCodeUnknown),
			AzurePricingTier:       pulumi.String(migrate.AzurePricingTierStandard),
			AzureStorageRedundancy: pulumi.String(migrate.AzureStorageRedundancyUnknown),
			AzureVmFamilies: pulumi.StringArray{
				pulumi.String(migrate.AzureVmFamilyDSeries),
				pulumi.String(migrate.AzureVmFamilyLsv2Series),
				pulumi.String(migrate.AzureVmFamilyMSeries),
				pulumi.String(migrate.AzureVmFamilyMdsv2Series),
				pulumi.String(migrate.AzureVmFamilyMsv2Series),
				pulumi.String(migrate.AzureVmFamilyMv2Series),
			},
			Currency:                   pulumi.String(migrate.AzureCurrencyUnknown),
			DiscountPercentage:         pulumi.Float64(6),
			EaSubscriptionId:           pulumi.String("kwsu"),
			GroupName:                  pulumi.String("kuchatur-test"),
			LinuxAzureHybridUseBenefit: pulumi.String(migrate.AzureHybridUseBenefitUnknown),
			Percentile:                 pulumi.String(migrate.PercentilePercentile50),
			PerfDataEndTime:            pulumi.String("2023-09-26T09:36:48.491Z"),
			PerfDataStartTime:          pulumi.String("2023-09-26T09:36:48.491Z"),
			ProjectName:                pulumi.String("app18700project"),
			ProvisioningState:          pulumi.String(migrate.ProvisioningStateSucceeded),
			ReservedInstance:           pulumi.String(migrate.AzureReservedInstanceNone),
			ResourceGroupName:          pulumi.String("ayagrawrg"),
			ScalingFactor:              pulumi.Float64(24),
			SizingCriterion:            pulumi.String(migrate.AssessmentSizingCriterionPerformanceBased),
			TimeRange:                  pulumi.String(migrate.TimeRangeDay),
			VmUptime: &migrate.VmUptimeArgs{
				DaysPerMonth: pulumi.Float64(13),
				HoursPerDay:  pulumi.Float64(26),
			},
		})
		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.AssessmentsOperation;
import com.pulumi.azurenative.migrate.AssessmentsOperationArgs;
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 assessmentsOperation = new AssessmentsOperation("assessmentsOperation", AssessmentsOperationArgs.builder()
            .assessmentName("asm1")
            .azureDiskTypes(            
                "Premium",
                "PremiumV2",
                "StandardSSD")
            .azureHybridUseBenefit("Unknown")
            .azureLocation("njxbwdtsxzhichsnk")
            .azureOfferCode("Unknown")
            .azurePricingTier("Standard")
            .azureStorageRedundancy("Unknown")
            .azureVmFamilies(            
                "D_series",
                "Lsv2_series",
                "M_series",
                "Mdsv2_series",
                "Msv2_series",
                "Mv2_series")
            .currency("Unknown")
            .discountPercentage(6.0)
            .eaSubscriptionId("kwsu")
            .groupName("kuchatur-test")
            .linuxAzureHybridUseBenefit("Unknown")
            .percentile("Percentile50")
            .perfDataEndTime("2023-09-26T09:36:48.491Z")
            .perfDataStartTime("2023-09-26T09:36:48.491Z")
            .projectName("app18700project")
            .provisioningState("Succeeded")
            .reservedInstance("None")
            .resourceGroupName("ayagrawrg")
            .scalingFactor(24.0)
            .sizingCriterion("PerformanceBased")
            .timeRange("Day")
            .vmUptime(VmUptimeArgs.builder()
                .daysPerMonth(13.0)
                .hoursPerDay(26.0)
                .build())
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const assessmentsOperation = new azure_native.migrate.AssessmentsOperation("assessmentsOperation", {
    assessmentName: "asm1",
    azureDiskTypes: [
        azure_native.migrate.AzureDiskType.Premium,
        azure_native.migrate.AzureDiskType.PremiumV2,
        azure_native.migrate.AzureDiskType.StandardSSD,
    ],
    azureHybridUseBenefit: azure_native.migrate.AzureHybridUseBenefit.Unknown,
    azureLocation: "njxbwdtsxzhichsnk",
    azureOfferCode: azure_native.migrate.AzureOfferCode.Unknown,
    azurePricingTier: azure_native.migrate.AzurePricingTier.Standard,
    azureStorageRedundancy: azure_native.migrate.AzureStorageRedundancy.Unknown,
    azureVmFamilies: [
        azure_native.migrate.AzureVmFamily.DSeries,
        azure_native.migrate.AzureVmFamily.Lsv2Series,
        azure_native.migrate.AzureVmFamily.MSeries,
        azure_native.migrate.AzureVmFamily.Mdsv2Series,
        azure_native.migrate.AzureVmFamily.Msv2Series,
        azure_native.migrate.AzureVmFamily.Mv2Series,
    ],
    currency: azure_native.migrate.AzureCurrency.Unknown,
    discountPercentage: 6,
    eaSubscriptionId: "kwsu",
    groupName: "kuchatur-test",
    linuxAzureHybridUseBenefit: azure_native.migrate.AzureHybridUseBenefit.Unknown,
    percentile: azure_native.migrate.Percentile.Percentile50,
    perfDataEndTime: "2023-09-26T09:36:48.491Z",
    perfDataStartTime: "2023-09-26T09:36:48.491Z",
    projectName: "app18700project",
    provisioningState: azure_native.migrate.ProvisioningState.Succeeded,
    reservedInstance: azure_native.migrate.AzureReservedInstance.None,
    resourceGroupName: "ayagrawrg",
    scalingFactor: 24,
    sizingCriterion: azure_native.migrate.AssessmentSizingCriterion.PerformanceBased,
    timeRange: azure_native.migrate.TimeRange.Day,
    vmUptime: {
        daysPerMonth: 13,
        hoursPerDay: 26,
    },
});
import pulumi
import pulumi_azure_native as azure_native
assessments_operation = azure_native.migrate.AssessmentsOperation("assessmentsOperation",
    assessment_name="asm1",
    azure_disk_types=[
        azure_native.migrate.AzureDiskType.PREMIUM,
        azure_native.migrate.AzureDiskType.PREMIUM_V2,
        azure_native.migrate.AzureDiskType.STANDARD_SSD,
    ],
    azure_hybrid_use_benefit=azure_native.migrate.AzureHybridUseBenefit.UNKNOWN,
    azure_location="njxbwdtsxzhichsnk",
    azure_offer_code=azure_native.migrate.AzureOfferCode.UNKNOWN,
    azure_pricing_tier=azure_native.migrate.AzurePricingTier.STANDARD,
    azure_storage_redundancy=azure_native.migrate.AzureStorageRedundancy.UNKNOWN,
    azure_vm_families=[
        azure_native.migrate.AzureVmFamily.D_SERIES,
        azure_native.migrate.AzureVmFamily.LSV2_SERIES,
        azure_native.migrate.AzureVmFamily.M_SERIES,
        azure_native.migrate.AzureVmFamily.MDSV2_SERIES,
        azure_native.migrate.AzureVmFamily.MSV2_SERIES,
        azure_native.migrate.AzureVmFamily.MV2_SERIES,
    ],
    currency=azure_native.migrate.AzureCurrency.UNKNOWN,
    discount_percentage=6,
    ea_subscription_id="kwsu",
    group_name="kuchatur-test",
    linux_azure_hybrid_use_benefit=azure_native.migrate.AzureHybridUseBenefit.UNKNOWN,
    percentile=azure_native.migrate.Percentile.PERCENTILE50,
    perf_data_end_time="2023-09-26T09:36:48.491Z",
    perf_data_start_time="2023-09-26T09:36:48.491Z",
    project_name="app18700project",
    provisioning_state=azure_native.migrate.ProvisioningState.SUCCEEDED,
    reserved_instance=azure_native.migrate.AzureReservedInstance.NONE,
    resource_group_name="ayagrawrg",
    scaling_factor=24,
    sizing_criterion=azure_native.migrate.AssessmentSizingCriterion.PERFORMANCE_BASED,
    time_range=azure_native.migrate.TimeRange.DAY,
    vm_uptime={
        "days_per_month": 13,
        "hours_per_day": 26,
    })
resources:
  assessmentsOperation:
    type: azure-native:migrate:AssessmentsOperation
    properties:
      assessmentName: asm1
      azureDiskTypes:
        - Premium
        - PremiumV2
        - StandardSSD
      azureHybridUseBenefit: Unknown
      azureLocation: njxbwdtsxzhichsnk
      azureOfferCode: Unknown
      azurePricingTier: Standard
      azureStorageRedundancy: Unknown
      azureVmFamilies:
        - D_series
        - Lsv2_series
        - M_series
        - Mdsv2_series
        - Msv2_series
        - Mv2_series
      currency: Unknown
      discountPercentage: 6
      eaSubscriptionId: kwsu
      groupName: kuchatur-test
      linuxAzureHybridUseBenefit: Unknown
      percentile: Percentile50
      perfDataEndTime: 2023-09-26T09:36:48.491Z
      perfDataStartTime: 2023-09-26T09:36:48.491Z
      projectName: app18700project
      provisioningState: Succeeded
      reservedInstance: None
      resourceGroupName: ayagrawrg
      scalingFactor: 24
      sizingCriterion: PerformanceBased
      timeRange: Day
      vmUptime:
        daysPerMonth: 13
        hoursPerDay: 26
Create AssessmentsOperation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AssessmentsOperation(name: string, args: AssessmentsOperationArgs, opts?: CustomResourceOptions);@overload
def AssessmentsOperation(resource_name: str,
                         args: AssessmentsOperationArgs,
                         opts: Optional[ResourceOptions] = None)
@overload
def AssessmentsOperation(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         group_name: Optional[str] = None,
                         resource_group_name: Optional[str] = None,
                         project_name: Optional[str] = None,
                         linux_azure_hybrid_use_benefit: Optional[Union[str, AzureHybridUseBenefit]] = None,
                         perf_data_end_time: Optional[str] = None,
                         azure_pricing_tier: Optional[Union[str, AzurePricingTier]] = None,
                         azure_storage_redundancy: Optional[Union[str, AzureStorageRedundancy]] = None,
                         azure_vm_families: Optional[Sequence[Union[str, AzureVmFamily]]] = None,
                         currency: Optional[Union[str, AzureCurrency]] = None,
                         discount_percentage: Optional[float] = None,
                         ea_subscription_id: Optional[str] = None,
                         azure_location: Optional[str] = None,
                         assessment_name: Optional[str] = None,
                         percentile: Optional[Union[str, Percentile]] = None,
                         azure_offer_code: Optional[Union[str, AzureOfferCode]] = None,
                         perf_data_start_time: Optional[str] = None,
                         azure_hybrid_use_benefit: Optional[Union[str, AzureHybridUseBenefit]] = None,
                         provisioning_state: Optional[Union[str, ProvisioningState]] = None,
                         reserved_instance: Optional[Union[str, AzureReservedInstance]] = None,
                         azure_disk_types: Optional[Sequence[Union[str, AzureDiskType]]] = None,
                         scaling_factor: Optional[float] = None,
                         sizing_criterion: Optional[Union[str, AssessmentSizingCriterion]] = None,
                         time_range: Optional[Union[str, TimeRange]] = None,
                         vm_uptime: Optional[VmUptimeArgs] = None)func NewAssessmentsOperation(ctx *Context, name string, args AssessmentsOperationArgs, opts ...ResourceOption) (*AssessmentsOperation, error)public AssessmentsOperation(string name, AssessmentsOperationArgs args, CustomResourceOptions? opts = null)
public AssessmentsOperation(String name, AssessmentsOperationArgs args)
public AssessmentsOperation(String name, AssessmentsOperationArgs args, CustomResourceOptions options)
type: azure-native:migrate:AssessmentsOperation
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 AssessmentsOperationArgs
- 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 AssessmentsOperationArgs
- 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 AssessmentsOperationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AssessmentsOperationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AssessmentsOperationArgs
- 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 assessmentsOperationResource = new AzureNative.Migrate.AssessmentsOperation("assessmentsOperationResource", new()
{
    GroupName = "string",
    ResourceGroupName = "string",
    ProjectName = "string",
    LinuxAzureHybridUseBenefit = "string",
    PerfDataEndTime = "string",
    AzurePricingTier = "string",
    AzureStorageRedundancy = "string",
    AzureVmFamilies = new[]
    {
        "string",
    },
    Currency = "string",
    DiscountPercentage = 0,
    EaSubscriptionId = "string",
    AzureLocation = "string",
    AssessmentName = "string",
    Percentile = "string",
    AzureOfferCode = "string",
    PerfDataStartTime = "string",
    AzureHybridUseBenefit = "string",
    ProvisioningState = "string",
    ReservedInstance = "string",
    AzureDiskTypes = new[]
    {
        "string",
    },
    ScalingFactor = 0,
    SizingCriterion = "string",
    TimeRange = "string",
    VmUptime = new AzureNative.Migrate.Inputs.VmUptimeArgs
    {
        DaysPerMonth = 0,
        HoursPerDay = 0,
    },
});
example, err := migrate.NewAssessmentsOperation(ctx, "assessmentsOperationResource", &migrate.AssessmentsOperationArgs{
	GroupName:                  pulumi.String("string"),
	ResourceGroupName:          pulumi.String("string"),
	ProjectName:                pulumi.String("string"),
	LinuxAzureHybridUseBenefit: pulumi.String("string"),
	PerfDataEndTime:            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),
	EaSubscriptionId:      pulumi.String("string"),
	AzureLocation:         pulumi.String("string"),
	AssessmentName:        pulumi.String("string"),
	Percentile:            pulumi.String("string"),
	AzureOfferCode:        pulumi.String("string"),
	PerfDataStartTime:     pulumi.String("string"),
	AzureHybridUseBenefit: pulumi.String("string"),
	ProvisioningState:     pulumi.String("string"),
	ReservedInstance:      pulumi.String("string"),
	AzureDiskTypes: pulumi.StringArray{
		pulumi.String("string"),
	},
	ScalingFactor:   pulumi.Float64(0),
	SizingCriterion: pulumi.String("string"),
	TimeRange:       pulumi.String("string"),
	VmUptime: &migrate.VmUptimeArgs{
		DaysPerMonth: pulumi.Float64(0),
		HoursPerDay:  pulumi.Float64(0),
	},
})
var assessmentsOperationResource = new AssessmentsOperation("assessmentsOperationResource", AssessmentsOperationArgs.builder()
    .groupName("string")
    .resourceGroupName("string")
    .projectName("string")
    .linuxAzureHybridUseBenefit("string")
    .perfDataEndTime("string")
    .azurePricingTier("string")
    .azureStorageRedundancy("string")
    .azureVmFamilies("string")
    .currency("string")
    .discountPercentage(0.0)
    .eaSubscriptionId("string")
    .azureLocation("string")
    .assessmentName("string")
    .percentile("string")
    .azureOfferCode("string")
    .perfDataStartTime("string")
    .azureHybridUseBenefit("string")
    .provisioningState("string")
    .reservedInstance("string")
    .azureDiskTypes("string")
    .scalingFactor(0.0)
    .sizingCriterion("string")
    .timeRange("string")
    .vmUptime(VmUptimeArgs.builder()
        .daysPerMonth(0.0)
        .hoursPerDay(0.0)
        .build())
    .build());
assessments_operation_resource = azure_native.migrate.AssessmentsOperation("assessmentsOperationResource",
    group_name="string",
    resource_group_name="string",
    project_name="string",
    linux_azure_hybrid_use_benefit="string",
    perf_data_end_time="string",
    azure_pricing_tier="string",
    azure_storage_redundancy="string",
    azure_vm_families=["string"],
    currency="string",
    discount_percentage=0,
    ea_subscription_id="string",
    azure_location="string",
    assessment_name="string",
    percentile="string",
    azure_offer_code="string",
    perf_data_start_time="string",
    azure_hybrid_use_benefit="string",
    provisioning_state="string",
    reserved_instance="string",
    azure_disk_types=["string"],
    scaling_factor=0,
    sizing_criterion="string",
    time_range="string",
    vm_uptime={
        "days_per_month": 0,
        "hours_per_day": 0,
    })
const assessmentsOperationResource = new azure_native.migrate.AssessmentsOperation("assessmentsOperationResource", {
    groupName: "string",
    resourceGroupName: "string",
    projectName: "string",
    linuxAzureHybridUseBenefit: "string",
    perfDataEndTime: "string",
    azurePricingTier: "string",
    azureStorageRedundancy: "string",
    azureVmFamilies: ["string"],
    currency: "string",
    discountPercentage: 0,
    eaSubscriptionId: "string",
    azureLocation: "string",
    assessmentName: "string",
    percentile: "string",
    azureOfferCode: "string",
    perfDataStartTime: "string",
    azureHybridUseBenefit: "string",
    provisioningState: "string",
    reservedInstance: "string",
    azureDiskTypes: ["string"],
    scalingFactor: 0,
    sizingCriterion: "string",
    timeRange: "string",
    vmUptime: {
        daysPerMonth: 0,
        hoursPerDay: 0,
    },
});
type: azure-native:migrate:AssessmentsOperation
properties:
    assessmentName: string
    azureDiskTypes:
        - string
    azureHybridUseBenefit: string
    azureLocation: string
    azureOfferCode: string
    azurePricingTier: string
    azureStorageRedundancy: string
    azureVmFamilies:
        - string
    currency: string
    discountPercentage: 0
    eaSubscriptionId: string
    groupName: string
    linuxAzureHybridUseBenefit: string
    percentile: string
    perfDataEndTime: string
    perfDataStartTime: string
    projectName: string
    provisioningState: string
    reservedInstance: string
    resourceGroupName: string
    scalingFactor: 0
    sizingCriterion: string
    timeRange: string
    vmUptime:
        daysPerMonth: 0
        hoursPerDay: 0
AssessmentsOperation 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 AssessmentsOperation resource accepts the following input properties:
- GroupName string
- Group ARM name
- ProjectName string
- Assessment Project Name
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AssessmentName string
- Machine Assessment ARM name
- AzureDisk List<Union<string, Pulumi.Types Azure Native. Migrate. Azure Disk Type>> 
- Gets or sets the azure storage type. Premium, Standard etc.
- AzureHybrid 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.
- AzureLocation string
- Azure Location or Azure region where to which the machines will be migrated.
- AzureOffer string | Pulumi.Code Azure Native. Migrate. Azure Offer Code 
- Azure Offer Code.
- AzurePricing string | Pulumi.Tier Azure Native. Migrate. Azure Pricing Tier 
- Gets or sets Azure Pricing Tier - Free, Basic, etc.
- AzureStorage string | Pulumi.Redundancy Azure Native. Migrate. Azure Storage Redundancy 
- Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- AzureVm List<Union<string, Pulumi.Families Azure Native. Migrate. Azure Vm Family>> 
- Gets or sets the Azure VM families.
- Currency
string | Pulumi.Azure Native. Migrate. Azure Currency 
- Currency in which prices should be reported.
- DiscountPercentage double
- Custom discount percentage.
- EaSubscription stringId 
- Gets or sets enterprise agreement subscription id.
- LinuxAzure 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.
- Percentile
string | Pulumi.Azure Native. Migrate. Percentile 
- Percentile of the utilization data values to be considered while assessing machines.
- PerfData stringEnd Time 
- Gets or sets the end time to consider performance data for assessment.
- PerfData stringStart Time 
- Gets or sets the start time to consider performance data for assessment.
- ProvisioningState string | Pulumi.Azure Native. Migrate. Provisioning State 
- The status of the last operation.
- ReservedInstance string | Pulumi.Azure Native. Migrate. Azure Reserved Instance 
- Gets or sets the Azure Reserved Instance - 1-Year, 3-Year.
- ScalingFactor double
- Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- SizingCriterion string | Pulumi.Azure Native. Migrate. Assessment Sizing Criterion 
- Assessment sizing criterion.
- TimeRange string | Pulumi.Azure Native. Migrate. Time Range 
- Time Range for which the historic utilization data should be considered for assessment.
- VmUptime Pulumi.Azure Native. Migrate. Inputs. Vm Uptime 
- Gets or sets the duration for which the VMs are up in the on-premises environment.
- GroupName string
- Group ARM name
- ProjectName string
- Assessment Project Name
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AssessmentName string
- Machine Assessment ARM name
- AzureDisk []stringTypes 
- Gets or sets the azure storage type. Premium, Standard etc.
- AzureHybrid string | AzureUse Benefit Hybrid Use Benefit 
- Gets or sets the user configurable setting to display the azure hybrid use benefit.
- AzureLocation string
- Azure Location or Azure region where to which the machines will be migrated.
- AzureOffer string | AzureCode Offer Code 
- Azure Offer Code.
- AzurePricing string | AzureTier Pricing Tier 
- Gets or sets Azure Pricing Tier - Free, Basic, etc.
- AzureStorage string | AzureRedundancy Storage Redundancy 
- Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- AzureVm []stringFamilies 
- Gets or sets the Azure VM families.
- Currency
string | AzureCurrency 
- Currency in which prices should be reported.
- DiscountPercentage float64
- Custom discount percentage.
- EaSubscription stringId 
- Gets or sets enterprise agreement subscription id.
- LinuxAzure string | AzureHybrid Use Benefit Hybrid Use Benefit 
- Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- Percentile string | Percentile
- Percentile of the utilization data values to be considered while assessing machines.
- PerfData stringEnd Time 
- Gets or sets the end time to consider performance data for assessment.
- PerfData stringStart Time 
- Gets or sets the start time to consider performance data for assessment.
- ProvisioningState string | ProvisioningState 
- The status of the last operation.
- ReservedInstance string | AzureReserved Instance 
- Gets or sets the Azure Reserved Instance - 1-Year, 3-Year.
- ScalingFactor float64
- Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- SizingCriterion string | AssessmentSizing Criterion 
- Assessment sizing criterion.
- TimeRange string | TimeRange 
- Time Range for which the historic utilization data should be considered for assessment.
- VmUptime VmUptime Args 
- Gets or sets the duration for which the VMs are up in the on-premises environment.
- groupName String
- Group ARM name
- projectName String
- Assessment Project Name
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- assessmentName String
- Machine Assessment ARM name
- azureDisk List<Either<String,AzureTypes Disk Type>> 
- Gets or sets the azure storage type. Premium, Standard etc.
- azureHybrid String | AzureUse Benefit Hybrid Use Benefit 
- Gets or sets the user configurable setting to display the azure hybrid use benefit.
- azureLocation String
- Azure Location or Azure region where to which the machines will be migrated.
- azureOffer String | AzureCode Offer Code 
- Azure Offer Code.
- azurePricing String | AzureTier Pricing Tier 
- Gets or sets Azure Pricing Tier - Free, Basic, etc.
- azureStorage String | AzureRedundancy Storage Redundancy 
- Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- azureVm List<Either<String,AzureFamilies Vm Family>> 
- Gets or sets the Azure VM families.
- currency
String | AzureCurrency 
- Currency in which prices should be reported.
- discountPercentage Double
- Custom discount percentage.
- eaSubscription StringId 
- Gets or sets enterprise agreement subscription id.
- linuxAzure String | AzureHybrid Use Benefit Hybrid Use Benefit 
- Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- percentile String | Percentile
- Percentile of the utilization data values to be considered while assessing machines.
- perfData StringEnd Time 
- Gets or sets the end time to consider performance data for assessment.
- perfData StringStart Time 
- Gets or sets the start time to consider performance data for assessment.
- provisioningState String | ProvisioningState 
- The status of the last operation.
- reservedInstance String | AzureReserved Instance 
- Gets or sets the Azure Reserved Instance - 1-Year, 3-Year.
- scalingFactor Double
- Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizingCriterion String | AssessmentSizing Criterion 
- Assessment sizing criterion.
- timeRange String | TimeRange 
- Time Range for which the historic utilization data should be considered for assessment.
- vmUptime VmUptime 
- Gets or sets the duration for which the VMs are up in the on-premises environment.
- groupName string
- Group ARM name
- projectName string
- Assessment Project Name
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- assessmentName string
- Machine Assessment ARM name
- azureDisk (string | AzureTypes Disk Type)[] 
- Gets or sets the azure storage type. Premium, Standard etc.
- azureHybrid string | AzureUse Benefit Hybrid Use Benefit 
- Gets or sets the user configurable setting to display the azure hybrid use benefit.
- azureLocation string
- Azure Location or Azure region where to which the machines will be migrated.
- azureOffer string | AzureCode Offer Code 
- Azure Offer Code.
- azurePricing string | AzureTier Pricing Tier 
- Gets or sets Azure Pricing Tier - Free, Basic, etc.
- azureStorage string | AzureRedundancy Storage Redundancy 
- Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- azureVm (string | AzureFamilies Vm Family)[] 
- Gets or sets the Azure VM families.
- currency
string | AzureCurrency 
- Currency in which prices should be reported.
- discountPercentage number
- Custom discount percentage.
- eaSubscription stringId 
- Gets or sets enterprise agreement subscription id.
- linuxAzure string | AzureHybrid Use Benefit Hybrid Use Benefit 
- Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- percentile string | Percentile
- Percentile of the utilization data values to be considered while assessing machines.
- perfData stringEnd Time 
- Gets or sets the end time to consider performance data for assessment.
- perfData stringStart Time 
- Gets or sets the start time to consider performance data for assessment.
- provisioningState string | ProvisioningState 
- The status of the last operation.
- reservedInstance string | AzureReserved Instance 
- Gets or sets the Azure Reserved Instance - 1-Year, 3-Year.
- scalingFactor number
- Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizingCriterion string | AssessmentSizing Criterion 
- Assessment sizing criterion.
- timeRange string | TimeRange 
- Time Range for which the historic utilization data should be considered for assessment.
- vmUptime VmUptime 
- Gets or sets the duration for which the VMs are up in the on-premises environment.
- group_name str
- Group ARM name
- project_name str
- Assessment Project Name
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- assessment_name str
- Machine Assessment ARM name
- azure_disk_ Sequence[Union[str, Azuretypes Disk Type]] 
- Gets or sets the azure storage type. Premium, Standard etc.
- 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_offer_ str | Azurecode Offer Code 
- Azure Offer Code.
- azure_pricing_ str | Azuretier Pricing Tier 
- Gets or sets Azure Pricing Tier - Free, Basic, etc.
- 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.
- currency
str | AzureCurrency 
- Currency in which prices should be reported.
- discount_percentage float
- Custom discount percentage.
- ea_subscription_ strid 
- Gets or sets enterprise agreement subscription id.
- linux_azure_ str | Azurehybrid_ use_ benefit Hybrid Use Benefit 
- Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- 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.
- provisioning_state str | ProvisioningState 
- The status of the last operation.
- reserved_instance str | AzureReserved Instance 
- Gets or sets the Azure Reserved Instance - 1-Year, 3-Year.
- scaling_factor float
- Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing_criterion str | AssessmentSizing Criterion 
- Assessment sizing criterion.
- time_range str | TimeRange 
- Time Range for which the historic utilization data should be considered for assessment.
- vm_uptime VmUptime Args 
- Gets or sets the duration for which the VMs are up in the on-premises environment.
- groupName String
- Group ARM name
- projectName String
- Assessment Project Name
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- assessmentName String
- Machine Assessment ARM name
- azureDisk List<String | "Unknown" | "Standard" | "StandardTypes SSD" | "Premium" | "Standard Or Premium" | "Ultra" | "Premium V2"> 
- Gets or sets the azure storage type. Premium, Standard etc.
- azureHybrid String | "Unknown" | "Yes" | "No"Use Benefit 
- Gets or sets the user configurable setting to display the azure hybrid use benefit.
- azureLocation String
- Azure Location or Azure region where to which the machines will be migrated.
- azureOffer String | "Unknown" | "MSAZR0003P" | "MSAZR0044P" | "MSAZR0059P" | "MSAZR0060P" | "MSAZR0062P" | "MSAZR0063P" | "MSAZR0064P" | "MSAZR0029P" | "MSAZR0022P" | "MSAZR0023P" | "MSAZR0148P" | "MSAZR0025P" | "MSAZR0036P" | "MSAZR0120P" | "MSAZR0121P" | "MSAZR0122P" | "MSAZR0123P" | "MSAZR0124P" | "MSAZR0125P" | "MSAZR0126P" | "MSAZR0127P" | "MSAZR0128P" | "MSAZR0129P" | "MSAZR0130P" | "MSAZR0111P" | "MSAZR0144P" | "MSAZR0149P" | "MSMCAZR0044P" | "MSMCAZR0059P" | "MSMCAZR0060P" | "MSMCAZR0063P" | "MSMCAZR0120P" | "MSMCAZR0121P" | "MSMCAZR0125P" | "MSMCAZR0128P" | "MSAZRDE0003P" | "MSAZRDE0044P" | "MSAZRUSGOV0003P" | "EA" | "MSAZR0243P" | "SavingsCode Plan1Year" | "Savings Plan3Year" 
- Azure Offer Code.
- azurePricing String | "Standard" | "Basic"Tier 
- Gets or sets Azure Pricing Tier - Free, Basic, etc.
- azureStorage String | "Unknown" | "LocallyRedundancy Redundant" | "Zone Redundant" | "Geo Redundant" | "Read Access Geo Redundant" 
- Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
- azureVm 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.
- currency String | "Unknown" | "USD" | "DKK" | "CAD" | "IDR" | "JPY" | "KRW" | "NZD" | "NOK" | "RUB" | "SAR" | "ZAR" | "SEK" | "TRY" | "GBP" | "MXN" | "MYR" | "INR" | "HKD" | "BRL" | "TWD" | "EUR" | "CHF" | "ARS" | "AUD" | "CNY"
- Currency in which prices should be reported.
- discountPercentage Number
- Custom discount percentage.
- eaSubscription StringId 
- Gets or sets enterprise agreement subscription id.
- linuxAzure String | "Unknown" | "Yes" | "No"Hybrid Use Benefit 
- Gets or sets the user configurable setting to display the linux azure hybrid use benefit.
- percentile
String | "Percentile50" | "Percentile90" | "Percentile95" | "Percentile99" | "PercentileUnknown" 
- Percentile of the utilization data values to be considered while assessing machines.
- perfData StringEnd Time 
- Gets or sets the end time to consider performance data for assessment.
- perfData StringStart Time 
- Gets or sets the start time to consider performance data for assessment.
- provisioningState String | "Succeeded" | "Failed" | "Canceled" | "Provisioning" | "Updating" | "Deleting" | "Accepted"
- The status of the last operation.
- reservedInstance String | "None" | "RI1Year" | "RI3Year"
- Gets or sets the Azure Reserved Instance - 1-Year, 3-Year.
- scalingFactor Number
- Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizingCriterion String | "PerformanceBased" | "As On Premises" 
- Assessment sizing criterion.
- timeRange String | "Day" | "Week" | "Month" | "Custom"
- Time Range for which the historic utilization data should be considered for assessment.
- vmUptime Property Map
- Gets or sets the duration for which the VMs are up in the on-premises environment.
Outputs
All input properties are implicitly available as output properties. Additionally, the AssessmentsOperation resource produces the following output properties:
- AssessmentError Dictionary<string, int>Summary 
- Gets or sets the assessment error summary. This is the number of machines affected by each type of error in this assessment.
- AssessmentType string
- Assessment type of the assessment.
- AzureApi stringVersion 
- The Azure API version of the resource.
- ConfidenceRating doubleIn Percentage 
- Confidence Rating in Percentage.
- CostComponents List<Pulumi.Azure Native. Migrate. Outputs. Cost Component Response> 
- Gets the collection of cost components.
- CreatedTimestamp string
- Date and Time when assessment was created.
- DistributionBy Dictionary<string, int>Os Name 
- Gets the distribution by os name.
- DistributionBy Dictionary<string, int>Service Pack Insight 
- Gets the distribution distribution of sqlInstances by service pack insight.
- DistributionBy Dictionary<string, int>Support Status 
- Gets the distribution of sqlInstances by support status.
- GroupType string
- Gets the group type for the assessment.
- Id string
- The provider-assigned unique ID for this managed resource.
- MonthlyBandwidth doubleCost 
- Gets or sets the aggregate Bandwidth Cost for all machines in the assessment.
- MonthlyCompute doubleCost 
- Gets or sets the aggregate Compute Cost for all machines in the assessment.
- double
- Gets or sets the aggregate premium storage cost for all machines in the assessment.
- MonthlyStandard doubleSsd Storage Cost 
- Gets or sets the aggregate standard SSD storage cost for all the machines in the assessment.
- MonthlyStorage doubleCost 
- Gets or sets the aggregate Storage Cost for all machines in the assessment.
- MonthlyUltra doubleStorage Cost 
- Gets or sets the aggregate ultra storage cost for all machines in the assessment.
- Name string
- The name of the resource
- NumberOf intMachines 
- Gets or sets the Number of machines part of the assessment.
- PricesTimestamp string
- Last time when rates were queried.
- SchemaVersion string
- Schema version.
- Stage string
- User configurable setting to display the Stage of Assessment.
- Status string
- Whether assessment is in valid state and all machines have been assessed.
- SuitabilitySummary Dictionary<string, int>
- Gets or sets the Cloud suitability summary for all the machines in the assessment.
- SystemData Pulumi.Azure Native. Migrate. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- UpdatedTimestamp string
- Date and Time when assessment was last updated.
- AssessmentError map[string]intSummary 
- Gets or sets the assessment error summary. This is the number of machines affected by each type of error in this assessment.
- AssessmentType string
- Assessment type of the assessment.
- AzureApi stringVersion 
- The Azure API version of the resource.
- ConfidenceRating float64In Percentage 
- Confidence Rating in Percentage.
- CostComponents []CostComponent Response 
- Gets the collection of cost components.
- CreatedTimestamp string
- Date and Time when assessment was created.
- DistributionBy map[string]intOs Name 
- Gets the distribution by os name.
- DistributionBy map[string]intService Pack Insight 
- Gets the distribution distribution of sqlInstances by service pack insight.
- DistributionBy map[string]intSupport Status 
- Gets the distribution of sqlInstances by support status.
- GroupType string
- Gets the group type for the assessment.
- Id string
- The provider-assigned unique ID for this managed resource.
- MonthlyBandwidth float64Cost 
- Gets or sets the aggregate Bandwidth Cost for all machines in the assessment.
- MonthlyCompute float64Cost 
- Gets or sets the aggregate Compute Cost for all machines in the assessment.
- float64
- Gets or sets the aggregate premium storage cost for all machines in the assessment.
- MonthlyStandard float64Ssd Storage Cost 
- Gets or sets the aggregate standard SSD storage cost for all the machines in the assessment.
- MonthlyStorage float64Cost 
- Gets or sets the aggregate Storage Cost for all machines in the assessment.
- MonthlyUltra float64Storage Cost 
- Gets or sets the aggregate ultra storage cost for all machines in the assessment.
- Name string
- The name of the resource
- NumberOf intMachines 
- Gets or sets the Number of machines part of the assessment.
- PricesTimestamp string
- Last time when rates were queried.
- SchemaVersion string
- Schema version.
- Stage string
- User configurable setting to display the Stage of Assessment.
- Status string
- Whether assessment is in valid state and all machines have been assessed.
- SuitabilitySummary map[string]int
- Gets or sets the Cloud suitability summary for all the machines in the assessment.
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- UpdatedTimestamp string
- Date and Time when assessment was last updated.
- assessmentError Map<String,Integer>Summary 
- Gets or sets the assessment error summary. This is the number of machines affected by each type of error in this assessment.
- assessmentType String
- Assessment type of the assessment.
- azureApi StringVersion 
- The Azure API version of the resource.
- confidenceRating DoubleIn Percentage 
- Confidence Rating in Percentage.
- costComponents List<CostComponent Response> 
- Gets the collection of cost components.
- createdTimestamp String
- Date and Time when assessment was created.
- distributionBy Map<String,Integer>Os Name 
- Gets the distribution by os name.
- distributionBy Map<String,Integer>Service Pack Insight 
- Gets the distribution distribution of sqlInstances by service pack insight.
- distributionBy Map<String,Integer>Support Status 
- Gets the distribution of sqlInstances by support status.
- groupType String
- Gets the group type for the assessment.
- id String
- The provider-assigned unique ID for this managed resource.
- monthlyBandwidth DoubleCost 
- Gets or sets the aggregate Bandwidth Cost for all machines in the assessment.
- monthlyCompute DoubleCost 
- Gets or sets the aggregate Compute Cost for all machines in the assessment.
- Double
- Gets or sets the aggregate premium storage cost for all machines in the assessment.
- monthlyStandard DoubleSsd Storage Cost 
- Gets or sets the aggregate standard SSD storage cost for all the machines in the assessment.
- monthlyStorage DoubleCost 
- Gets or sets the aggregate Storage Cost for all machines in the assessment.
- monthlyUltra DoubleStorage Cost 
- Gets or sets the aggregate ultra storage cost for all machines in the assessment.
- name String
- The name of the resource
- numberOf IntegerMachines 
- Gets or sets the Number of machines part of the assessment.
- pricesTimestamp String
- Last time when rates were queried.
- schemaVersion String
- Schema version.
- stage String
- User configurable setting to display the Stage of Assessment.
- status String
- Whether assessment is in valid state and all machines have been assessed.
- suitabilitySummary Map<String,Integer>
- Gets or sets the Cloud suitability summary for all the machines in the assessment.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- updatedTimestamp String
- Date and Time when assessment was last updated.
- assessmentError {[key: string]: number}Summary 
- Gets or sets the assessment error summary. This is the number of machines affected by each type of error in this assessment.
- assessmentType string
- Assessment type of the assessment.
- azureApi stringVersion 
- The Azure API version of the resource.
- confidenceRating numberIn Percentage 
- Confidence Rating in Percentage.
- costComponents CostComponent Response[] 
- Gets the collection of cost components.
- createdTimestamp string
- Date and Time when assessment was created.
- distributionBy {[key: string]: number}Os Name 
- Gets the distribution by os name.
- distributionBy {[key: string]: number}Service Pack Insight 
- Gets the distribution distribution of sqlInstances by service pack insight.
- distributionBy {[key: string]: number}Support Status 
- Gets the distribution of sqlInstances by support status.
- groupType string
- Gets the group type for the assessment.
- id string
- The provider-assigned unique ID for this managed resource.
- monthlyBandwidth numberCost 
- Gets or sets the aggregate Bandwidth Cost for all machines in the assessment.
- monthlyCompute numberCost 
- Gets or sets the aggregate Compute Cost for all machines in the assessment.
- number
- Gets or sets the aggregate premium storage cost for all machines in the assessment.
- monthlyStandard numberSsd Storage Cost 
- Gets or sets the aggregate standard SSD storage cost for all the machines in the assessment.
- monthlyStorage numberCost 
- Gets or sets the aggregate Storage Cost for all machines in the assessment.
- monthlyUltra numberStorage Cost 
- Gets or sets the aggregate ultra storage cost for all machines in the assessment.
- name string
- The name of the resource
- numberOf numberMachines 
- Gets or sets the Number of machines part of the assessment.
- pricesTimestamp string
- Last time when rates were queried.
- schemaVersion string
- Schema version.
- stage string
- User configurable setting to display the Stage of Assessment.
- status string
- Whether assessment is in valid state and all machines have been assessed.
- suitabilitySummary {[key: string]: number}
- Gets or sets the Cloud suitability summary for all the machines in the assessment.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- updatedTimestamp string
- Date and Time when assessment was last updated.
- assessment_error_ Mapping[str, int]summary 
- Gets or sets the assessment error summary. This is the number of machines affected by each type of error in this assessment.
- assessment_type str
- Assessment type of the assessment.
- azure_api_ strversion 
- The Azure API version of the resource.
- confidence_rating_ floatin_ percentage 
- Confidence Rating in Percentage.
- cost_components Sequence[CostComponent Response] 
- Gets the collection of cost components.
- created_timestamp str
- Date and Time when assessment was created.
- distribution_by_ Mapping[str, int]os_ name 
- Gets the distribution by os name.
- distribution_by_ Mapping[str, int]service_ pack_ insight 
- Gets the distribution distribution of sqlInstances by service pack insight.
- distribution_by_ Mapping[str, int]support_ status 
- Gets the distribution of sqlInstances by support status.
- group_type str
- Gets the group type for the assessment.
- id str
- The provider-assigned unique ID for this managed resource.
- monthly_bandwidth_ floatcost 
- Gets or sets the aggregate Bandwidth Cost for all machines in the assessment.
- monthly_compute_ floatcost 
- Gets or sets the aggregate Compute Cost for all machines in the assessment.
- float
- Gets or sets the aggregate premium storage cost for all machines in the assessment.
- monthly_standard_ floatssd_ storage_ cost 
- Gets or sets the aggregate standard SSD storage cost for all the machines in the assessment.
- monthly_storage_ floatcost 
- Gets or sets the aggregate Storage Cost for all machines in the assessment.
- monthly_ultra_ floatstorage_ cost 
- Gets or sets the aggregate ultra storage cost for all machines in the assessment.
- name str
- The name of the resource
- number_of_ intmachines 
- Gets or sets the Number of machines part of the assessment.
- prices_timestamp str
- Last time when rates were queried.
- schema_version str
- Schema version.
- stage str
- User configurable setting to display the Stage of Assessment.
- status str
- Whether assessment is in valid state and all machines have been assessed.
- suitability_summary Mapping[str, int]
- Gets or sets the Cloud suitability summary for all the machines in the assessment.
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- updated_timestamp str
- Date and Time when assessment was last updated.
- assessmentError Map<Number>Summary 
- Gets or sets the assessment error summary. This is the number of machines affected by each type of error in this assessment.
- assessmentType String
- Assessment type of the assessment.
- azureApi StringVersion 
- The Azure API version of the resource.
- confidenceRating NumberIn Percentage 
- Confidence Rating in Percentage.
- costComponents List<Property Map>
- Gets the collection of cost components.
- createdTimestamp String
- Date and Time when assessment was created.
- distributionBy Map<Number>Os Name 
- Gets the distribution by os name.
- distributionBy Map<Number>Service Pack Insight 
- Gets the distribution distribution of sqlInstances by service pack insight.
- distributionBy Map<Number>Support Status 
- Gets the distribution of sqlInstances by support status.
- groupType String
- Gets the group type for the assessment.
- id String
- The provider-assigned unique ID for this managed resource.
- monthlyBandwidth NumberCost 
- Gets or sets the aggregate Bandwidth Cost for all machines in the assessment.
- monthlyCompute NumberCost 
- Gets or sets the aggregate Compute Cost for all machines in the assessment.
- Number
- Gets or sets the aggregate premium storage cost for all machines in the assessment.
- monthlyStandard NumberSsd Storage Cost 
- Gets or sets the aggregate standard SSD storage cost for all the machines in the assessment.
- monthlyStorage NumberCost 
- Gets or sets the aggregate Storage Cost for all machines in the assessment.
- monthlyUltra NumberStorage Cost 
- Gets or sets the aggregate ultra storage cost for all machines in the assessment.
- name String
- The name of the resource
- numberOf NumberMachines 
- Gets or sets the Number of machines part of the assessment.
- pricesTimestamp String
- Last time when rates were queried.
- schemaVersion String
- Schema version.
- stage String
- User configurable setting to display the Stage of Assessment.
- status String
- Whether assessment is in valid state and all machines have been assessed.
- suitabilitySummary Map<Number>
- Gets or sets the Cloud suitability summary for all the machines in the assessment.
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- updatedTimestamp String
- Date and Time when assessment was last updated.
Supporting Types
AssessmentSizingCriterion, AssessmentSizingCriterionArgs      
- PerformanceBased 
- PerformanceBasedPerformance Data based Sizing.
- AsOn Premises 
- AsOnPremisesAs On Premises or Static Data based Sizing.
- AssessmentSizing Criterion Performance Based 
- PerformanceBasedPerformance Data based Sizing.
- AssessmentSizing Criterion As On Premises 
- AsOnPremisesAs On Premises or Static Data based Sizing.
- PerformanceBased 
- PerformanceBasedPerformance Data based Sizing.
- AsOn Premises 
- AsOnPremisesAs On Premises or Static Data based Sizing.
- PerformanceBased 
- PerformanceBasedPerformance Data based Sizing.
- AsOn Premises 
- AsOnPremisesAs On Premises or Static Data based Sizing.
- PERFORMANCE_BASED
- PerformanceBasedPerformance Data based Sizing.
- AS_ON_PREMISES
- AsOnPremisesAs On Premises or Static Data based Sizing.
- "PerformanceBased" 
- PerformanceBasedPerformance Data based Sizing.
- "AsOn Premises" 
- AsOnPremisesAs On Premises or Static Data based Sizing.
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
- AzureCurrency Unknown 
- UnknownUnknown Currency for Azure
- AzureCurrency USD 
- USDUSD Currency for Azure
- AzureCurrency DKK 
- DKKDKK Currency for Azure
- AzureCurrency CAD 
- CADCAD Currency for Azure
- AzureCurrency IDR 
- IDRIDR Currency for Azure
- AzureCurrency JPY 
- JPYJPY Currency for Azure
- AzureCurrency KRW 
- KRWKRW Currency for Azure
- AzureCurrency NZD 
- NZDNZD Currency for Azure
- AzureCurrency NOK 
- NOKNOK Currency for Azure
- AzureCurrency RUB 
- RUBRUB Currency for Azure
- AzureCurrency SAR 
- SARSAR Currency for Azure
- AzureCurrency ZAR 
- ZARZAR Currency for Azure
- AzureCurrency SEK 
- SEKSEK Currency for Azure
- AzureCurrency TRY 
- TRYTRY Currency for Azure
- AzureCurrency GBP 
- GBPGBP Currency for Azure
- AzureCurrency MXN 
- MXNMXN Currency for Azure
- AzureCurrency MYR 
- MYRMYR Currency for Azure
- AzureCurrency INR 
- INRINR Currency for Azure
- AzureCurrency HKD 
- HKDHKD Currency for Azure
- AzureCurrency BRL 
- BRLBRL Currency for Azure
- AzureCurrency TWD 
- TWDTWD Currency for Azure
- AzureCurrency EUR 
- EUREUR Currency for Azure
- AzureCurrency CHF 
- CHFCHF Currency for Azure
- AzureCurrency ARS 
- ARSARS Currency for Azure
- AzureCurrency AUD 
- AUDAUD Currency for Azure
- AzureCurrency 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
- StandardSSD 
- StandardSSDStandardSSD Azure Disk Type
- Premium
- PremiumPremium Azure Disk Type
- StandardOr Premium 
- StandardOrPremiumStandardOrPremium Azure Disk Type
- Ultra
- UltraUltra Azure Disk Type
- PremiumV2 
- PremiumV2PremiumV2 Azure Disk Type
- AzureDisk Type Unknown 
- UnknownUnknown Azure Disk Type
- AzureDisk Type Standard 
- StandardStandard Azure Disk Type
- AzureDisk Type Standard SSD 
- StandardSSDStandardSSD Azure Disk Type
- AzureDisk Type Premium 
- PremiumPremium Azure Disk Type
- AzureDisk Type Standard Or Premium 
- StandardOrPremiumStandardOrPremium Azure Disk Type
- AzureDisk Type Ultra 
- UltraUltra Azure Disk Type
- AzureDisk Type Premium V2 
- PremiumV2PremiumV2 Azure Disk Type
- Unknown
- UnknownUnknown Azure Disk Type
- Standard
- StandardStandard Azure Disk Type
- StandardSSD 
- StandardSSDStandardSSD Azure Disk Type
- Premium
- PremiumPremium Azure Disk Type
- StandardOr Premium 
- StandardOrPremiumStandardOrPremium Azure Disk Type
- Ultra
- UltraUltra Azure Disk Type
- PremiumV2 
- PremiumV2PremiumV2 Azure Disk Type
- Unknown
- UnknownUnknown Azure Disk Type
- Standard
- StandardStandard Azure Disk Type
- StandardSSD 
- StandardSSDStandardSSD Azure Disk Type
- Premium
- PremiumPremium Azure Disk Type
- StandardOr Premium 
- StandardOrPremiumStandardOrPremium Azure Disk Type
- Ultra
- UltraUltra Azure Disk Type
- PremiumV2 
- 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
- "StandardSSD" 
- StandardSSDStandardSSD Azure Disk Type
- "Premium"
- PremiumPremium Azure Disk Type
- "StandardOr Premium" 
- StandardOrPremiumStandardOrPremium Azure Disk Type
- "Ultra"
- UltraUltra Azure Disk Type
- "PremiumV2" 
- PremiumV2PremiumV2 Azure Disk Type
AzureHybridUseBenefit, AzureHybridUseBenefitArgs        
- Unknown
- UnknownUnknown Azure Hybrid Use Benefit
- Yes
- YesYes Azure Hybrid Use Benefit
- No
- NoNo Azure Hybrid Use Benefit
- AzureHybrid Use Benefit Unknown 
- UnknownUnknown Azure Hybrid Use Benefit
- AzureHybrid Use Benefit Yes 
- YesYes Azure Hybrid Use Benefit
- AzureHybrid 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
AzureOfferCode, AzureOfferCodeArgs      
- Unknown
- Unknown
- Msazr0003P
- MSAZR0003P
- Msazr0044P
- MSAZR0044P
- Msazr0059P
- MSAZR0059P
- Msazr0060P
- MSAZR0060P
- Msazr0062P
- MSAZR0062P
- Msazr0063P
- MSAZR0063P
- Msazr0064P
- MSAZR0064P
- Msazr0029P
- MSAZR0029P
- Msazr0022P
- MSAZR0022P
- Msazr0023P
- MSAZR0023P
- Msazr0148P
- MSAZR0148P
- Msazr0025P
- MSAZR0025P
- Msazr0036P
- MSAZR0036P
- Msazr0120P
- MSAZR0120P
- Msazr0121P
- MSAZR0121P
- Msazr0122P
- MSAZR0122P
- Msazr0123P
- MSAZR0123P
- Msazr0124P
- MSAZR0124P
- Msazr0125P
- MSAZR0125P
- Msazr0126P
- MSAZR0126P
- Msazr0127P
- MSAZR0127P
- Msazr0128P
- MSAZR0128P
- Msazr0129P
- MSAZR0129P
- Msazr0130P
- MSAZR0130P
- Msazr0111P
- MSAZR0111P
- Msazr0144P
- MSAZR0144P
- Msazr0149P
- MSAZR0149P
- Msmcazr0044P
- MSMCAZR0044P
- Msmcazr0059P
- MSMCAZR0059P
- Msmcazr0060P
- MSMCAZR0060P
- Msmcazr0063P
- MSMCAZR0063P
- Msmcazr0120P
- MSMCAZR0120P
- Msmcazr0121P
- MSMCAZR0121P
- Msmcazr0125P
- MSMCAZR0125P
- Msmcazr0128P
- MSMCAZR0128P
- Msazrde0003P
- MSAZRDE0003P
- Msazrde0044P
- MSAZRDE0044P
- Msazrusgov0003P
- MSAZRUSGOV0003P
- EA
- EA
- Msazr0243P
- MSAZR0243P
- SavingsPlan1Year 
- SavingsPlan1Year
- SavingsPlan3Year 
- SavingsPlan3Year
- AzureOffer Code Unknown 
- Unknown
- AzureOffer Code Msazr0003P 
- MSAZR0003P
- AzureOffer Code Msazr0044P 
- MSAZR0044P
- AzureOffer Code Msazr0059P 
- MSAZR0059P
- AzureOffer Code Msazr0060P 
- MSAZR0060P
- AzureOffer Code Msazr0062P 
- MSAZR0062P
- AzureOffer Code Msazr0063P 
- MSAZR0063P
- AzureOffer Code Msazr0064P 
- MSAZR0064P
- AzureOffer Code Msazr0029P 
- MSAZR0029P
- AzureOffer Code Msazr0022P 
- MSAZR0022P
- AzureOffer Code Msazr0023P 
- MSAZR0023P
- AzureOffer Code Msazr0148P 
- MSAZR0148P
- AzureOffer Code Msazr0025P 
- MSAZR0025P
- AzureOffer Code Msazr0036P 
- MSAZR0036P
- AzureOffer Code Msazr0120P 
- MSAZR0120P
- AzureOffer Code Msazr0121P 
- MSAZR0121P
- AzureOffer Code Msazr0122P 
- MSAZR0122P
- AzureOffer Code Msazr0123P 
- MSAZR0123P
- AzureOffer Code Msazr0124P 
- MSAZR0124P
- AzureOffer Code Msazr0125P 
- MSAZR0125P
- AzureOffer Code Msazr0126P 
- MSAZR0126P
- AzureOffer Code Msazr0127P 
- MSAZR0127P
- AzureOffer Code Msazr0128P 
- MSAZR0128P
- AzureOffer Code Msazr0129P 
- MSAZR0129P
- AzureOffer Code Msazr0130P 
- MSAZR0130P
- AzureOffer Code Msazr0111P 
- MSAZR0111P
- AzureOffer Code Msazr0144P 
- MSAZR0144P
- AzureOffer Code Msazr0149P 
- MSAZR0149P
- AzureOffer Code Msmcazr0044P 
- MSMCAZR0044P
- AzureOffer Code Msmcazr0059P 
- MSMCAZR0059P
- AzureOffer Code Msmcazr0060P 
- MSMCAZR0060P
- AzureOffer Code Msmcazr0063P 
- MSMCAZR0063P
- AzureOffer Code Msmcazr0120P 
- MSMCAZR0120P
- AzureOffer Code Msmcazr0121P 
- MSMCAZR0121P
- AzureOffer Code Msmcazr0125P 
- MSMCAZR0125P
- AzureOffer Code Msmcazr0128P 
- MSMCAZR0128P
- AzureOffer Code Msazrde0003P 
- MSAZRDE0003P
- AzureOffer Code Msazrde0044P 
- MSAZRDE0044P
- AzureOffer Code Msazrusgov0003P 
- MSAZRUSGOV0003P
- AzureOffer Code EA 
- EA
- AzureOffer Code Msazr0243P 
- MSAZR0243P
- AzureOffer Code Savings Plan1Year 
- SavingsPlan1Year
- AzureOffer Code Savings Plan3Year 
- SavingsPlan3Year
- Unknown
- Unknown
- Msazr0003P
- MSAZR0003P
- Msazr0044P
- MSAZR0044P
- Msazr0059P
- MSAZR0059P
- Msazr0060P
- MSAZR0060P
- Msazr0062P
- MSAZR0062P
- Msazr0063P
- MSAZR0063P
- Msazr0064P
- MSAZR0064P
- Msazr0029P
- MSAZR0029P
- Msazr0022P
- MSAZR0022P
- Msazr0023P
- MSAZR0023P
- Msazr0148P
- MSAZR0148P
- Msazr0025P
- MSAZR0025P
- Msazr0036P
- MSAZR0036P
- Msazr0120P
- MSAZR0120P
- Msazr0121P
- MSAZR0121P
- Msazr0122P
- MSAZR0122P
- Msazr0123P
- MSAZR0123P
- Msazr0124P
- MSAZR0124P
- Msazr0125P
- MSAZR0125P
- Msazr0126P
- MSAZR0126P
- Msazr0127P
- MSAZR0127P
- Msazr0128P
- MSAZR0128P
- Msazr0129P
- MSAZR0129P
- Msazr0130P
- MSAZR0130P
- Msazr0111P
- MSAZR0111P
- Msazr0144P
- MSAZR0144P
- Msazr0149P
- MSAZR0149P
- Msmcazr0044P
- MSMCAZR0044P
- Msmcazr0059P
- MSMCAZR0059P
- Msmcazr0060P
- MSMCAZR0060P
- Msmcazr0063P
- MSMCAZR0063P
- Msmcazr0120P
- MSMCAZR0120P
- Msmcazr0121P
- MSMCAZR0121P
- Msmcazr0125P
- MSMCAZR0125P
- Msmcazr0128P
- MSMCAZR0128P
- Msazrde0003P
- MSAZRDE0003P
- Msazrde0044P
- MSAZRDE0044P
- Msazrusgov0003P
- MSAZRUSGOV0003P
- EA
- EA
- Msazr0243P
- MSAZR0243P
- SavingsPlan1Year 
- SavingsPlan1Year
- SavingsPlan3Year 
- SavingsPlan3Year
- Unknown
- Unknown
- Msazr0003P
- MSAZR0003P
- Msazr0044P
- MSAZR0044P
- Msazr0059P
- MSAZR0059P
- Msazr0060P
- MSAZR0060P
- Msazr0062P
- MSAZR0062P
- Msazr0063P
- MSAZR0063P
- Msazr0064P
- MSAZR0064P
- Msazr0029P
- MSAZR0029P
- Msazr0022P
- MSAZR0022P
- Msazr0023P
- MSAZR0023P
- Msazr0148P
- MSAZR0148P
- Msazr0025P
- MSAZR0025P
- Msazr0036P
- MSAZR0036P
- Msazr0120P
- MSAZR0120P
- Msazr0121P
- MSAZR0121P
- Msazr0122P
- MSAZR0122P
- Msazr0123P
- MSAZR0123P
- Msazr0124P
- MSAZR0124P
- Msazr0125P
- MSAZR0125P
- Msazr0126P
- MSAZR0126P
- Msazr0127P
- MSAZR0127P
- Msazr0128P
- MSAZR0128P
- Msazr0129P
- MSAZR0129P
- Msazr0130P
- MSAZR0130P
- Msazr0111P
- MSAZR0111P
- Msazr0144P
- MSAZR0144P
- Msazr0149P
- MSAZR0149P
- Msmcazr0044P
- MSMCAZR0044P
- Msmcazr0059P
- MSMCAZR0059P
- Msmcazr0060P
- MSMCAZR0060P
- Msmcazr0063P
- MSMCAZR0063P
- Msmcazr0120P
- MSMCAZR0120P
- Msmcazr0121P
- MSMCAZR0121P
- Msmcazr0125P
- MSMCAZR0125P
- Msmcazr0128P
- MSMCAZR0128P
- Msazrde0003P
- MSAZRDE0003P
- Msazrde0044P
- MSAZRDE0044P
- Msazrusgov0003P
- MSAZRUSGOV0003P
- EA
- EA
- Msazr0243P
- MSAZR0243P
- SavingsPlan1Year 
- SavingsPlan1Year
- SavingsPlan3Year 
- SavingsPlan3Year
- UNKNOWN
- Unknown
- MSAZR0003_P
- MSAZR0003P
- MSAZR0044_P
- MSAZR0044P
- MSAZR0059_P
- MSAZR0059P
- MSAZR0060_P
- MSAZR0060P
- MSAZR0062_P
- MSAZR0062P
- MSAZR0063_P
- MSAZR0063P
- MSAZR0064_P
- MSAZR0064P
- MSAZR0029_P
- MSAZR0029P
- MSAZR0022_P
- MSAZR0022P
- MSAZR0023_P
- MSAZR0023P
- MSAZR0148_P
- MSAZR0148P
- MSAZR0025_P
- MSAZR0025P
- MSAZR0036_P
- MSAZR0036P
- MSAZR0120_P
- MSAZR0120P
- MSAZR0121_P
- MSAZR0121P
- MSAZR0122_P
- MSAZR0122P
- MSAZR0123_P
- MSAZR0123P
- MSAZR0124_P
- MSAZR0124P
- MSAZR0125_P
- MSAZR0125P
- MSAZR0126_P
- MSAZR0126P
- MSAZR0127_P
- MSAZR0127P
- MSAZR0128_P
- MSAZR0128P
- MSAZR0129_P
- MSAZR0129P
- MSAZR0130_P
- MSAZR0130P
- MSAZR0111_P
- MSAZR0111P
- MSAZR0144_P
- MSAZR0144P
- MSAZR0149_P
- MSAZR0149P
- MSMCAZR0044_P
- MSMCAZR0044P
- MSMCAZR0059_P
- MSMCAZR0059P
- MSMCAZR0060_P
- MSMCAZR0060P
- MSMCAZR0063_P
- MSMCAZR0063P
- MSMCAZR0120_P
- MSMCAZR0120P
- MSMCAZR0121_P
- MSMCAZR0121P
- MSMCAZR0125_P
- MSMCAZR0125P
- MSMCAZR0128_P
- MSMCAZR0128P
- MSAZRDE0003_P
- MSAZRDE0003P
- MSAZRDE0044_P
- MSAZRDE0044P
- MSAZRUSGOV0003_P
- MSAZRUSGOV0003P
- EA
- EA
- MSAZR0243_P
- MSAZR0243P
- SAVINGS_PLAN1_YEAR
- SavingsPlan1Year
- SAVINGS_PLAN3_YEAR
- SavingsPlan3Year
- "Unknown"
- Unknown
- "MSAZR0003P"
- MSAZR0003P
- "MSAZR0044P"
- MSAZR0044P
- "MSAZR0059P"
- MSAZR0059P
- "MSAZR0060P"
- MSAZR0060P
- "MSAZR0062P"
- MSAZR0062P
- "MSAZR0063P"
- MSAZR0063P
- "MSAZR0064P"
- MSAZR0064P
- "MSAZR0029P"
- MSAZR0029P
- "MSAZR0022P"
- MSAZR0022P
- "MSAZR0023P"
- MSAZR0023P
- "MSAZR0148P"
- MSAZR0148P
- "MSAZR0025P"
- MSAZR0025P
- "MSAZR0036P"
- MSAZR0036P
- "MSAZR0120P"
- MSAZR0120P
- "MSAZR0121P"
- MSAZR0121P
- "MSAZR0122P"
- MSAZR0122P
- "MSAZR0123P"
- MSAZR0123P
- "MSAZR0124P"
- MSAZR0124P
- "MSAZR0125P"
- MSAZR0125P
- "MSAZR0126P"
- MSAZR0126P
- "MSAZR0127P"
- MSAZR0127P
- "MSAZR0128P"
- MSAZR0128P
- "MSAZR0129P"
- MSAZR0129P
- "MSAZR0130P"
- MSAZR0130P
- "MSAZR0111P"
- MSAZR0111P
- "MSAZR0144P"
- MSAZR0144P
- "MSAZR0149P"
- MSAZR0149P
- "MSMCAZR0044P"
- MSMCAZR0044P
- "MSMCAZR0059P"
- MSMCAZR0059P
- "MSMCAZR0060P"
- MSMCAZR0060P
- "MSMCAZR0063P"
- MSMCAZR0063P
- "MSMCAZR0120P"
- MSMCAZR0120P
- "MSMCAZR0121P"
- MSMCAZR0121P
- "MSMCAZR0125P"
- MSMCAZR0125P
- "MSMCAZR0128P"
- MSMCAZR0128P
- "MSAZRDE0003P"
- MSAZRDE0003P
- "MSAZRDE0044P"
- MSAZRDE0044P
- "MSAZRUSGOV0003P"
- MSAZRUSGOV0003P
- "EA"
- EA
- "MSAZR0243P"
- MSAZR0243P
- "SavingsPlan1Year" 
- SavingsPlan1Year
- "SavingsPlan3Year" 
- SavingsPlan3Year
AzurePricingTier, AzurePricingTierArgs      
- Standard
- StandardStandard Azure Pricing Tier
- Basic
- BasicBasic Azure Pricing Tier
- AzurePricing Tier Standard 
- StandardStandard Azure Pricing Tier
- AzurePricing 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
AzureReservedInstance, AzureReservedInstanceArgs      
- None
- None
- RI1Year
- RI1Year
- RI3Year
- RI3Year
- AzureReserved Instance None 
- None
- AzureReserved Instance RI1Year 
- RI1Year
- AzureReserved Instance RI3Year 
- RI3Year
- None
- None
- RI1Year
- RI1Year
- RI3Year
- RI3Year
- None
- None
- RI1Year
- RI1Year
- RI3Year
- RI3Year
- NONE
- None
- RI1_YEAR
- RI1Year
- RI3_YEAR
- RI3Year
- "None"
- None
- "RI1Year"
- RI1Year
- "RI3Year"
- RI3Year
AzureStorageRedundancy, AzureStorageRedundancyArgs      
- Unknown
- UnknownUnknown Azure Storage Redundancy
- LocallyRedundant 
- LocallyRedundantLocallyRedundant Azure Storage Redundancy
- ZoneRedundant 
- ZoneRedundantZoneRedundant Azure Storage Redundancy
- GeoRedundant 
- GeoRedundantGeoRedundant Azure Storage Redundancy
- ReadAccess Geo Redundant 
- ReadAccessGeoRedundantReadAccessGeoRedundant Azure Storage Redundancy
- AzureStorage Redundancy Unknown 
- UnknownUnknown Azure Storage Redundancy
- AzureStorage Redundancy Locally Redundant 
- LocallyRedundantLocallyRedundant Azure Storage Redundancy
- AzureStorage Redundancy Zone Redundant 
- ZoneRedundantZoneRedundant Azure Storage Redundancy
- AzureStorage Redundancy Geo Redundant 
- GeoRedundantGeoRedundant Azure Storage Redundancy
- AzureStorage Redundancy Read Access Geo Redundant 
- ReadAccessGeoRedundantReadAccessGeoRedundant Azure Storage Redundancy
- Unknown
- UnknownUnknown Azure Storage Redundancy
- LocallyRedundant 
- LocallyRedundantLocallyRedundant Azure Storage Redundancy
- ZoneRedundant 
- ZoneRedundantZoneRedundant Azure Storage Redundancy
- GeoRedundant 
- GeoRedundantGeoRedundant Azure Storage Redundancy
- ReadAccess Geo Redundant 
- ReadAccessGeoRedundantReadAccessGeoRedundant Azure Storage Redundancy
- Unknown
- UnknownUnknown Azure Storage Redundancy
- LocallyRedundant 
- LocallyRedundantLocallyRedundant Azure Storage Redundancy
- ZoneRedundant 
- ZoneRedundantZoneRedundant Azure Storage Redundancy
- GeoRedundant 
- GeoRedundantGeoRedundant Azure Storage Redundancy
- ReadAccess 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
- "LocallyRedundant" 
- LocallyRedundantLocallyRedundant Azure Storage Redundancy
- "ZoneRedundant" 
- ZoneRedundantZoneRedundant Azure Storage Redundancy
- "GeoRedundant" 
- GeoRedundantGeoRedundant Azure Storage Redundancy
- "ReadAccess Geo Redundant" 
- ReadAccessGeoRedundantReadAccessGeoRedundant Azure Storage Redundancy
AzureVmFamily, AzureVmFamilyArgs      
- Unknown
- UnknownUnknown - Azure VM Family
- BasicA0A4 
- Basic_A0_A4Basic_A0_A4
- StandardA0A7 
- Standard_A0_A7Standard_A0_A7
- StandardA8A11 
- 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
- FsSeries 
- Fs_seriesFs_series
- GSeries
- G_seriesG_series
- GSSeries
- GS_seriesGS_series
- HSeries
- H_seriesH_series
- LsSeries 
- 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
- AzureVm Family Unknown 
- UnknownUnknown - Azure VM Family
- AzureVm Family Basic A0A4 
- Basic_A0_A4Basic_A0_A4
- AzureVm Family Standard A0A7 
- Standard_A0_A7Standard_A0_A7
- AzureVm Family Standard A8A11 
- Standard_A8_A11Standard_A8_A11
- AzureVm Family Av2Series 
- Av2_seriesAv2_series
- AzureVm Family DSeries 
- D_seriesD_series
- AzureVm Family Dv2Series 
- Dv2_seriesDv2_series
- AzureVm Family DSSeries 
- DS_seriesDS_series
- AzureVm Family DSv2Series 
- DSv2_seriesDSv2_series
- AzureVm Family FSeries 
- F_seriesF_series
- AzureVm Family Fs Series 
- Fs_seriesFs_series
- AzureVm Family GSeries 
- G_seriesG_series
- AzureVm Family GSSeries 
- GS_seriesGS_series
- AzureVm Family HSeries 
- H_seriesH_series
- AzureVm Family Ls Series 
- Ls_seriesLs_series
- AzureVm Family Dsv3Series 
- Dsv3_seriesDsv3_series
- AzureVm Family Dv3Series 
- Dv3_seriesDv3_series
- AzureVm Family Fsv2Series 
- Fsv2_seriesFsv2_series
- AzureVm Family Ev3Series 
- Ev3_seriesEv3_series
- AzureVm Family Esv3Series 
- Esv3_seriesEsv3_series
- AzureVm Family MSeries 
- M_seriesM_series
- AzureVm Family DCSeries 
- DC_SeriesDC_Series
- AzureVm Family Lsv2Series 
- Lsv2_seriesLsv2_series
- AzureVm Family Ev4Series 
- Ev4_seriesEv4_series
- AzureVm Family Esv4Series 
- Esv4_seriesEsv4_series
- AzureVm Family Edv4Series 
- Edv4_seriesEdv4_series
- AzureVm Family Edsv4Series 
- Edsv4_seriesEdsv4_series
- AzureVm Family Dv4Series 
- Dv4_seriesDv4_series
- AzureVm Family Dsv4Series 
- Dsv4_seriesDsv4_series
- AzureVm Family Ddv4Series 
- Ddv4_seriesDdv4_series
- AzureVm Family Ddsv4Series 
- Ddsv4_seriesDdsv4_series
- AzureVm Family Easv4Series 
- Easv4_seriesEasv4_series
- AzureVm Family Dasv4Series 
- Dasv4_seriesDasv4_series
- AzureVm Family Mv2Series 
- Mv2_seriesMv2_series
- AzureVm Family Eav4Series 
- Eav4_seriesEav4_series
- AzureVm Family Dav4Series 
- Dav4_seriesDav4_series
- AzureVm Family Msv2Series 
- Msv2_seriesMsv2_series
- AzureVm Family Mdsv2Series 
- Mdsv2_seriesMdsv2_series
- AzureVm Family Dv5Series 
- Dv5_seriesDv5_series
- AzureVm Family Dsv5Series 
- Dsv5_seriesDsv5_series
- AzureVm Family Ddv5Series 
- Ddv5_seriesDdv5_series
- AzureVm Family Ddsv5Series 
- Ddsv5_seriesDdsv5_series
- AzureVm Family Dasv5Series 
- Dasv5_seriesDasv5_series
- AzureVm Family Dadsv5Series 
- Dadsv5_seriesDadsv5_series
- AzureVm Family Ev5Series 
- Ev5_seriesEv5_series
- AzureVm Family Esv5Series 
- Esv5_seriesEsv5_series
- AzureVm Family Edv5Series 
- Edv5_seriesEdv5_series
- AzureVm Family Edsv5Series 
- Edsv5_seriesEdsv5_series
- AzureVm Family Easv5Series 
- Easv5_seriesEasv5_series
- AzureVm Family Eadsv5Series 
- Eadsv5_seriesEadsv5_series
- AzureVm Family Ebsv5Series 
- Ebsv5_seriesEbsv5_series
- AzureVm Family Ebdsv5Series 
- Ebdsv5_seriesEbdsv5_series
- Unknown
- UnknownUnknown - Azure VM Family
- BasicA0A4 
- Basic_A0_A4Basic_A0_A4
- StandardA0A7 
- Standard_A0_A7Standard_A0_A7
- StandardA8A11 
- 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
- FsSeries 
- Fs_seriesFs_series
- GSeries
- G_seriesG_series
- GSSeries
- GS_seriesGS_series
- HSeries
- H_seriesH_series
- LsSeries 
- 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
- BasicA0A4 
- Basic_A0_A4Basic_A0_A4
- StandardA0A7 
- Standard_A0_A7Standard_A0_A7
- StandardA8A11 
- 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
- FsSeries 
- Fs_seriesFs_series
- GSeries
- G_seriesG_series
- GSSeries
- GS_seriesGS_series
- HSeries
- H_seriesH_series
- LsSeries 
- 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
CostComponentResponse, CostComponentResponseArgs      
Class to represent the component of the cost.- Name string
- Gets the name of the component.
- Description string
- The textual description of the component.
- Value double
- The value of the component.
- Name string
- Gets the name of the component.
- Description string
- The textual description of the component.
- Value float64
- The value of the component.
- name String
- Gets the name of the component.
- description String
- The textual description of the component.
- value Double
- The value of the component.
- name string
- Gets the name of the component.
- description string
- The textual description of the component.
- value number
- The value of the component.
- name str
- Gets the name of the component.
- description str
- The textual description of the component.
- value float
- The value of the component.
- name String
- Gets the name of the component.
- description String
- The textual description of the component.
- value Number
- The value of the component.
Percentile, PercentileArgs  
- Percentile50
- Percentile50Percentile 50.
- Percentile90
- Percentile90Percentile 90.
- Percentile95
- Percentile95Percentile 95.
- Percentile99
- Percentile99Percentile 99.
- PercentileUnknown 
- PercentileUnknownPercentile unknown.
- PercentilePercentile50 
- Percentile50Percentile 50.
- PercentilePercentile90 
- Percentile90Percentile 90.
- PercentilePercentile95 
- Percentile95Percentile 95.
- PercentilePercentile99 
- Percentile99Percentile 99.
- PercentilePercentile Unknown 
- PercentileUnknownPercentile unknown.
- Percentile50
- Percentile50Percentile 50.
- Percentile90
- Percentile90Percentile 90.
- Percentile95
- Percentile95Percentile 95.
- Percentile99
- Percentile99Percentile 99.
- PercentileUnknown 
- PercentileUnknownPercentile unknown.
- Percentile50
- Percentile50Percentile 50.
- Percentile90
- Percentile90Percentile 90.
- Percentile95
- Percentile95Percentile 95.
- Percentile99
- Percentile99Percentile 99.
- PercentileUnknown 
- 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.
- "PercentileUnknown" 
- PercentileUnknownPercentile unknown.
ProvisioningState, ProvisioningStateArgs    
- Succeeded
- SucceededResource has been created.
- Failed
- FailedResource creation failed.
- Canceled
- CanceledResource creation was canceled.
- Provisioning
- ProvisioningResource is being Provisioned.
- Updating
- UpdatingResource is being Updated.
- Deleting
- DeletingResource is being Deleted.
- Accepted
- AcceptedResource is being Accepted.
- ProvisioningState Succeeded 
- SucceededResource has been created.
- ProvisioningState Failed 
- FailedResource creation failed.
- ProvisioningState Canceled 
- CanceledResource creation was canceled.
- ProvisioningState Provisioning 
- ProvisioningResource is being Provisioned.
- ProvisioningState Updating 
- UpdatingResource is being Updated.
- ProvisioningState Deleting 
- DeletingResource is being Deleted.
- ProvisioningState Accepted 
- AcceptedResource is being Accepted.
- Succeeded
- SucceededResource has been created.
- Failed
- FailedResource creation failed.
- Canceled
- CanceledResource creation was canceled.
- Provisioning
- ProvisioningResource is being Provisioned.
- Updating
- UpdatingResource is being Updated.
- Deleting
- DeletingResource is being Deleted.
- Accepted
- AcceptedResource is being Accepted.
- Succeeded
- SucceededResource has been created.
- Failed
- FailedResource creation failed.
- Canceled
- CanceledResource creation was canceled.
- Provisioning
- ProvisioningResource is being Provisioned.
- Updating
- UpdatingResource is being Updated.
- Deleting
- DeletingResource is being Deleted.
- Accepted
- AcceptedResource is being Accepted.
- SUCCEEDED
- SucceededResource has been created.
- FAILED
- FailedResource creation failed.
- CANCELED
- CanceledResource creation was canceled.
- PROVISIONING
- ProvisioningResource is being Provisioned.
- UPDATING
- UpdatingResource is being Updated.
- DELETING
- DeletingResource is being Deleted.
- ACCEPTED
- AcceptedResource is being Accepted.
- "Succeeded"
- SucceededResource has been created.
- "Failed"
- FailedResource creation failed.
- "Canceled"
- CanceledResource creation was canceled.
- "Provisioning"
- ProvisioningResource is being Provisioned.
- "Updating"
- UpdatingResource is being Updated.
- "Deleting"
- DeletingResource is being Deleted.
- "Accepted"
- AcceptedResource is being Accepted.
SystemDataResponse, SystemDataResponseArgs      
Metadata pertaining to creation and last modification of the resource.- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
TimeRange, TimeRangeArgs    
- Day
- DayDaily.
- Week
- WeekWeekly.
- Month
- MonthMonthly.
- Custom
- CustomCustom Time Range.
- TimeRange Day 
- DayDaily.
- TimeRange Week 
- WeekWeekly.
- TimeRange Month 
- MonthMonthly.
- TimeRange Custom 
- CustomCustom Time Range.
- Day
- DayDaily.
- Week
- WeekWeekly.
- Month
- MonthMonthly.
- Custom
- CustomCustom Time Range.
- Day
- DayDaily.
- Week
- WeekWeekly.
- Month
- MonthMonthly.
- Custom
- CustomCustom Time Range.
- DAY
- DayDaily.
- WEEK
- WeekWeekly.
- MONTH
- MonthMonthly.
- CUSTOM
- CustomCustom Time Range.
- "Day"
- DayDaily.
- "Week"
- WeekWeekly.
- "Month"
- MonthMonthly.
- "Custom"
- CustomCustom Time Range.
VmUptime, VmUptimeArgs    
Details on the total up-time for the VM.- DaysPer doubleMonth 
- Number of days in a month for VM uptime.
- HoursPer doubleDay 
- Number of hours per day for VM uptime.
- DaysPer float64Month 
- Number of days in a month for VM uptime.
- HoursPer float64Day 
- Number of hours per day for VM uptime.
- daysPer DoubleMonth 
- Number of days in a month for VM uptime.
- hoursPer DoubleDay 
- Number of hours per day for VM uptime.
- daysPer numberMonth 
- Number of days in a month for VM uptime.
- hoursPer 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.
- daysPer NumberMonth 
- Number of days in a month for VM uptime.
- hoursPer NumberDay 
- Number of hours per day for VM uptime.
VmUptimeResponse, VmUptimeResponseArgs      
Details on the total up-time for the VM.- DaysPer doubleMonth 
- Number of days in a month for VM uptime.
- HoursPer doubleDay 
- Number of hours per day for VM uptime.
- DaysPer float64Month 
- Number of days in a month for VM uptime.
- HoursPer float64Day 
- Number of hours per day for VM uptime.
- daysPer DoubleMonth 
- Number of days in a month for VM uptime.
- hoursPer DoubleDay 
- Number of hours per day for VM uptime.
- daysPer numberMonth 
- Number of days in a month for VM uptime.
- hoursPer 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.
- daysPer NumberMonth 
- Number of days in a month for VM uptime.
- hoursPer 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:AssessmentsOperation asm1 /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
