1. Packages
  2. Azure Native
  3. API Docs
  4. migrate
  5. SqlAssessmentV2Operation
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi

    SQL Assessment REST resource.

    Uses Azure REST API version 2024-01-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-03-15.

    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

    SqlAssessmentV2Operations_Create_MaximumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var sqlAssessmentV2Operation = new AzureNative.Migrate.SqlAssessmentV2Operation("sqlAssessmentV2Operation", new()
        {
            AssessmentName = "test_swagger_1",
            AsyncCommitModeIntent = AzureNative.Migrate.AsyncCommitModeIntent.DisasterRecovery,
            AzureLocation = "SoutheastAsia",
            AzureOfferCode = AzureNative.Migrate.AzureOfferCode.Msazr0003P,
            AzureOfferCodeForVm = AzureNative.Migrate.AzureOfferCode.Msazr0003P,
            AzureSqlDatabaseSettings = new AzureNative.Migrate.Inputs.SqlDbSettingsArgs
            {
                AzureSqlComputeTier = AzureNative.Migrate.ComputeTier.Automatic,
                AzureSqlDataBaseType = AzureNative.Migrate.AzureSqlDataBaseType.SingleDatabase,
                AzureSqlPurchaseModel = AzureNative.Migrate.AzureSqlPurchaseModel.VCore,
                AzureSqlServiceTier = AzureNative.Migrate.AzureSqlServiceTier.Automatic,
            },
            AzureSqlManagedInstanceSettings = new AzureNative.Migrate.Inputs.SqlMiSettingsArgs
            {
                AzureSqlInstanceType = AzureNative.Migrate.AzureSqlInstanceType.SingleInstance,
                AzureSqlServiceTier = AzureNative.Migrate.AzureSqlServiceTier.Automatic,
            },
            AzureSqlVmSettings = new AzureNative.Migrate.Inputs.SqlVmSettingsArgs
            {
                InstanceSeries = new[]
                {
                    AzureNative.Migrate.AzureVmFamily.Eadsv5Series,
                },
            },
            Currency = AzureNative.Migrate.AzureCurrency.USD,
            DisasterRecoveryLocation = AzureNative.Migrate.AzureLocation.EastAsia,
            DiscountPercentage = 0,
            EnableHadrAssessment = true,
            EntityUptime = new AzureNative.Migrate.Inputs.EntityUptimeArgs
            {
                DaysPerMonth = 30,
                HoursPerDay = 24,
            },
            EnvironmentType = AzureNative.Migrate.EnvironmentType.Production,
            GroupName = "test_fci_hadr",
            MultiSubnetIntent = AzureNative.Migrate.MultiSubnetIntent.DisasterRecovery,
            OptimizationLogic = AzureNative.Migrate.OptimizationLogic.MinimizeCost,
            OsLicense = AzureNative.Migrate.OsLicense.Unknown,
            Percentile = AzureNative.Migrate.Percentile.Percentile95,
            ProjectName = "fci-test6904project",
            ReservedInstance = AzureNative.Migrate.AzureReservedInstance.None,
            ReservedInstanceForVm = AzureNative.Migrate.AzureReservedInstance.None,
            ResourceGroupName = "rgmigrate",
            ScalingFactor = 1,
            SizingCriterion = AzureNative.Migrate.AssessmentSizingCriterion.PerformanceBased,
            SqlServerLicense = AzureNative.Migrate.SqlServerLicense.Unknown,
            TimeRange = AzureNative.Migrate.TimeRange.Day,
        });
    
    });
    
    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.NewSqlAssessmentV2Operation(ctx, "sqlAssessmentV2Operation", &migrate.SqlAssessmentV2OperationArgs{
    			AssessmentName:        pulumi.String("test_swagger_1"),
    			AsyncCommitModeIntent: pulumi.String(migrate.AsyncCommitModeIntentDisasterRecovery),
    			AzureLocation:         pulumi.String("SoutheastAsia"),
    			AzureOfferCode:        pulumi.String(migrate.AzureOfferCodeMsazr0003P),
    			AzureOfferCodeForVm:   pulumi.String(migrate.AzureOfferCodeMsazr0003P),
    			AzureSqlDatabaseSettings: &migrate.SqlDbSettingsArgs{
    				AzureSqlComputeTier:   pulumi.String(migrate.ComputeTierAutomatic),
    				AzureSqlDataBaseType:  pulumi.String(migrate.AzureSqlDataBaseTypeSingleDatabase),
    				AzureSqlPurchaseModel: pulumi.String(migrate.AzureSqlPurchaseModelVCore),
    				AzureSqlServiceTier:   pulumi.String(migrate.AzureSqlServiceTierAutomatic),
    			},
    			AzureSqlManagedInstanceSettings: &migrate.SqlMiSettingsArgs{
    				AzureSqlInstanceType: pulumi.String(migrate.AzureSqlInstanceTypeSingleInstance),
    				AzureSqlServiceTier:  pulumi.String(migrate.AzureSqlServiceTierAutomatic),
    			},
    			AzureSqlVmSettings: &migrate.SqlVmSettingsArgs{
    				InstanceSeries: pulumi.StringArray{
    					pulumi.String(migrate.AzureVmFamilyEadsv5Series),
    				},
    			},
    			Currency:                 pulumi.String(migrate.AzureCurrencyUSD),
    			DisasterRecoveryLocation: pulumi.String(migrate.AzureLocationEastAsia),
    			DiscountPercentage:       pulumi.Float64(0),
    			EnableHadrAssessment:     pulumi.Bool(true),
    			EntityUptime: &migrate.EntityUptimeArgs{
    				DaysPerMonth: pulumi.Int(30),
    				HoursPerDay:  pulumi.Int(24),
    			},
    			EnvironmentType:       pulumi.String(migrate.EnvironmentTypeProduction),
    			GroupName:             pulumi.String("test_fci_hadr"),
    			MultiSubnetIntent:     pulumi.String(migrate.MultiSubnetIntentDisasterRecovery),
    			OptimizationLogic:     pulumi.String(migrate.OptimizationLogicMinimizeCost),
    			OsLicense:             pulumi.String(migrate.OsLicenseUnknown),
    			Percentile:            pulumi.String(migrate.PercentilePercentile95),
    			ProjectName:           pulumi.String("fci-test6904project"),
    			ReservedInstance:      pulumi.String(migrate.AzureReservedInstanceNone),
    			ReservedInstanceForVm: pulumi.String(migrate.AzureReservedInstanceNone),
    			ResourceGroupName:     pulumi.String("rgmigrate"),
    			ScalingFactor:         pulumi.Float64(1),
    			SizingCriterion:       pulumi.String(migrate.AssessmentSizingCriterionPerformanceBased),
    			SqlServerLicense:      pulumi.String(migrate.SqlServerLicenseUnknown),
    			TimeRange:             pulumi.String(migrate.TimeRangeDay),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.migrate.SqlAssessmentV2Operation;
    import com.pulumi.azurenative.migrate.SqlAssessmentV2OperationArgs;
    import com.pulumi.azurenative.migrate.inputs.SqlDbSettingsArgs;
    import com.pulumi.azurenative.migrate.inputs.SqlMiSettingsArgs;
    import com.pulumi.azurenative.migrate.inputs.SqlVmSettingsArgs;
    import com.pulumi.azurenative.migrate.inputs.EntityUptimeArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var sqlAssessmentV2Operation = new SqlAssessmentV2Operation("sqlAssessmentV2Operation", SqlAssessmentV2OperationArgs.builder()
                .assessmentName("test_swagger_1")
                .asyncCommitModeIntent("DisasterRecovery")
                .azureLocation("SoutheastAsia")
                .azureOfferCode("MSAZR0003P")
                .azureOfferCodeForVm("MSAZR0003P")
                .azureSqlDatabaseSettings(SqlDbSettingsArgs.builder()
                    .azureSqlComputeTier("Automatic")
                    .azureSqlDataBaseType("SingleDatabase")
                    .azureSqlPurchaseModel("VCore")
                    .azureSqlServiceTier("Automatic")
                    .build())
                .azureSqlManagedInstanceSettings(SqlMiSettingsArgs.builder()
                    .azureSqlInstanceType("SingleInstance")
                    .azureSqlServiceTier("Automatic")
                    .build())
                .azureSqlVmSettings(SqlVmSettingsArgs.builder()
                    .instanceSeries("Eadsv5_series")
                    .build())
                .currency("USD")
                .disasterRecoveryLocation("EastAsia")
                .discountPercentage(0.0)
                .enableHadrAssessment(true)
                .entityUptime(EntityUptimeArgs.builder()
                    .daysPerMonth(30)
                    .hoursPerDay(24)
                    .build())
                .environmentType("Production")
                .groupName("test_fci_hadr")
                .multiSubnetIntent("DisasterRecovery")
                .optimizationLogic("MinimizeCost")
                .osLicense("Unknown")
                .percentile("Percentile95")
                .projectName("fci-test6904project")
                .reservedInstance("None")
                .reservedInstanceForVm("None")
                .resourceGroupName("rgmigrate")
                .scalingFactor(1.0)
                .sizingCriterion("PerformanceBased")
                .sqlServerLicense("Unknown")
                .timeRange("Day")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const sqlAssessmentV2Operation = new azure_native.migrate.SqlAssessmentV2Operation("sqlAssessmentV2Operation", {
        assessmentName: "test_swagger_1",
        asyncCommitModeIntent: azure_native.migrate.AsyncCommitModeIntent.DisasterRecovery,
        azureLocation: "SoutheastAsia",
        azureOfferCode: azure_native.migrate.AzureOfferCode.Msazr0003P,
        azureOfferCodeForVm: azure_native.migrate.AzureOfferCode.Msazr0003P,
        azureSqlDatabaseSettings: {
            azureSqlComputeTier: azure_native.migrate.ComputeTier.Automatic,
            azureSqlDataBaseType: azure_native.migrate.AzureSqlDataBaseType.SingleDatabase,
            azureSqlPurchaseModel: azure_native.migrate.AzureSqlPurchaseModel.VCore,
            azureSqlServiceTier: azure_native.migrate.AzureSqlServiceTier.Automatic,
        },
        azureSqlManagedInstanceSettings: {
            azureSqlInstanceType: azure_native.migrate.AzureSqlInstanceType.SingleInstance,
            azureSqlServiceTier: azure_native.migrate.AzureSqlServiceTier.Automatic,
        },
        azureSqlVmSettings: {
            instanceSeries: [azure_native.migrate.AzureVmFamily.Eadsv5Series],
        },
        currency: azure_native.migrate.AzureCurrency.USD,
        disasterRecoveryLocation: azure_native.migrate.AzureLocation.EastAsia,
        discountPercentage: 0,
        enableHadrAssessment: true,
        entityUptime: {
            daysPerMonth: 30,
            hoursPerDay: 24,
        },
        environmentType: azure_native.migrate.EnvironmentType.Production,
        groupName: "test_fci_hadr",
        multiSubnetIntent: azure_native.migrate.MultiSubnetIntent.DisasterRecovery,
        optimizationLogic: azure_native.migrate.OptimizationLogic.MinimizeCost,
        osLicense: azure_native.migrate.OsLicense.Unknown,
        percentile: azure_native.migrate.Percentile.Percentile95,
        projectName: "fci-test6904project",
        reservedInstance: azure_native.migrate.AzureReservedInstance.None,
        reservedInstanceForVm: azure_native.migrate.AzureReservedInstance.None,
        resourceGroupName: "rgmigrate",
        scalingFactor: 1,
        sizingCriterion: azure_native.migrate.AssessmentSizingCriterion.PerformanceBased,
        sqlServerLicense: azure_native.migrate.SqlServerLicense.Unknown,
        timeRange: azure_native.migrate.TimeRange.Day,
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    sql_assessment_v2_operation = azure_native.migrate.SqlAssessmentV2Operation("sqlAssessmentV2Operation",
        assessment_name="test_swagger_1",
        async_commit_mode_intent=azure_native.migrate.AsyncCommitModeIntent.DISASTER_RECOVERY,
        azure_location="SoutheastAsia",
        azure_offer_code=azure_native.migrate.AzureOfferCode.MSAZR0003_P,
        azure_offer_code_for_vm=azure_native.migrate.AzureOfferCode.MSAZR0003_P,
        azure_sql_database_settings={
            "azure_sql_compute_tier": azure_native.migrate.ComputeTier.AUTOMATIC,
            "azure_sql_data_base_type": azure_native.migrate.AzureSqlDataBaseType.SINGLE_DATABASE,
            "azure_sql_purchase_model": azure_native.migrate.AzureSqlPurchaseModel.V_CORE,
            "azure_sql_service_tier": azure_native.migrate.AzureSqlServiceTier.AUTOMATIC,
        },
        azure_sql_managed_instance_settings={
            "azure_sql_instance_type": azure_native.migrate.AzureSqlInstanceType.SINGLE_INSTANCE,
            "azure_sql_service_tier": azure_native.migrate.AzureSqlServiceTier.AUTOMATIC,
        },
        azure_sql_vm_settings={
            "instance_series": [azure_native.migrate.AzureVmFamily.EADSV5_SERIES],
        },
        currency=azure_native.migrate.AzureCurrency.USD,
        disaster_recovery_location=azure_native.migrate.AzureLocation.EAST_ASIA,
        discount_percentage=0,
        enable_hadr_assessment=True,
        entity_uptime={
            "days_per_month": 30,
            "hours_per_day": 24,
        },
        environment_type=azure_native.migrate.EnvironmentType.PRODUCTION,
        group_name="test_fci_hadr",
        multi_subnet_intent=azure_native.migrate.MultiSubnetIntent.DISASTER_RECOVERY,
        optimization_logic=azure_native.migrate.OptimizationLogic.MINIMIZE_COST,
        os_license=azure_native.migrate.OsLicense.UNKNOWN,
        percentile=azure_native.migrate.Percentile.PERCENTILE95,
        project_name="fci-test6904project",
        reserved_instance=azure_native.migrate.AzureReservedInstance.NONE,
        reserved_instance_for_vm=azure_native.migrate.AzureReservedInstance.NONE,
        resource_group_name="rgmigrate",
        scaling_factor=1,
        sizing_criterion=azure_native.migrate.AssessmentSizingCriterion.PERFORMANCE_BASED,
        sql_server_license=azure_native.migrate.SqlServerLicense.UNKNOWN,
        time_range=azure_native.migrate.TimeRange.DAY)
    
    resources:
      sqlAssessmentV2Operation:
        type: azure-native:migrate:SqlAssessmentV2Operation
        properties:
          assessmentName: test_swagger_1
          asyncCommitModeIntent: DisasterRecovery
          azureLocation: SoutheastAsia
          azureOfferCode: MSAZR0003P
          azureOfferCodeForVm: MSAZR0003P
          azureSqlDatabaseSettings:
            azureSqlComputeTier: Automatic
            azureSqlDataBaseType: SingleDatabase
            azureSqlPurchaseModel: VCore
            azureSqlServiceTier: Automatic
          azureSqlManagedInstanceSettings:
            azureSqlInstanceType: SingleInstance
            azureSqlServiceTier: Automatic
          azureSqlVmSettings:
            instanceSeries:
              - Eadsv5_series
          currency: USD
          disasterRecoveryLocation: EastAsia
          discountPercentage: 0
          enableHadrAssessment: true
          entityUptime:
            daysPerMonth: 30
            hoursPerDay: 24
          environmentType: Production
          groupName: test_fci_hadr
          multiSubnetIntent: DisasterRecovery
          optimizationLogic: MinimizeCost
          osLicense: Unknown
          percentile: Percentile95
          projectName: fci-test6904project
          reservedInstance: None
          reservedInstanceForVm: None
          resourceGroupName: rgmigrate
          scalingFactor: 1
          sizingCriterion: PerformanceBased
          sqlServerLicense: Unknown
          timeRange: Day
    

    Create SqlAssessmentV2Operation Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SqlAssessmentV2Operation(name: string, args: SqlAssessmentV2OperationArgs, opts?: CustomResourceOptions);
    @overload
    def SqlAssessmentV2Operation(resource_name: str,
                                 args: SqlAssessmentV2OperationArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def SqlAssessmentV2Operation(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 project_name: Optional[str] = None,
                                 group_name: Optional[str] = None,
                                 resource_group_name: Optional[str] = None,
                                 assessment_type: Optional[Union[str, AssessmentType]] = None,
                                 is_internet_access_available: Optional[bool] = None,
                                 azure_offer_code_for_vm: Optional[Union[str, AzureOfferCode]] = None,
                                 azure_security_offering_type: Optional[Union[str, AzureSecurityOfferingType]] = None,
                                 azure_sql_database_settings: Optional[SqlDbSettingsArgs] = None,
                                 azure_sql_managed_instance_settings: Optional[SqlMiSettingsArgs] = None,
                                 azure_sql_vm_settings: Optional[SqlVmSettingsArgs] = None,
                                 confidence_rating_in_percentage: Optional[float] = None,
                                 currency: Optional[Union[str, AzureCurrency]] = None,
                                 disaster_recovery_location: Optional[Union[str, AzureLocation]] = None,
                                 discount_percentage: Optional[float] = None,
                                 ea_subscription_id: Optional[str] = None,
                                 enable_hadr_assessment: Optional[bool] = None,
                                 environment_type: Optional[Union[str, EnvironmentType]] = None,
                                 entity_uptime: Optional[EntityUptimeArgs] = None,
                                 provisioning_state: Optional[Union[str, ProvisioningState]] = None,
                                 azure_offer_code: Optional[Union[str, AzureOfferCode]] = None,
                                 multi_subnet_intent: Optional[Union[str, MultiSubnetIntent]] = None,
                                 group_type: Optional[Union[str, GroupType]] = None,
                                 optimization_logic: Optional[Union[str, OptimizationLogic]] = None,
                                 os_license: Optional[Union[str, OsLicense]] = None,
                                 percentile: Optional[Union[str, Percentile]] = None,
                                 perf_data_end_time: Optional[str] = None,
                                 perf_data_start_time: Optional[str] = None,
                                 assessment_name: Optional[str] = None,
                                 azure_location: Optional[str] = None,
                                 reserved_instance: Optional[Union[str, AzureReservedInstance]] = None,
                                 reserved_instance_for_vm: Optional[Union[str, AzureReservedInstance]] = None,
                                 async_commit_mode_intent: Optional[Union[str, AsyncCommitModeIntent]] = None,
                                 scaling_factor: Optional[float] = None,
                                 sizing_criterion: Optional[Union[str, AssessmentSizingCriterion]] = None,
                                 sql_server_license: Optional[Union[str, SqlServerLicense]] = None,
                                 time_range: Optional[Union[str, TimeRange]] = None)
    func NewSqlAssessmentV2Operation(ctx *Context, name string, args SqlAssessmentV2OperationArgs, opts ...ResourceOption) (*SqlAssessmentV2Operation, error)
    public SqlAssessmentV2Operation(string name, SqlAssessmentV2OperationArgs args, CustomResourceOptions? opts = null)
    public SqlAssessmentV2Operation(String name, SqlAssessmentV2OperationArgs args)
    public SqlAssessmentV2Operation(String name, SqlAssessmentV2OperationArgs args, CustomResourceOptions options)
    
    type: azure-native:migrate:SqlAssessmentV2Operation
    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 SqlAssessmentV2OperationArgs
    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 SqlAssessmentV2OperationArgs
    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 SqlAssessmentV2OperationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SqlAssessmentV2OperationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SqlAssessmentV2OperationArgs
    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 sqlAssessmentV2OperationResource = new AzureNative.Migrate.SqlAssessmentV2Operation("sqlAssessmentV2OperationResource", new()
    {
        ProjectName = "string",
        GroupName = "string",
        ResourceGroupName = "string",
        AssessmentType = "string",
        IsInternetAccessAvailable = false,
        AzureOfferCodeForVm = "string",
        AzureSecurityOfferingType = "string",
        AzureSqlDatabaseSettings = new AzureNative.Migrate.Inputs.SqlDbSettingsArgs
        {
            AzureSqlComputeTier = "string",
            AzureSqlDataBaseType = "string",
            AzureSqlPurchaseModel = "string",
            AzureSqlServiceTier = "string",
        },
        AzureSqlManagedInstanceSettings = new AzureNative.Migrate.Inputs.SqlMiSettingsArgs
        {
            AzureSqlInstanceType = "string",
            AzureSqlServiceTier = "string",
        },
        AzureSqlVmSettings = new AzureNative.Migrate.Inputs.SqlVmSettingsArgs
        {
            InstanceSeries = new[]
            {
                "string",
            },
        },
        ConfidenceRatingInPercentage = 0,
        Currency = "string",
        DisasterRecoveryLocation = "string",
        DiscountPercentage = 0,
        EaSubscriptionId = "string",
        EnableHadrAssessment = false,
        EnvironmentType = "string",
        EntityUptime = new AzureNative.Migrate.Inputs.EntityUptimeArgs
        {
            DaysPerMonth = 0,
            HoursPerDay = 0,
        },
        ProvisioningState = "string",
        AzureOfferCode = "string",
        MultiSubnetIntent = "string",
        GroupType = "string",
        OptimizationLogic = "string",
        OsLicense = "string",
        Percentile = "string",
        PerfDataEndTime = "string",
        PerfDataStartTime = "string",
        AssessmentName = "string",
        AzureLocation = "string",
        ReservedInstance = "string",
        ReservedInstanceForVm = "string",
        AsyncCommitModeIntent = "string",
        ScalingFactor = 0,
        SizingCriterion = "string",
        SqlServerLicense = "string",
        TimeRange = "string",
    });
    
    example, err := migrate.NewSqlAssessmentV2Operation(ctx, "sqlAssessmentV2OperationResource", &migrate.SqlAssessmentV2OperationArgs{
    	ProjectName:               pulumi.String("string"),
    	GroupName:                 pulumi.String("string"),
    	ResourceGroupName:         pulumi.String("string"),
    	AssessmentType:            pulumi.String("string"),
    	IsInternetAccessAvailable: pulumi.Bool(false),
    	AzureOfferCodeForVm:       pulumi.String("string"),
    	AzureSecurityOfferingType: pulumi.String("string"),
    	AzureSqlDatabaseSettings: &migrate.SqlDbSettingsArgs{
    		AzureSqlComputeTier:   pulumi.String("string"),
    		AzureSqlDataBaseType:  pulumi.String("string"),
    		AzureSqlPurchaseModel: pulumi.String("string"),
    		AzureSqlServiceTier:   pulumi.String("string"),
    	},
    	AzureSqlManagedInstanceSettings: &migrate.SqlMiSettingsArgs{
    		AzureSqlInstanceType: pulumi.String("string"),
    		AzureSqlServiceTier:  pulumi.String("string"),
    	},
    	AzureSqlVmSettings: &migrate.SqlVmSettingsArgs{
    		InstanceSeries: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	ConfidenceRatingInPercentage: pulumi.Float64(0),
    	Currency:                     pulumi.String("string"),
    	DisasterRecoveryLocation:     pulumi.String("string"),
    	DiscountPercentage:           pulumi.Float64(0),
    	EaSubscriptionId:             pulumi.String("string"),
    	EnableHadrAssessment:         pulumi.Bool(false),
    	EnvironmentType:              pulumi.String("string"),
    	EntityUptime: &migrate.EntityUptimeArgs{
    		DaysPerMonth: pulumi.Int(0),
    		HoursPerDay:  pulumi.Int(0),
    	},
    	ProvisioningState:     pulumi.String("string"),
    	AzureOfferCode:        pulumi.String("string"),
    	MultiSubnetIntent:     pulumi.String("string"),
    	GroupType:             pulumi.String("string"),
    	OptimizationLogic:     pulumi.String("string"),
    	OsLicense:             pulumi.String("string"),
    	Percentile:            pulumi.String("string"),
    	PerfDataEndTime:       pulumi.String("string"),
    	PerfDataStartTime:     pulumi.String("string"),
    	AssessmentName:        pulumi.String("string"),
    	AzureLocation:         pulumi.String("string"),
    	ReservedInstance:      pulumi.String("string"),
    	ReservedInstanceForVm: pulumi.String("string"),
    	AsyncCommitModeIntent: pulumi.String("string"),
    	ScalingFactor:         pulumi.Float64(0),
    	SizingCriterion:       pulumi.String("string"),
    	SqlServerLicense:      pulumi.String("string"),
    	TimeRange:             pulumi.String("string"),
    })
    
    var sqlAssessmentV2OperationResource = new SqlAssessmentV2Operation("sqlAssessmentV2OperationResource", SqlAssessmentV2OperationArgs.builder()
        .projectName("string")
        .groupName("string")
        .resourceGroupName("string")
        .assessmentType("string")
        .isInternetAccessAvailable(false)
        .azureOfferCodeForVm("string")
        .azureSecurityOfferingType("string")
        .azureSqlDatabaseSettings(SqlDbSettingsArgs.builder()
            .azureSqlComputeTier("string")
            .azureSqlDataBaseType("string")
            .azureSqlPurchaseModel("string")
            .azureSqlServiceTier("string")
            .build())
        .azureSqlManagedInstanceSettings(SqlMiSettingsArgs.builder()
            .azureSqlInstanceType("string")
            .azureSqlServiceTier("string")
            .build())
        .azureSqlVmSettings(SqlVmSettingsArgs.builder()
            .instanceSeries("string")
            .build())
        .confidenceRatingInPercentage(0.0)
        .currency("string")
        .disasterRecoveryLocation("string")
        .discountPercentage(0.0)
        .eaSubscriptionId("string")
        .enableHadrAssessment(false)
        .environmentType("string")
        .entityUptime(EntityUptimeArgs.builder()
            .daysPerMonth(0)
            .hoursPerDay(0)
            .build())
        .provisioningState("string")
        .azureOfferCode("string")
        .multiSubnetIntent("string")
        .groupType("string")
        .optimizationLogic("string")
        .osLicense("string")
        .percentile("string")
        .perfDataEndTime("string")
        .perfDataStartTime("string")
        .assessmentName("string")
        .azureLocation("string")
        .reservedInstance("string")
        .reservedInstanceForVm("string")
        .asyncCommitModeIntent("string")
        .scalingFactor(0.0)
        .sizingCriterion("string")
        .sqlServerLicense("string")
        .timeRange("string")
        .build());
    
    sql_assessment_v2_operation_resource = azure_native.migrate.SqlAssessmentV2Operation("sqlAssessmentV2OperationResource",
        project_name="string",
        group_name="string",
        resource_group_name="string",
        assessment_type="string",
        is_internet_access_available=False,
        azure_offer_code_for_vm="string",
        azure_security_offering_type="string",
        azure_sql_database_settings={
            "azure_sql_compute_tier": "string",
            "azure_sql_data_base_type": "string",
            "azure_sql_purchase_model": "string",
            "azure_sql_service_tier": "string",
        },
        azure_sql_managed_instance_settings={
            "azure_sql_instance_type": "string",
            "azure_sql_service_tier": "string",
        },
        azure_sql_vm_settings={
            "instance_series": ["string"],
        },
        confidence_rating_in_percentage=0,
        currency="string",
        disaster_recovery_location="string",
        discount_percentage=0,
        ea_subscription_id="string",
        enable_hadr_assessment=False,
        environment_type="string",
        entity_uptime={
            "days_per_month": 0,
            "hours_per_day": 0,
        },
        provisioning_state="string",
        azure_offer_code="string",
        multi_subnet_intent="string",
        group_type="string",
        optimization_logic="string",
        os_license="string",
        percentile="string",
        perf_data_end_time="string",
        perf_data_start_time="string",
        assessment_name="string",
        azure_location="string",
        reserved_instance="string",
        reserved_instance_for_vm="string",
        async_commit_mode_intent="string",
        scaling_factor=0,
        sizing_criterion="string",
        sql_server_license="string",
        time_range="string")
    
    const sqlAssessmentV2OperationResource = new azure_native.migrate.SqlAssessmentV2Operation("sqlAssessmentV2OperationResource", {
        projectName: "string",
        groupName: "string",
        resourceGroupName: "string",
        assessmentType: "string",
        isInternetAccessAvailable: false,
        azureOfferCodeForVm: "string",
        azureSecurityOfferingType: "string",
        azureSqlDatabaseSettings: {
            azureSqlComputeTier: "string",
            azureSqlDataBaseType: "string",
            azureSqlPurchaseModel: "string",
            azureSqlServiceTier: "string",
        },
        azureSqlManagedInstanceSettings: {
            azureSqlInstanceType: "string",
            azureSqlServiceTier: "string",
        },
        azureSqlVmSettings: {
            instanceSeries: ["string"],
        },
        confidenceRatingInPercentage: 0,
        currency: "string",
        disasterRecoveryLocation: "string",
        discountPercentage: 0,
        eaSubscriptionId: "string",
        enableHadrAssessment: false,
        environmentType: "string",
        entityUptime: {
            daysPerMonth: 0,
            hoursPerDay: 0,
        },
        provisioningState: "string",
        azureOfferCode: "string",
        multiSubnetIntent: "string",
        groupType: "string",
        optimizationLogic: "string",
        osLicense: "string",
        percentile: "string",
        perfDataEndTime: "string",
        perfDataStartTime: "string",
        assessmentName: "string",
        azureLocation: "string",
        reservedInstance: "string",
        reservedInstanceForVm: "string",
        asyncCommitModeIntent: "string",
        scalingFactor: 0,
        sizingCriterion: "string",
        sqlServerLicense: "string",
        timeRange: "string",
    });
    
    type: azure-native:migrate:SqlAssessmentV2Operation
    properties:
        assessmentName: string
        assessmentType: string
        asyncCommitModeIntent: string
        azureLocation: string
        azureOfferCode: string
        azureOfferCodeForVm: string
        azureSecurityOfferingType: string
        azureSqlDatabaseSettings:
            azureSqlComputeTier: string
            azureSqlDataBaseType: string
            azureSqlPurchaseModel: string
            azureSqlServiceTier: string
        azureSqlManagedInstanceSettings:
            azureSqlInstanceType: string
            azureSqlServiceTier: string
        azureSqlVmSettings:
            instanceSeries:
                - string
        confidenceRatingInPercentage: 0
        currency: string
        disasterRecoveryLocation: string
        discountPercentage: 0
        eaSubscriptionId: string
        enableHadrAssessment: false
        entityUptime:
            daysPerMonth: 0
            hoursPerDay: 0
        environmentType: string
        groupName: string
        groupType: string
        isInternetAccessAvailable: false
        multiSubnetIntent: string
        optimizationLogic: string
        osLicense: string
        percentile: string
        perfDataEndTime: string
        perfDataStartTime: string
        projectName: string
        provisioningState: string
        reservedInstance: string
        reservedInstanceForVm: string
        resourceGroupName: string
        scalingFactor: 0
        sizingCriterion: string
        sqlServerLicense: string
        timeRange: string
    

    SqlAssessmentV2Operation 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 SqlAssessmentV2Operation resource accepts the following input properties:

    GroupName string
    Group ARM name
    ProjectName string
    Assessment Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AssessmentName string
    SQL Assessment arm name.
    AssessmentType string | Pulumi.AzureNative.Migrate.AssessmentType
    Assessment type of the assessment.
    AsyncCommitModeIntent string | Pulumi.AzureNative.Migrate.AsyncCommitModeIntent
    Gets or sets user preference indicating intent of async commit mode.
    AzureLocation string
    Azure Location or Azure region where to which the machines will be migrated.
    AzureOfferCode string | Pulumi.AzureNative.Migrate.AzureOfferCode
    Azure Offer Code.
    AzureOfferCodeForVm string | Pulumi.AzureNative.Migrate.AzureOfferCode
    Gets or sets Azure Offer Code for VM.
    AzureSecurityOfferingType string | Pulumi.AzureNative.Migrate.AzureSecurityOfferingType
    Gets or sets a value indicating azure security offering type.
    AzureSqlDatabaseSettings Pulumi.AzureNative.Migrate.Inputs.SqlDbSettings
    Gets or sets user configurable SQL database settings.
    AzureSqlManagedInstanceSettings Pulumi.AzureNative.Migrate.Inputs.SqlMiSettings
    Gets or sets user configurable SQL managed instance settings.
    AzureSqlVmSettings Pulumi.AzureNative.Migrate.Inputs.SqlVmSettings
    Gets or sets user configurable SQL VM settings.
    ConfidenceRatingInPercentage double
    Confidence Rating in Percentage.
    Currency string | Pulumi.AzureNative.Migrate.AzureCurrency
    Currency in which prices should be reported.
    DisasterRecoveryLocation string | Pulumi.AzureNative.Migrate.AzureLocation
    Gets or sets the Azure Location or Azure region where to which the machines will be migrated.
    DiscountPercentage double
    Custom discount percentage.
    EaSubscriptionId string
    Gets or sets the Enterprise agreement subscription id.
    EnableHadrAssessment bool
    Gets or sets a value indicating whether HADR assessments needs to be created.
    EntityUptime Pulumi.AzureNative.Migrate.Inputs.EntityUptime
    Gets or sets the duration for which the entity (SQL, VMs) are up in the on-premises environment.
    EnvironmentType string | Pulumi.AzureNative.Migrate.EnvironmentType
    Gets or sets user configurable setting to display the environment type.
    GroupType string | Pulumi.AzureNative.Migrate.GroupType
    Gets the group type for the assessment.
    IsInternetAccessAvailable bool
    Gets or sets a value indicating whether internet access is available.
    MultiSubnetIntent string | Pulumi.AzureNative.Migrate.MultiSubnetIntent
    Gets or sets user preference indicating intent of multi-subnet configuration.
    OptimizationLogic string | Pulumi.AzureNative.Migrate.OptimizationLogic
    Gets or sets SQL optimization logic.
    OsLicense string | Pulumi.AzureNative.Migrate.OsLicense
    Gets or sets user configurable setting to display the azure hybrid use benefit.
    Percentile string | Pulumi.AzureNative.Migrate.Percentile
    Percentile of the utilization data values to be considered while assessing machines.
    PerfDataEndTime string
    Gets or sets the end time to consider performance data for assessment.
    PerfDataStartTime string
    Gets or sets the start time to consider performance data for assessment.
    ProvisioningState string | Pulumi.AzureNative.Migrate.ProvisioningState
    The status of the last operation.
    ReservedInstance string | Pulumi.AzureNative.Migrate.AzureReservedInstance
    Reserved instance.
    ReservedInstanceForVm string | Pulumi.AzureNative.Migrate.AzureReservedInstance
    Gets or sets azure reserved instance for VM.
    ScalingFactor double
    Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
    SizingCriterion string | Pulumi.AzureNative.Migrate.AssessmentSizingCriterion
    Assessment sizing criterion.
    SqlServerLicense string | Pulumi.AzureNative.Migrate.SqlServerLicense
    SQL server license.
    TimeRange string | Pulumi.AzureNative.Migrate.TimeRange
    Time Range for which the historic utilization data should be considered for assessment.
    GroupName string
    Group ARM name
    ProjectName string
    Assessment Project Name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AssessmentName string
    SQL Assessment arm name.
    AssessmentType string | AssessmentType
    Assessment type of the assessment.
    AsyncCommitModeIntent string | AsyncCommitModeIntent
    Gets or sets user preference indicating intent of async commit mode.
    AzureLocation string
    Azure Location or Azure region where to which the machines will be migrated.
    AzureOfferCode string | AzureOfferCode
    Azure Offer Code.
    AzureOfferCodeForVm string | AzureOfferCode
    Gets or sets Azure Offer Code for VM.
    AzureSecurityOfferingType string | AzureSecurityOfferingType
    Gets or sets a value indicating azure security offering type.
    AzureSqlDatabaseSettings SqlDbSettingsArgs
    Gets or sets user configurable SQL database settings.
    AzureSqlManagedInstanceSettings SqlMiSettingsArgs
    Gets or sets user configurable SQL managed instance settings.
    AzureSqlVmSettings SqlVmSettingsArgs
    Gets or sets user configurable SQL VM settings.
    ConfidenceRatingInPercentage float64
    Confidence Rating in Percentage.
    Currency string | AzureCurrency
    Currency in which prices should be reported.
    DisasterRecoveryLocation string | AzureLocation
    Gets or sets the Azure Location or Azure region where to which the machines will be migrated.
    DiscountPercentage float64
    Custom discount percentage.
    EaSubscriptionId string
    Gets or sets the Enterprise agreement subscription id.
    EnableHadrAssessment bool
    Gets or sets a value indicating whether HADR assessments needs to be created.
    EntityUptime EntityUptimeArgs
    Gets or sets the duration for which the entity (SQL, VMs) are up in the on-premises environment.
    EnvironmentType string | EnvironmentType
    Gets or sets user configurable setting to display the environment type.
    GroupType string | GroupType
    Gets the group type for the assessment.
    IsInternetAccessAvailable bool
    Gets or sets a value indicating whether internet access is available.
    MultiSubnetIntent string | MultiSubnetIntent
    Gets or sets user preference indicating intent of multi-subnet configuration.
    OptimizationLogic string | OptimizationLogic
    Gets or sets SQL optimization logic.
    OsLicense string | OsLicense
    Gets or sets user configurable setting to display the azure hybrid use benefit.
    Percentile string | Percentile
    Percentile of the utilization data values to be considered while assessing machines.
    PerfDataEndTime string
    Gets or sets the end time to consider performance data for assessment.
    PerfDataStartTime string
    Gets or sets the start time to consider performance data for assessment.
    ProvisioningState string | ProvisioningState
    The status of the last operation.
    ReservedInstance string | AzureReservedInstance
    Reserved instance.
    ReservedInstanceForVm string | AzureReservedInstance
    Gets or sets azure reserved instance for VM.
    ScalingFactor float64
    Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
    SizingCriterion string | AssessmentSizingCriterion
    Assessment sizing criterion.
    SqlServerLicense string | SqlServerLicense
    SQL server license.
    TimeRange string | TimeRange
    Time Range for which the historic utilization data should be considered for assessment.
    groupName String
    Group ARM name
    projectName String
    Assessment Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    assessmentName String
    SQL Assessment arm name.
    assessmentType String | AssessmentType
    Assessment type of the assessment.
    asyncCommitModeIntent String | AsyncCommitModeIntent
    Gets or sets user preference indicating intent of async commit mode.
    azureLocation String
    Azure Location or Azure region where to which the machines will be migrated.
    azureOfferCode String | AzureOfferCode
    Azure Offer Code.
    azureOfferCodeForVm String | AzureOfferCode
    Gets or sets Azure Offer Code for VM.
    azureSecurityOfferingType String | AzureSecurityOfferingType
    Gets or sets a value indicating azure security offering type.
    azureSqlDatabaseSettings SqlDbSettings
    Gets or sets user configurable SQL database settings.
    azureSqlManagedInstanceSettings SqlMiSettings
    Gets or sets user configurable SQL managed instance settings.
    azureSqlVmSettings SqlVmSettings
    Gets or sets user configurable SQL VM settings.
    confidenceRatingInPercentage Double
    Confidence Rating in Percentage.
    currency String | AzureCurrency
    Currency in which prices should be reported.
    disasterRecoveryLocation String | AzureLocation
    Gets or sets the Azure Location or Azure region where to which the machines will be migrated.
    discountPercentage Double
    Custom discount percentage.
    eaSubscriptionId String
    Gets or sets the Enterprise agreement subscription id.
    enableHadrAssessment Boolean
    Gets or sets a value indicating whether HADR assessments needs to be created.
    entityUptime EntityUptime
    Gets or sets the duration for which the entity (SQL, VMs) are up in the on-premises environment.
    environmentType String | EnvironmentType
    Gets or sets user configurable setting to display the environment type.
    groupType String | GroupType
    Gets the group type for the assessment.
    isInternetAccessAvailable Boolean
    Gets or sets a value indicating whether internet access is available.
    multiSubnetIntent String | MultiSubnetIntent
    Gets or sets user preference indicating intent of multi-subnet configuration.
    optimizationLogic String | OptimizationLogic
    Gets or sets SQL optimization logic.
    osLicense String | OsLicense
    Gets or sets user configurable setting to display the azure hybrid use benefit.
    percentile String | Percentile
    Percentile of the utilization data values to be considered while assessing machines.
    perfDataEndTime String
    Gets or sets the end time to consider performance data for assessment.
    perfDataStartTime String
    Gets or sets the start time to consider performance data for assessment.
    provisioningState String | ProvisioningState
    The status of the last operation.
    reservedInstance String | AzureReservedInstance
    Reserved instance.
    reservedInstanceForVm String | AzureReservedInstance
    Gets or sets azure reserved instance for VM.
    scalingFactor Double
    Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
    sizingCriterion String | AssessmentSizingCriterion
    Assessment sizing criterion.
    sqlServerLicense String | SqlServerLicense
    SQL server license.
    timeRange String | TimeRange
    Time Range for which the historic utilization data should be considered for assessment.
    groupName string
    Group ARM name
    projectName string
    Assessment Project Name
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    assessmentName string
    SQL Assessment arm name.
    assessmentType string | AssessmentType
    Assessment type of the assessment.
    asyncCommitModeIntent string | AsyncCommitModeIntent
    Gets or sets user preference indicating intent of async commit mode.
    azureLocation string
    Azure Location or Azure region where to which the machines will be migrated.
    azureOfferCode string | AzureOfferCode
    Azure Offer Code.
    azureOfferCodeForVm string | AzureOfferCode
    Gets or sets Azure Offer Code for VM.
    azureSecurityOfferingType string | AzureSecurityOfferingType
    Gets or sets a value indicating azure security offering type.
    azureSqlDatabaseSettings SqlDbSettings
    Gets or sets user configurable SQL database settings.
    azureSqlManagedInstanceSettings SqlMiSettings
    Gets or sets user configurable SQL managed instance settings.
    azureSqlVmSettings SqlVmSettings
    Gets or sets user configurable SQL VM settings.
    confidenceRatingInPercentage number
    Confidence Rating in Percentage.
    currency string | AzureCurrency
    Currency in which prices should be reported.
    disasterRecoveryLocation string | AzureLocation
    Gets or sets the Azure Location or Azure region where to which the machines will be migrated.
    discountPercentage number
    Custom discount percentage.
    eaSubscriptionId string
    Gets or sets the Enterprise agreement subscription id.
    enableHadrAssessment boolean
    Gets or sets a value indicating whether HADR assessments needs to be created.
    entityUptime EntityUptime
    Gets or sets the duration for which the entity (SQL, VMs) are up in the on-premises environment.
    environmentType string | EnvironmentType
    Gets or sets user configurable setting to display the environment type.
    groupType string | GroupType
    Gets the group type for the assessment.
    isInternetAccessAvailable boolean
    Gets or sets a value indicating whether internet access is available.
    multiSubnetIntent string | MultiSubnetIntent
    Gets or sets user preference indicating intent of multi-subnet configuration.
    optimizationLogic string | OptimizationLogic
    Gets or sets SQL optimization logic.
    osLicense string | OsLicense
    Gets or sets user configurable setting to display the azure hybrid use benefit.
    percentile string | Percentile
    Percentile of the utilization data values to be considered while assessing machines.
    perfDataEndTime string
    Gets or sets the end time to consider performance data for assessment.
    perfDataStartTime string
    Gets or sets the start time to consider performance data for assessment.
    provisioningState string | ProvisioningState
    The status of the last operation.
    reservedInstance string | AzureReservedInstance
    Reserved instance.
    reservedInstanceForVm string | AzureReservedInstance
    Gets or sets azure reserved instance for VM.
    scalingFactor number
    Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
    sizingCriterion string | AssessmentSizingCriterion
    Assessment sizing criterion.
    sqlServerLicense string | SqlServerLicense
    SQL server license.
    timeRange string | TimeRange
    Time Range for which the historic utilization data should be considered for assessment.
    group_name str
    Group ARM name
    project_name str
    Assessment Project Name
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    assessment_name str
    SQL Assessment arm name.
    assessment_type str | AssessmentType
    Assessment type of the assessment.
    async_commit_mode_intent str | AsyncCommitModeIntent
    Gets or sets user preference indicating intent of async commit mode.
    azure_location str
    Azure Location or Azure region where to which the machines will be migrated.
    azure_offer_code str | AzureOfferCode
    Azure Offer Code.
    azure_offer_code_for_vm str | AzureOfferCode
    Gets or sets Azure Offer Code for VM.
    azure_security_offering_type str | AzureSecurityOfferingType
    Gets or sets a value indicating azure security offering type.
    azure_sql_database_settings SqlDbSettingsArgs
    Gets or sets user configurable SQL database settings.
    azure_sql_managed_instance_settings SqlMiSettingsArgs
    Gets or sets user configurable SQL managed instance settings.
    azure_sql_vm_settings SqlVmSettingsArgs
    Gets or sets user configurable SQL VM settings.
    confidence_rating_in_percentage float
    Confidence Rating in Percentage.
    currency str | AzureCurrency
    Currency in which prices should be reported.
    disaster_recovery_location str | AzureLocation
    Gets or sets the Azure Location or Azure region where to which the machines will be migrated.
    discount_percentage float
    Custom discount percentage.
    ea_subscription_id str
    Gets or sets the Enterprise agreement subscription id.
    enable_hadr_assessment bool
    Gets or sets a value indicating whether HADR assessments needs to be created.
    entity_uptime EntityUptimeArgs
    Gets or sets the duration for which the entity (SQL, VMs) are up in the on-premises environment.
    environment_type str | EnvironmentType
    Gets or sets user configurable setting to display the environment type.
    group_type str | GroupType
    Gets the group type for the assessment.
    is_internet_access_available bool
    Gets or sets a value indicating whether internet access is available.
    multi_subnet_intent str | MultiSubnetIntent
    Gets or sets user preference indicating intent of multi-subnet configuration.
    optimization_logic str | OptimizationLogic
    Gets or sets SQL optimization logic.
    os_license str | OsLicense
    Gets or sets user configurable setting to display the azure hybrid use benefit.
    percentile str | Percentile
    Percentile of the utilization data values to be considered while assessing machines.
    perf_data_end_time str
    Gets or sets the end time to consider performance data for assessment.
    perf_data_start_time str
    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 | AzureReservedInstance
    Reserved instance.
    reserved_instance_for_vm str | AzureReservedInstance
    Gets or sets azure reserved instance for VM.
    scaling_factor float
    Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
    sizing_criterion str | AssessmentSizingCriterion
    Assessment sizing criterion.
    sql_server_license str | SqlServerLicense
    SQL server license.
    time_range str | TimeRange
    Time Range for which the historic utilization data should be considered for assessment.
    groupName String
    Group ARM name
    projectName String
    Assessment Project Name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    assessmentName String
    SQL Assessment arm name.
    assessmentType String | "Unknown" | "MachineAssessment" | "AvsAssessment" | "SqlAssessment" | "WebAppAssessment"
    Assessment type of the assessment.
    asyncCommitModeIntent String | "None" | "HighAvailability" | "DisasterRecovery"
    Gets or sets user preference indicating intent of async commit mode.
    azureLocation String
    Azure Location or Azure region where to which the machines will be migrated.
    azureOfferCode 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" | "SavingsPlan1Year" | "SavingsPlan3Year"
    Azure Offer Code.
    azureOfferCodeForVm 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" | "SavingsPlan1Year" | "SavingsPlan3Year"
    Gets or sets Azure Offer Code for VM.
    azureSecurityOfferingType String | "NO" | "MDC"
    Gets or sets a value indicating azure security offering type.
    azureSqlDatabaseSettings Property Map
    Gets or sets user configurable SQL database settings.
    azureSqlManagedInstanceSettings Property Map
    Gets or sets user configurable SQL managed instance settings.
    azureSqlVmSettings Property Map
    Gets or sets user configurable SQL VM settings.
    confidenceRatingInPercentage Number
    Confidence Rating in Percentage.
    currency String | "Unknown" | "USD" | "DKK" | "CAD" | "IDR" | "JPY" | "KRW" | "NZD" | "NOK" | "RUB" | "SAR" | "ZAR" | "SEK" | "TRY" | "GBP" | "MXN" | "MYR" | "INR" | "HKD" | "BRL" | "TWD" | "EUR" | "CHF" | "ARS" | "AUD" | "CNY"
    Currency in which prices should be reported.
    disasterRecoveryLocation String | "Unknown" | "EastAsia" | "SoutheastAsia" | "AustraliaEast" | "AustraliaSoutheast" | "BrazilSouth" | "CanadaCentral" | "CanadaEast" | "WestEurope" | "NorthEurope" | "CentralIndia" | "SouthIndia" | "WestIndia" | "JapanEast" | "JapanWest" | "KoreaCentral" | "KoreaSouth" | "UkWest" | "UkSouth" | "NorthCentralUs" | "EastUs" | "WestUs2" | "SouthCentralUs" | "CentralUs" | "EastUs2" | "WestUs" | "WestCentralUs" | "GermanyCentral" | "GermanyNortheast" | "ChinaNorth" | "ChinaEast" | "USGovArizona" | "USGovTexas" | "USGovIowa" | "USGovVirginia" | "USDoDCentral" | "USDoDEast" | "FranceCentral" | "AustraliaCentral" | "SouthAfricaNorth" | "FranceSouth" | "AustraliaCentral2" | "SouthAfricaWest" | "GermanyNorth" | "GermanyWestCentral" | "NorwayEast" | "NorwayWest" | "ChinaEast2" | "ChinaNorth2" | "SwitzerlandNorth" | "SwitzerlandWest" | "UAENorth" | "UAECentral" | "UsNatEast" | "UsNatWest" | "UsSecEast" | "UsSecCentral" | "UsSecWest" | "SwedenCentral" | "QatarCentral" | "JioIndiaWest" | "ItalyNorth" | "PolandCentral" | "IsraelCentral" | "MexicoCentral" | "NewZealandNorth" | "SpainCentral"
    Gets or sets the Azure Location or Azure region where to which the machines will be migrated.
    discountPercentage Number
    Custom discount percentage.
    eaSubscriptionId String
    Gets or sets the Enterprise agreement subscription id.
    enableHadrAssessment Boolean
    Gets or sets a value indicating whether HADR assessments needs to be created.
    entityUptime Property Map
    Gets or sets the duration for which the entity (SQL, VMs) are up in the on-premises environment.
    environmentType String | "Production" | "Unknown" | "DevTest"
    Gets or sets user configurable setting to display the environment type.
    groupType String | "Default" | "Import"
    Gets the group type for the assessment.
    isInternetAccessAvailable Boolean
    Gets or sets a value indicating whether internet access is available.
    multiSubnetIntent String | "None" | "HighAvailability" | "DisasterRecovery"
    Gets or sets user preference indicating intent of multi-subnet configuration.
    optimizationLogic String | "MinimizeCost" | "ModernizeToPaaS" | "ModernizeToAzureSqlMi" | "ModernizeToAzureSqlDb"
    Gets or sets SQL optimization logic.
    osLicense String | "Unknown" | "Yes" | "No"
    Gets or sets user configurable setting to display the azure hybrid use benefit.
    percentile String | "Percentile50" | "Percentile90" | "Percentile95" | "Percentile99" | "PercentileUnknown"
    Percentile of the utilization data values to be considered while assessing machines.
    perfDataEndTime String
    Gets or sets the end time to consider performance data for assessment.
    perfDataStartTime String
    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"
    Reserved instance.
    reservedInstanceForVm String | "None" | "RI1Year" | "RI3Year"
    Gets or sets azure reserved instance for VM.
    scalingFactor Number
    Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
    sizingCriterion String | "PerformanceBased" | "AsOnPremises"
    Assessment sizing criterion.
    sqlServerLicense String | "Unknown" | "Yes" | "No"
    SQL server license.
    timeRange String | "Day" | "Week" | "Month" | "Custom"
    Time Range for which the historic utilization data should be considered for assessment.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SqlAssessmentV2Operation resource produces the following output properties:

    AzureApiVersion string
    The Azure API version of the resource.
    CreatedTimestamp string
    Date and Time when assessment was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    PricesTimestamp string
    Last time when rates were queried.
    SchemaVersion string
    Schema version.
    Stage string
    User configurable setting to display the Stage of Assessment.
    Status string
    Whether assessment is in valid state and all machines have been assessed.
    SystemData Pulumi.AzureNative.Migrate.Outputs.SystemDataResponse
    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.
    AzureApiVersion string
    The Azure API version of the resource.
    CreatedTimestamp string
    Date and Time when assessment was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    PricesTimestamp string
    Last time when rates were queried.
    SchemaVersion string
    Schema version.
    Stage string
    User configurable setting to display the Stage of Assessment.
    Status string
    Whether assessment is in valid state and all machines have been assessed.
    SystemData SystemDataResponse
    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.
    azureApiVersion String
    The Azure API version of the resource.
    createdTimestamp String
    Date and Time when assessment was created.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    pricesTimestamp String
    Last time when rates were queried.
    schemaVersion String
    Schema version.
    stage String
    User configurable setting to display the Stage of Assessment.
    status String
    Whether assessment is in valid state and all machines have been assessed.
    systemData SystemDataResponse
    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.
    azureApiVersion string
    The Azure API version of the resource.
    createdTimestamp string
    Date and Time when assessment was created.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    pricesTimestamp string
    Last time when rates were queried.
    schemaVersion string
    Schema version.
    stage string
    User configurable setting to display the Stage of Assessment.
    status string
    Whether assessment is in valid state and all machines have been assessed.
    systemData SystemDataResponse
    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.
    azure_api_version str
    The Azure API version of the resource.
    created_timestamp str
    Date and Time when assessment was created.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    prices_timestamp str
    Last time when rates were queried.
    schema_version str
    Schema version.
    stage str
    User configurable setting to display the Stage of Assessment.
    status str
    Whether assessment is in valid state and all machines have been assessed.
    system_data SystemDataResponse
    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.
    azureApiVersion String
    The Azure API version of the resource.
    createdTimestamp String
    Date and Time when assessment was created.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    pricesTimestamp String
    Last time when rates were queried.
    schemaVersion String
    Schema version.
    stage String
    User configurable setting to display the Stage of Assessment.
    status String
    Whether assessment is in valid state and all machines have been assessed.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    updatedTimestamp String
    Date and Time when assessment was last updated.

    Supporting Types

    AssessmentSizingCriterion, AssessmentSizingCriterionArgs

    PerformanceBased
    PerformanceBased Performance Data based Sizing.
    AsOnPremises
    AsOnPremises As On Premises or Static Data based Sizing.
    AssessmentSizingCriterionPerformanceBased
    PerformanceBased Performance Data based Sizing.
    AssessmentSizingCriterionAsOnPremises
    AsOnPremises As On Premises or Static Data based Sizing.
    PerformanceBased
    PerformanceBased Performance Data based Sizing.
    AsOnPremises
    AsOnPremises As On Premises or Static Data based Sizing.
    PerformanceBased
    PerformanceBased Performance Data based Sizing.
    AsOnPremises
    AsOnPremises As On Premises or Static Data based Sizing.
    PERFORMANCE_BASED
    PerformanceBased Performance Data based Sizing.
    AS_ON_PREMISES
    AsOnPremises As On Premises or Static Data based Sizing.
    "PerformanceBased"
    PerformanceBased Performance Data based Sizing.
    "AsOnPremises"
    AsOnPremises As On Premises or Static Data based Sizing.

    AssessmentType, AssessmentTypeArgs

    Unknown
    Unknown
    MachineAssessment
    MachineAssessment
    AvsAssessment
    AvsAssessment
    SqlAssessment
    SqlAssessment
    WebAppAssessment
    WebAppAssessment
    AssessmentTypeUnknown
    Unknown
    AssessmentTypeMachineAssessment
    MachineAssessment
    AssessmentTypeAvsAssessment
    AvsAssessment
    AssessmentTypeSqlAssessment
    SqlAssessment
    AssessmentTypeWebAppAssessment
    WebAppAssessment
    Unknown
    Unknown
    MachineAssessment
    MachineAssessment
    AvsAssessment
    AvsAssessment
    SqlAssessment
    SqlAssessment
    WebAppAssessment
    WebAppAssessment
    Unknown
    Unknown
    MachineAssessment
    MachineAssessment
    AvsAssessment
    AvsAssessment
    SqlAssessment
    SqlAssessment
    WebAppAssessment
    WebAppAssessment
    UNKNOWN
    Unknown
    MACHINE_ASSESSMENT
    MachineAssessment
    AVS_ASSESSMENT
    AvsAssessment
    SQL_ASSESSMENT
    SqlAssessment
    WEB_APP_ASSESSMENT
    WebAppAssessment
    "Unknown"
    Unknown
    "MachineAssessment"
    MachineAssessment
    "AvsAssessment"
    AvsAssessment
    "SqlAssessment"
    SqlAssessment
    "WebAppAssessment"
    WebAppAssessment

    AsyncCommitModeIntent, AsyncCommitModeIntentArgs

    None
    None None - Async Commit Mode Intent
    HighAvailability
    HighAvailability HighAvailability - Async Commit Mode Intent
    DisasterRecovery
    DisasterRecovery DisasterRecovery - Async Commit Mode Intent
    AsyncCommitModeIntentNone
    None None - Async Commit Mode Intent
    AsyncCommitModeIntentHighAvailability
    HighAvailability HighAvailability - Async Commit Mode Intent
    AsyncCommitModeIntentDisasterRecovery
    DisasterRecovery DisasterRecovery - Async Commit Mode Intent
    None
    None None - Async Commit Mode Intent
    HighAvailability
    HighAvailability HighAvailability - Async Commit Mode Intent
    DisasterRecovery
    DisasterRecovery DisasterRecovery - Async Commit Mode Intent
    None
    None None - Async Commit Mode Intent
    HighAvailability
    HighAvailability HighAvailability - Async Commit Mode Intent
    DisasterRecovery
    DisasterRecovery DisasterRecovery - Async Commit Mode Intent
    NONE
    None None - Async Commit Mode Intent
    HIGH_AVAILABILITY
    HighAvailability HighAvailability - Async Commit Mode Intent
    DISASTER_RECOVERY
    DisasterRecovery DisasterRecovery - Async Commit Mode Intent
    "None"
    None None - Async Commit Mode Intent
    "HighAvailability"
    HighAvailability HighAvailability - Async Commit Mode Intent
    "DisasterRecovery"
    DisasterRecovery DisasterRecovery - Async Commit Mode Intent

    AzureCurrency, AzureCurrencyArgs

    Unknown
    Unknown Unknown Currency for Azure
    USD
    USD USD Currency for Azure
    DKK
    DKK DKK Currency for Azure
    CAD
    CAD CAD Currency for Azure
    IDR
    IDR IDR Currency for Azure
    JPY
    JPY JPY Currency for Azure
    KRW
    KRW KRW Currency for Azure
    NZD
    NZD NZD Currency for Azure
    NOK
    NOK NOK Currency for Azure
    RUB
    RUB RUB Currency for Azure
    SAR
    SAR SAR Currency for Azure
    ZAR
    ZAR ZAR Currency for Azure
    SEK
    SEK SEK Currency for Azure
    TRY
    TRY TRY Currency for Azure
    GBP
    GBP GBP Currency for Azure
    MXN
    MXN MXN Currency for Azure
    MYR
    MYR MYR Currency for Azure
    INR
    INR INR Currency for Azure
    HKD
    HKD HKD Currency for Azure
    BRL
    BRL BRL Currency for Azure
    TWD
    TWD TWD Currency for Azure
    EUR
    EUR EUR Currency for Azure
    CHF
    CHF CHF Currency for Azure
    ARS
    ARS ARS Currency for Azure
    AUD
    AUD AUD Currency for Azure
    CNY
    CNY CNY Currency for Azure
    AzureCurrencyUnknown
    Unknown Unknown Currency for Azure
    AzureCurrencyUSD
    USD USD Currency for Azure
    AzureCurrencyDKK
    DKK DKK Currency for Azure
    AzureCurrencyCAD
    CAD CAD Currency for Azure
    AzureCurrencyIDR
    IDR IDR Currency for Azure
    AzureCurrencyJPY
    JPY JPY Currency for Azure
    AzureCurrencyKRW
    KRW KRW Currency for Azure
    AzureCurrencyNZD
    NZD NZD Currency for Azure
    AzureCurrencyNOK
    NOK NOK Currency for Azure
    AzureCurrencyRUB
    RUB RUB Currency for Azure
    AzureCurrencySAR
    SAR SAR Currency for Azure
    AzureCurrencyZAR
    ZAR ZAR Currency for Azure
    AzureCurrencySEK
    SEK SEK Currency for Azure
    AzureCurrencyTRY
    TRY TRY Currency for Azure
    AzureCurrencyGBP
    GBP GBP Currency for Azure
    AzureCurrencyMXN
    MXN MXN Currency for Azure
    AzureCurrencyMYR
    MYR MYR Currency for Azure
    AzureCurrencyINR
    INR INR Currency for Azure
    AzureCurrencyHKD
    HKD HKD Currency for Azure
    AzureCurrencyBRL
    BRL BRL Currency for Azure
    AzureCurrencyTWD
    TWD TWD Currency for Azure
    AzureCurrencyEUR
    EUR EUR Currency for Azure
    AzureCurrencyCHF
    CHF CHF Currency for Azure
    AzureCurrencyARS
    ARS ARS Currency for Azure
    AzureCurrencyAUD
    AUD AUD Currency for Azure
    AzureCurrencyCNY
    CNY CNY Currency for Azure
    Unknown
    Unknown Unknown Currency for Azure
    USD
    USD USD Currency for Azure
    DKK
    DKK DKK Currency for Azure
    CAD
    CAD CAD Currency for Azure
    IDR
    IDR IDR Currency for Azure
    JPY
    JPY JPY Currency for Azure
    KRW
    KRW KRW Currency for Azure
    NZD
    NZD NZD Currency for Azure
    NOK
    NOK NOK Currency for Azure
    RUB
    RUB RUB Currency for Azure
    SAR
    SAR SAR Currency for Azure
    ZAR
    ZAR ZAR Currency for Azure
    SEK
    SEK SEK Currency for Azure
    TRY
    TRY TRY Currency for Azure
    GBP
    GBP GBP Currency for Azure
    MXN
    MXN MXN Currency for Azure
    MYR
    MYR MYR Currency for Azure
    INR
    INR INR Currency for Azure
    HKD
    HKD HKD Currency for Azure
    BRL
    BRL BRL Currency for Azure
    TWD
    TWD TWD Currency for Azure
    EUR
    EUR EUR Currency for Azure
    CHF
    CHF CHF Currency for Azure
    ARS
    ARS ARS Currency for Azure
    AUD
    AUD AUD Currency for Azure
    CNY
    CNY CNY Currency for Azure
    Unknown
    Unknown Unknown Currency for Azure
    USD
    USD USD Currency for Azure
    DKK
    DKK DKK Currency for Azure
    CAD
    CAD CAD Currency for Azure
    IDR
    IDR IDR Currency for Azure
    JPY
    JPY JPY Currency for Azure
    KRW
    KRW KRW Currency for Azure
    NZD
    NZD NZD Currency for Azure
    NOK
    NOK NOK Currency for Azure
    RUB
    RUB RUB Currency for Azure
    SAR
    SAR SAR Currency for Azure
    ZAR
    ZAR ZAR Currency for Azure
    SEK
    SEK SEK Currency for Azure
    TRY
    TRY TRY Currency for Azure
    GBP
    GBP GBP Currency for Azure
    MXN
    MXN MXN Currency for Azure
    MYR
    MYR MYR Currency for Azure
    INR
    INR INR Currency for Azure
    HKD
    HKD HKD Currency for Azure
    BRL
    BRL BRL Currency for Azure
    TWD
    TWD TWD Currency for Azure
    EUR
    EUR EUR Currency for Azure
    CHF
    CHF CHF Currency for Azure
    ARS
    ARS ARS Currency for Azure
    AUD
    AUD AUD Currency for Azure
    CNY
    CNY CNY Currency for Azure
    UNKNOWN
    Unknown Unknown Currency for Azure
    USD
    USD USD Currency for Azure
    DKK
    DKK DKK Currency for Azure
    CAD
    CAD CAD Currency for Azure
    IDR
    IDR IDR Currency for Azure
    JPY
    JPY JPY Currency for Azure
    KRW
    KRW KRW Currency for Azure
    NZD
    NZD NZD Currency for Azure
    NOK
    NOK NOK Currency for Azure
    RUB
    RUB RUB Currency for Azure
    SAR
    SAR SAR Currency for Azure
    ZAR
    ZAR ZAR Currency for Azure
    SEK
    SEK SEK Currency for Azure
    TRY_
    TRY TRY Currency for Azure
    GBP
    GBP GBP Currency for Azure
    MXN
    MXN MXN Currency for Azure
    MYR
    MYR MYR Currency for Azure
    INR
    INR INR Currency for Azure
    HKD
    HKD HKD Currency for Azure
    BRL
    BRL BRL Currency for Azure
    TWD
    TWD TWD Currency for Azure
    EUR
    EUR EUR Currency for Azure
    CHF
    CHF CHF Currency for Azure
    ARS
    ARS ARS Currency for Azure
    AUD
    AUD AUD Currency for Azure
    CNY
    CNY CNY Currency for Azure
    "Unknown"
    Unknown Unknown Currency for Azure
    "USD"
    USD USD Currency for Azure
    "DKK"
    DKK DKK Currency for Azure
    "CAD"
    CAD CAD Currency for Azure
    "IDR"
    IDR IDR Currency for Azure
    "JPY"
    JPY JPY Currency for Azure
    "KRW"
    KRW KRW Currency for Azure
    "NZD"
    NZD NZD Currency for Azure
    "NOK"
    NOK NOK Currency for Azure
    "RUB"
    RUB RUB Currency for Azure
    "SAR"
    SAR SAR Currency for Azure
    "ZAR"
    ZAR ZAR Currency for Azure
    "SEK"
    SEK SEK Currency for Azure
    "TRY"
    TRY TRY Currency for Azure
    "GBP"
    GBP GBP Currency for Azure
    "MXN"
    MXN MXN Currency for Azure
    "MYR"
    MYR MYR Currency for Azure
    "INR"
    INR INR Currency for Azure
    "HKD"
    HKD HKD Currency for Azure
    "BRL"
    BRL BRL Currency for Azure
    "TWD"
    TWD TWD Currency for Azure
    "EUR"
    EUR EUR Currency for Azure
    "CHF"
    CHF CHF Currency for Azure
    "ARS"
    ARS ARS Currency for Azure
    "AUD"
    AUD AUD Currency for Azure
    "CNY"
    CNY CNY Currency for Azure

    AzureLocation, AzureLocationArgs

    Unknown
    Unknown Unknown Location for Azure
    EastAsia
    EastAsia EastAsia Location for Azure
    SoutheastAsia
    SoutheastAsia SoutheastAsia Location for Azure
    AustraliaEast
    AustraliaEast AustraliaEast Location for Azure
    AustraliaSoutheast
    AustraliaSoutheast AustraliaSoutheast Location for Azure
    BrazilSouth
    BrazilSouth BrazilSouth Location for Azure
    CanadaCentral
    CanadaCentral CanadaCentral Location for Azure
    CanadaEast
    CanadaEast CanadaEast Location for Azure
    WestEurope
    WestEurope WestEurope Location for Azure
    NorthEurope
    NorthEurope NorthEurope Location for Azure
    CentralIndia
    CentralIndia CentralIndia Location for Azure
    SouthIndia
    SouthIndia SouthIndia Location for Azure
    WestIndia
    WestIndia WestIndia Location for Azure
    JapanEast
    JapanEast JapanEast Location for Azure
    JapanWest
    JapanWest JapanWest Location for Azure
    KoreaCentral
    KoreaCentral KoreaCentral Location for Azure
    KoreaSouth
    KoreaSouth KoreaSouth Location for Azure
    UkWest
    UkWest UkWest Location for Azure
    UkSouth
    UkSouth UkSouth Location for Azure
    NorthCentralUs
    NorthCentralUs NorthCentralUs Location for Azure
    EastUs
    EastUs EastUs Location for Azure
    WestUs2
    WestUs2 WestUs2 Location for Azure
    SouthCentralUs
    SouthCentralUs SouthCentralUs Location for Azure
    CentralUs
    CentralUs CentralUs Location for Azure
    EastUs2
    EastUs2 EastUs2 Location for Azure
    WestUs
    WestUs WestUs Location for Azure
    WestCentralUs
    WestCentralUs WestCentralUs Location for Azure
    GermanyCentral
    GermanyCentral GermanyCentral Location for Azure
    GermanyNortheast
    GermanyNortheast GermanyNortheast Location for Azure
    ChinaNorth
    ChinaNorth ChinaNorth Location for Azure
    ChinaEast
    ChinaEast ChinaEast Location for Azure
    USGovArizona
    USGovArizona USGovArizona Location for Azure
    USGovTexas
    USGovTexas USGovTexas Location for Azure
    USGovIowa
    USGovIowa USGovIowa Location for Azure
    USGovVirginia
    USGovVirginia USGovVirginia Location for Azure
    USDoDCentral
    USDoDCentral USDoDCentral Location for Azure
    USDoDEast
    USDoDEast USDoDEast Location for Azure
    FranceCentral
    FranceCentral FranceCentral Location for Azure
    AustraliaCentral
    AustraliaCentral AustraliaCentral Location for Azure
    SouthAfricaNorth
    SouthAfricaNorth SouthAfricaNorth Location for Azure
    FranceSouth
    FranceSouth FranceSouth Location for Azure
    AustraliaCentral2
    AustraliaCentral2 AustraliaCentral2 Location for Azure
    SouthAfricaWest
    SouthAfricaWest SouthAfricaWest Location for Azure
    GermanyNorth
    GermanyNorth GermanyNorth Location for Azure
    GermanyWestCentral
    GermanyWestCentral GermanyWestCentral Location for Azure
    NorwayEast
    NorwayEast NorwayEast Location for Azure
    NorwayWest
    NorwayWest NorwayWest Location for Azure
    ChinaEast2
    ChinaEast2 ChinaEast2 Location for Azure
    ChinaNorth2
    ChinaNorth2 ChinaNorth2 Location for Azure
    SwitzerlandNorth
    SwitzerlandNorth SwitzerlandNorth Location for Azure
    SwitzerlandWest
    SwitzerlandWest SwitzerlandWest Location for Azure
    UAENorth
    UAENorth UAENorth Location for Azure
    UAECentral
    UAECentral UAECentral Location for Azure
    UsNatEast
    UsNatEast UsNatEast Location for Azure
    UsNatWest
    UsNatWest UsNatWest Location for Azure
    UsSecEast
    UsSecEast UsSecEast Location for Azure
    UsSecCentral
    UsSecCentral UsSecCentral Location for Azure
    UsSecWest
    UsSecWest UsSecWest Location for Azure
    SwedenCentral
    SwedenCentral SwedenCentral Location for Azure
    QatarCentral
    QatarCentral QatarCentral Location for Azure
    JioIndiaWest
    JioIndiaWest JioIndiaWest Location for Azure
    ItalyNorth
    ItalyNorth ItalyNorth Location for Azure
    PolandCentral
    PolandCentral PolandCentral Location for Azure
    IsraelCentral
    IsraelCentral IsraelCentral Location for Azure
    MexicoCentral
    MexicoCentral MexicoCentral Location for Azure
    NewZealandNorth
    NewZealandNorth NewZealandNorth Location for Azure
    SpainCentral
    SpainCentral SpainCentral Location for Azure
    AzureLocationUnknown
    Unknown Unknown Location for Azure
    AzureLocationEastAsia
    EastAsia EastAsia Location for Azure
    AzureLocationSoutheastAsia
    SoutheastAsia SoutheastAsia Location for Azure
    AzureLocationAustraliaEast
    AustraliaEast AustraliaEast Location for Azure
    AzureLocationAustraliaSoutheast
    AustraliaSoutheast AustraliaSoutheast Location for Azure
    AzureLocationBrazilSouth
    BrazilSouth BrazilSouth Location for Azure
    AzureLocationCanadaCentral
    CanadaCentral CanadaCentral Location for Azure
    AzureLocationCanadaEast
    CanadaEast CanadaEast Location for Azure
    AzureLocationWestEurope
    WestEurope WestEurope Location for Azure
    AzureLocationNorthEurope
    NorthEurope NorthEurope Location for Azure
    AzureLocationCentralIndia
    CentralIndia CentralIndia Location for Azure
    AzureLocationSouthIndia
    SouthIndia SouthIndia Location for Azure
    AzureLocationWestIndia
    WestIndia WestIndia Location for Azure
    AzureLocationJapanEast
    JapanEast JapanEast Location for Azure
    AzureLocationJapanWest
    JapanWest JapanWest Location for Azure
    AzureLocationKoreaCentral
    KoreaCentral KoreaCentral Location for Azure
    AzureLocationKoreaSouth
    KoreaSouth KoreaSouth Location for Azure
    AzureLocationUkWest
    UkWest UkWest Location for Azure
    AzureLocationUkSouth
    UkSouth UkSouth Location for Azure
    AzureLocationNorthCentralUs
    NorthCentralUs NorthCentralUs Location for Azure
    AzureLocationEastUs
    EastUs EastUs Location for Azure
    AzureLocationWestUs2
    WestUs2 WestUs2 Location for Azure
    AzureLocationSouthCentralUs
    SouthCentralUs SouthCentralUs Location for Azure
    AzureLocationCentralUs
    CentralUs CentralUs Location for Azure
    AzureLocationEastUs2
    EastUs2 EastUs2 Location for Azure
    AzureLocationWestUs
    WestUs WestUs Location for Azure
    AzureLocationWestCentralUs
    WestCentralUs WestCentralUs Location for Azure
    AzureLocationGermanyCentral
    GermanyCentral GermanyCentral Location for Azure
    AzureLocationGermanyNortheast
    GermanyNortheast GermanyNortheast Location for Azure
    AzureLocationChinaNorth
    ChinaNorth ChinaNorth Location for Azure
    AzureLocationChinaEast
    ChinaEast ChinaEast Location for Azure
    AzureLocationUSGovArizona
    USGovArizona USGovArizona Location for Azure
    AzureLocationUSGovTexas
    USGovTexas USGovTexas Location for Azure
    AzureLocationUSGovIowa
    USGovIowa USGovIowa Location for Azure
    AzureLocationUSGovVirginia
    USGovVirginia USGovVirginia Location for Azure
    AzureLocationUSDoDCentral
    USDoDCentral USDoDCentral Location for Azure
    AzureLocationUSDoDEast
    USDoDEast USDoDEast Location for Azure
    AzureLocationFranceCentral
    FranceCentral FranceCentral Location for Azure
    AzureLocationAustraliaCentral
    AustraliaCentral AustraliaCentral Location for Azure
    AzureLocationSouthAfricaNorth
    SouthAfricaNorth SouthAfricaNorth Location for Azure
    AzureLocationFranceSouth
    FranceSouth FranceSouth Location for Azure
    AzureLocationAustraliaCentral2
    AustraliaCentral2 AustraliaCentral2 Location for Azure
    AzureLocationSouthAfricaWest
    SouthAfricaWest SouthAfricaWest Location for Azure
    AzureLocationGermanyNorth
    GermanyNorth GermanyNorth Location for Azure
    AzureLocationGermanyWestCentral
    GermanyWestCentral GermanyWestCentral Location for Azure
    AzureLocationNorwayEast
    NorwayEast NorwayEast Location for Azure
    AzureLocationNorwayWest
    NorwayWest NorwayWest Location for Azure
    AzureLocationChinaEast2
    ChinaEast2 ChinaEast2 Location for Azure
    AzureLocationChinaNorth2
    ChinaNorth2 ChinaNorth2 Location for Azure
    AzureLocationSwitzerlandNorth
    SwitzerlandNorth SwitzerlandNorth Location for Azure
    AzureLocationSwitzerlandWest
    SwitzerlandWest SwitzerlandWest Location for Azure
    AzureLocationUAENorth
    UAENorth UAENorth Location for Azure
    AzureLocationUAECentral
    UAECentral UAECentral Location for Azure
    AzureLocationUsNatEast
    UsNatEast UsNatEast Location for Azure
    AzureLocationUsNatWest
    UsNatWest UsNatWest Location for Azure
    AzureLocationUsSecEast
    UsSecEast UsSecEast Location for Azure
    AzureLocationUsSecCentral
    UsSecCentral UsSecCentral Location for Azure
    AzureLocationUsSecWest
    UsSecWest UsSecWest Location for Azure
    AzureLocationSwedenCentral
    SwedenCentral SwedenCentral Location for Azure
    AzureLocationQatarCentral
    QatarCentral QatarCentral Location for Azure
    AzureLocationJioIndiaWest
    JioIndiaWest JioIndiaWest Location for Azure
    AzureLocationItalyNorth
    ItalyNorth ItalyNorth Location for Azure
    AzureLocationPolandCentral
    PolandCentral PolandCentral Location for Azure
    AzureLocationIsraelCentral
    IsraelCentral IsraelCentral Location for Azure
    AzureLocationMexicoCentral
    MexicoCentral MexicoCentral Location for Azure
    AzureLocationNewZealandNorth
    NewZealandNorth NewZealandNorth Location for Azure
    AzureLocationSpainCentral
    SpainCentral SpainCentral Location for Azure
    Unknown
    Unknown Unknown Location for Azure
    EastAsia
    EastAsia EastAsia Location for Azure
    SoutheastAsia
    SoutheastAsia SoutheastAsia Location for Azure
    AustraliaEast
    AustraliaEast AustraliaEast Location for Azure
    AustraliaSoutheast
    AustraliaSoutheast AustraliaSoutheast Location for Azure
    BrazilSouth
    BrazilSouth BrazilSouth Location for Azure
    CanadaCentral
    CanadaCentral CanadaCentral Location for Azure
    CanadaEast
    CanadaEast CanadaEast Location for Azure
    WestEurope
    WestEurope WestEurope Location for Azure
    NorthEurope
    NorthEurope NorthEurope Location for Azure
    CentralIndia
    CentralIndia CentralIndia Location for Azure
    SouthIndia
    SouthIndia SouthIndia Location for Azure
    WestIndia
    WestIndia WestIndia Location for Azure
    JapanEast
    JapanEast JapanEast Location for Azure
    JapanWest
    JapanWest JapanWest Location for Azure
    KoreaCentral
    KoreaCentral KoreaCentral Location for Azure
    KoreaSouth
    KoreaSouth KoreaSouth Location for Azure
    UkWest
    UkWest UkWest Location for Azure
    UkSouth
    UkSouth UkSouth Location for Azure
    NorthCentralUs
    NorthCentralUs NorthCentralUs Location for Azure
    EastUs
    EastUs EastUs Location for Azure
    WestUs2
    WestUs2 WestUs2 Location for Azure
    SouthCentralUs
    SouthCentralUs SouthCentralUs Location for Azure
    CentralUs
    CentralUs CentralUs Location for Azure
    EastUs2
    EastUs2 EastUs2 Location for Azure
    WestUs
    WestUs WestUs Location for Azure
    WestCentralUs
    WestCentralUs WestCentralUs Location for Azure
    GermanyCentral
    GermanyCentral GermanyCentral Location for Azure
    GermanyNortheast
    GermanyNortheast GermanyNortheast Location for Azure
    ChinaNorth
    ChinaNorth ChinaNorth Location for Azure
    ChinaEast
    ChinaEast ChinaEast Location for Azure
    USGovArizona
    USGovArizona USGovArizona Location for Azure
    USGovTexas
    USGovTexas USGovTexas Location for Azure
    USGovIowa
    USGovIowa USGovIowa Location for Azure
    USGovVirginia
    USGovVirginia USGovVirginia Location for Azure
    USDoDCentral
    USDoDCentral USDoDCentral Location for Azure
    USDoDEast
    USDoDEast USDoDEast Location for Azure
    FranceCentral
    FranceCentral FranceCentral Location for Azure
    AustraliaCentral
    AustraliaCentral AustraliaCentral Location for Azure
    SouthAfricaNorth
    SouthAfricaNorth SouthAfricaNorth Location for Azure
    FranceSouth
    FranceSouth FranceSouth Location for Azure
    AustraliaCentral2
    AustraliaCentral2 AustraliaCentral2 Location for Azure
    SouthAfricaWest
    SouthAfricaWest SouthAfricaWest Location for Azure
    GermanyNorth
    GermanyNorth GermanyNorth Location for Azure
    GermanyWestCentral
    GermanyWestCentral GermanyWestCentral Location for Azure
    NorwayEast
    NorwayEast NorwayEast Location for Azure
    NorwayWest
    NorwayWest NorwayWest Location for Azure
    ChinaEast2
    ChinaEast2 ChinaEast2 Location for Azure
    ChinaNorth2
    ChinaNorth2 ChinaNorth2 Location for Azure
    SwitzerlandNorth
    SwitzerlandNorth SwitzerlandNorth Location for Azure
    SwitzerlandWest
    SwitzerlandWest SwitzerlandWest Location for Azure
    UAENorth
    UAENorth UAENorth Location for Azure
    UAECentral
    UAECentral UAECentral Location for Azure
    UsNatEast
    UsNatEast UsNatEast Location for Azure
    UsNatWest
    UsNatWest UsNatWest Location for Azure
    UsSecEast
    UsSecEast UsSecEast Location for Azure
    UsSecCentral
    UsSecCentral UsSecCentral Location for Azure
    UsSecWest
    UsSecWest UsSecWest Location for Azure
    SwedenCentral
    SwedenCentral SwedenCentral Location for Azure
    QatarCentral
    QatarCentral QatarCentral Location for Azure
    JioIndiaWest
    JioIndiaWest JioIndiaWest Location for Azure
    ItalyNorth
    ItalyNorth ItalyNorth Location for Azure
    PolandCentral
    PolandCentral PolandCentral Location for Azure
    IsraelCentral
    IsraelCentral IsraelCentral Location for Azure
    MexicoCentral
    MexicoCentral MexicoCentral Location for Azure
    NewZealandNorth
    NewZealandNorth NewZealandNorth Location for Azure
    SpainCentral
    SpainCentral SpainCentral Location for Azure
    Unknown
    Unknown Unknown Location for Azure
    EastAsia
    EastAsia EastAsia Location for Azure
    SoutheastAsia
    SoutheastAsia SoutheastAsia Location for Azure
    AustraliaEast
    AustraliaEast AustraliaEast Location for Azure
    AustraliaSoutheast
    AustraliaSoutheast AustraliaSoutheast Location for Azure
    BrazilSouth
    BrazilSouth BrazilSouth Location for Azure
    CanadaCentral
    CanadaCentral CanadaCentral Location for Azure
    CanadaEast
    CanadaEast CanadaEast Location for Azure
    WestEurope
    WestEurope WestEurope Location for Azure
    NorthEurope
    NorthEurope NorthEurope Location for Azure
    CentralIndia
    CentralIndia CentralIndia Location for Azure
    SouthIndia
    SouthIndia SouthIndia Location for Azure
    WestIndia
    WestIndia WestIndia Location for Azure
    JapanEast
    JapanEast JapanEast Location for Azure
    JapanWest
    JapanWest JapanWest Location for Azure
    KoreaCentral
    KoreaCentral KoreaCentral Location for Azure
    KoreaSouth
    KoreaSouth KoreaSouth Location for Azure
    UkWest
    UkWest UkWest Location for Azure
    UkSouth
    UkSouth UkSouth Location for Azure
    NorthCentralUs
    NorthCentralUs NorthCentralUs Location for Azure
    EastUs
    EastUs EastUs Location for Azure
    WestUs2
    WestUs2 WestUs2 Location for Azure
    SouthCentralUs
    SouthCentralUs SouthCentralUs Location for Azure
    CentralUs
    CentralUs CentralUs Location for Azure
    EastUs2
    EastUs2 EastUs2 Location for Azure
    WestUs
    WestUs WestUs Location for Azure
    WestCentralUs
    WestCentralUs WestCentralUs Location for Azure
    GermanyCentral
    GermanyCentral GermanyCentral Location for Azure
    GermanyNortheast
    GermanyNortheast GermanyNortheast Location for Azure
    ChinaNorth
    ChinaNorth ChinaNorth Location for Azure
    ChinaEast
    ChinaEast ChinaEast Location for Azure
    USGovArizona
    USGovArizona USGovArizona Location for Azure
    USGovTexas
    USGovTexas USGovTexas Location for Azure
    USGovIowa
    USGovIowa USGovIowa Location for Azure
    USGovVirginia
    USGovVirginia USGovVirginia Location for Azure
    USDoDCentral
    USDoDCentral USDoDCentral Location for Azure
    USDoDEast
    USDoDEast USDoDEast Location for Azure
    FranceCentral
    FranceCentral FranceCentral Location for Azure
    AustraliaCentral
    AustraliaCentral AustraliaCentral Location for Azure
    SouthAfricaNorth
    SouthAfricaNorth SouthAfricaNorth Location for Azure
    FranceSouth
    FranceSouth FranceSouth Location for Azure
    AustraliaCentral2
    AustraliaCentral2 AustraliaCentral2 Location for Azure
    SouthAfricaWest
    SouthAfricaWest SouthAfricaWest Location for Azure
    GermanyNorth
    GermanyNorth GermanyNorth Location for Azure
    GermanyWestCentral
    GermanyWestCentral GermanyWestCentral Location for Azure
    NorwayEast
    NorwayEast NorwayEast Location for Azure
    NorwayWest
    NorwayWest NorwayWest Location for Azure
    ChinaEast2
    ChinaEast2 ChinaEast2 Location for Azure
    ChinaNorth2
    ChinaNorth2 ChinaNorth2 Location for Azure
    SwitzerlandNorth
    SwitzerlandNorth SwitzerlandNorth Location for Azure
    SwitzerlandWest
    SwitzerlandWest SwitzerlandWest Location for Azure
    UAENorth
    UAENorth UAENorth Location for Azure
    UAECentral
    UAECentral UAECentral Location for Azure
    UsNatEast
    UsNatEast UsNatEast Location for Azure
    UsNatWest
    UsNatWest UsNatWest Location for Azure
    UsSecEast
    UsSecEast UsSecEast Location for Azure
    UsSecCentral
    UsSecCentral UsSecCentral Location for Azure
    UsSecWest
    UsSecWest UsSecWest Location for Azure
    SwedenCentral
    SwedenCentral SwedenCentral Location for Azure
    QatarCentral
    QatarCentral QatarCentral Location for Azure
    JioIndiaWest
    JioIndiaWest JioIndiaWest Location for Azure
    ItalyNorth
    ItalyNorth ItalyNorth Location for Azure
    PolandCentral
    PolandCentral PolandCentral Location for Azure
    IsraelCentral
    IsraelCentral IsraelCentral Location for Azure
    MexicoCentral
    MexicoCentral MexicoCentral Location for Azure
    NewZealandNorth
    NewZealandNorth NewZealandNorth Location for Azure
    SpainCentral
    SpainCentral SpainCentral Location for Azure
    UNKNOWN
    Unknown Unknown Location for Azure
    EAST_ASIA
    EastAsia EastAsia Location for Azure
    SOUTHEAST_ASIA
    SoutheastAsia SoutheastAsia Location for Azure
    AUSTRALIA_EAST
    AustraliaEast AustraliaEast Location for Azure
    AUSTRALIA_SOUTHEAST
    AustraliaSoutheast AustraliaSoutheast Location for Azure
    BRAZIL_SOUTH
    BrazilSouth BrazilSouth Location for Azure
    CANADA_CENTRAL
    CanadaCentral CanadaCentral Location for Azure
    CANADA_EAST
    CanadaEast CanadaEast Location for Azure
    WEST_EUROPE
    WestEurope WestEurope Location for Azure
    NORTH_EUROPE
    NorthEurope NorthEurope Location for Azure
    CENTRAL_INDIA
    CentralIndia CentralIndia Location for Azure
    SOUTH_INDIA
    SouthIndia SouthIndia Location for Azure
    WEST_INDIA
    WestIndia WestIndia Location for Azure
    JAPAN_EAST
    JapanEast JapanEast Location for Azure
    JAPAN_WEST
    JapanWest JapanWest Location for Azure
    KOREA_CENTRAL
    KoreaCentral KoreaCentral Location for Azure
    KOREA_SOUTH
    KoreaSouth KoreaSouth Location for Azure
    UK_WEST
    UkWest UkWest Location for Azure
    UK_SOUTH
    UkSouth UkSouth Location for Azure
    NORTH_CENTRAL_US
    NorthCentralUs NorthCentralUs Location for Azure
    EAST_US
    EastUs EastUs Location for Azure
    WEST_US2
    WestUs2 WestUs2 Location for Azure
    SOUTH_CENTRAL_US
    SouthCentralUs SouthCentralUs Location for Azure
    CENTRAL_US
    CentralUs CentralUs Location for Azure
    EAST_US2
    EastUs2 EastUs2 Location for Azure
    WEST_US
    WestUs WestUs Location for Azure
    WEST_CENTRAL_US
    WestCentralUs WestCentralUs Location for Azure
    GERMANY_CENTRAL
    GermanyCentral GermanyCentral Location for Azure
    GERMANY_NORTHEAST
    GermanyNortheast GermanyNortheast Location for Azure
    CHINA_NORTH
    ChinaNorth ChinaNorth Location for Azure
    CHINA_EAST
    ChinaEast ChinaEast Location for Azure
    US_GOV_ARIZONA
    USGovArizona USGovArizona Location for Azure
    US_GOV_TEXAS
    USGovTexas USGovTexas Location for Azure
    US_GOV_IOWA
    USGovIowa USGovIowa Location for Azure
    US_GOV_VIRGINIA
    USGovVirginia USGovVirginia Location for Azure
    US_DO_D_CENTRAL
    USDoDCentral USDoDCentral Location for Azure
    US_DO_D_EAST
    USDoDEast USDoDEast Location for Azure
    FRANCE_CENTRAL
    FranceCentral FranceCentral Location for Azure
    AUSTRALIA_CENTRAL
    AustraliaCentral AustraliaCentral Location for Azure
    SOUTH_AFRICA_NORTH
    SouthAfricaNorth SouthAfricaNorth Location for Azure
    FRANCE_SOUTH
    FranceSouth FranceSouth Location for Azure
    AUSTRALIA_CENTRAL2
    AustraliaCentral2 AustraliaCentral2 Location for Azure
    SOUTH_AFRICA_WEST
    SouthAfricaWest SouthAfricaWest Location for Azure
    GERMANY_NORTH
    GermanyNorth GermanyNorth Location for Azure
    GERMANY_WEST_CENTRAL
    GermanyWestCentral GermanyWestCentral Location for Azure
    NORWAY_EAST
    NorwayEast NorwayEast Location for Azure
    NORWAY_WEST
    NorwayWest NorwayWest Location for Azure
    CHINA_EAST2
    ChinaEast2 ChinaEast2 Location for Azure
    CHINA_NORTH2
    ChinaNorth2 ChinaNorth2 Location for Azure
    SWITZERLAND_NORTH
    SwitzerlandNorth SwitzerlandNorth Location for Azure
    SWITZERLAND_WEST
    SwitzerlandWest SwitzerlandWest Location for Azure
    UAE_NORTH
    UAENorth UAENorth Location for Azure
    UAE_CENTRAL
    UAECentral UAECentral Location for Azure
    US_NAT_EAST
    UsNatEast UsNatEast Location for Azure
    US_NAT_WEST
    UsNatWest UsNatWest Location for Azure
    US_SEC_EAST
    UsSecEast UsSecEast Location for Azure
    US_SEC_CENTRAL
    UsSecCentral UsSecCentral Location for Azure
    US_SEC_WEST
    UsSecWest UsSecWest Location for Azure
    SWEDEN_CENTRAL
    SwedenCentral SwedenCentral Location for Azure
    QATAR_CENTRAL
    QatarCentral QatarCentral Location for Azure
    JIO_INDIA_WEST
    JioIndiaWest JioIndiaWest Location for Azure
    ITALY_NORTH
    ItalyNorth ItalyNorth Location for Azure
    POLAND_CENTRAL
    PolandCentral PolandCentral Location for Azure
    ISRAEL_CENTRAL
    IsraelCentral IsraelCentral Location for Azure
    MEXICO_CENTRAL
    MexicoCentral MexicoCentral Location for Azure
    NEW_ZEALAND_NORTH
    NewZealandNorth NewZealandNorth Location for Azure
    SPAIN_CENTRAL
    SpainCentral SpainCentral Location for Azure
    "Unknown"
    Unknown Unknown Location for Azure
    "EastAsia"
    EastAsia EastAsia Location for Azure
    "SoutheastAsia"
    SoutheastAsia SoutheastAsia Location for Azure
    "AustraliaEast"
    AustraliaEast AustraliaEast Location for Azure
    "AustraliaSoutheast"
    AustraliaSoutheast AustraliaSoutheast Location for Azure
    "BrazilSouth"
    BrazilSouth BrazilSouth Location for Azure
    "CanadaCentral"
    CanadaCentral CanadaCentral Location for Azure
    "CanadaEast"
    CanadaEast CanadaEast Location for Azure
    "WestEurope"
    WestEurope WestEurope Location for Azure
    "NorthEurope"
    NorthEurope NorthEurope Location for Azure
    "CentralIndia"
    CentralIndia CentralIndia Location for Azure
    "SouthIndia"
    SouthIndia SouthIndia Location for Azure
    "WestIndia"
    WestIndia WestIndia Location for Azure
    "JapanEast"
    JapanEast JapanEast Location for Azure
    "JapanWest"
    JapanWest JapanWest Location for Azure
    "KoreaCentral"
    KoreaCentral KoreaCentral Location for Azure
    "KoreaSouth"
    KoreaSouth KoreaSouth Location for Azure
    "UkWest"
    UkWest UkWest Location for Azure
    "UkSouth"
    UkSouth UkSouth Location for Azure
    "NorthCentralUs"
    NorthCentralUs NorthCentralUs Location for Azure
    "EastUs"
    EastUs EastUs Location for Azure
    "WestUs2"
    WestUs2 WestUs2 Location for Azure
    "SouthCentralUs"
    SouthCentralUs SouthCentralUs Location for Azure
    "CentralUs"
    CentralUs CentralUs Location for Azure
    "EastUs2"
    EastUs2 EastUs2 Location for Azure
    "WestUs"
    WestUs WestUs Location for Azure
    "WestCentralUs"
    WestCentralUs WestCentralUs Location for Azure
    "GermanyCentral"
    GermanyCentral GermanyCentral Location for Azure
    "GermanyNortheast"
    GermanyNortheast GermanyNortheast Location for Azure
    "ChinaNorth"
    ChinaNorth ChinaNorth Location for Azure
    "ChinaEast"
    ChinaEast ChinaEast Location for Azure
    "USGovArizona"
    USGovArizona USGovArizona Location for Azure
    "USGovTexas"
    USGovTexas USGovTexas Location for Azure
    "USGovIowa"
    USGovIowa USGovIowa Location for Azure
    "USGovVirginia"
    USGovVirginia USGovVirginia Location for Azure
    "USDoDCentral"
    USDoDCentral USDoDCentral Location for Azure
    "USDoDEast"
    USDoDEast USDoDEast Location for Azure
    "FranceCentral"
    FranceCentral FranceCentral Location for Azure
    "AustraliaCentral"
    AustraliaCentral AustraliaCentral Location for Azure
    "SouthAfricaNorth"
    SouthAfricaNorth SouthAfricaNorth Location for Azure
    "FranceSouth"
    FranceSouth FranceSouth Location for Azure
    "AustraliaCentral2"
    AustraliaCentral2 AustraliaCentral2 Location for Azure
    "SouthAfricaWest"
    SouthAfricaWest SouthAfricaWest Location for Azure
    "GermanyNorth"
    GermanyNorth GermanyNorth Location for Azure
    "GermanyWestCentral"
    GermanyWestCentral GermanyWestCentral Location for Azure
    "NorwayEast"
    NorwayEast NorwayEast Location for Azure
    "NorwayWest"
    NorwayWest NorwayWest Location for Azure
    "ChinaEast2"
    ChinaEast2 ChinaEast2 Location for Azure
    "ChinaNorth2"
    ChinaNorth2 ChinaNorth2 Location for Azure
    "SwitzerlandNorth"
    SwitzerlandNorth SwitzerlandNorth Location for Azure
    "SwitzerlandWest"
    SwitzerlandWest SwitzerlandWest Location for Azure
    "UAENorth"
    UAENorth UAENorth Location for Azure
    "UAECentral"
    UAECentral UAECentral Location for Azure
    "UsNatEast"
    UsNatEast UsNatEast Location for Azure
    "UsNatWest"
    UsNatWest UsNatWest Location for Azure
    "UsSecEast"
    UsSecEast UsSecEast Location for Azure
    "UsSecCentral"
    UsSecCentral UsSecCentral Location for Azure
    "UsSecWest"
    UsSecWest UsSecWest Location for Azure
    "SwedenCentral"
    SwedenCentral SwedenCentral Location for Azure
    "QatarCentral"
    QatarCentral QatarCentral Location for Azure
    "JioIndiaWest"
    JioIndiaWest JioIndiaWest Location for Azure
    "ItalyNorth"
    ItalyNorth ItalyNorth Location for Azure
    "PolandCentral"
    PolandCentral PolandCentral Location for Azure
    "IsraelCentral"
    IsraelCentral IsraelCentral Location for Azure
    "MexicoCentral"
    MexicoCentral MexicoCentral Location for Azure
    "NewZealandNorth"
    NewZealandNorth NewZealandNorth Location for Azure
    "SpainCentral"
    SpainCentral SpainCentral Location for Azure

    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
    AzureOfferCodeUnknown
    Unknown
    AzureOfferCodeMsazr0003P
    MSAZR0003P
    AzureOfferCodeMsazr0044P
    MSAZR0044P
    AzureOfferCodeMsazr0059P
    MSAZR0059P
    AzureOfferCodeMsazr0060P
    MSAZR0060P
    AzureOfferCodeMsazr0062P
    MSAZR0062P
    AzureOfferCodeMsazr0063P
    MSAZR0063P
    AzureOfferCodeMsazr0064P
    MSAZR0064P
    AzureOfferCodeMsazr0029P
    MSAZR0029P
    AzureOfferCodeMsazr0022P
    MSAZR0022P
    AzureOfferCodeMsazr0023P
    MSAZR0023P
    AzureOfferCodeMsazr0148P
    MSAZR0148P
    AzureOfferCodeMsazr0025P
    MSAZR0025P
    AzureOfferCodeMsazr0036P
    MSAZR0036P
    AzureOfferCodeMsazr0120P
    MSAZR0120P
    AzureOfferCodeMsazr0121P
    MSAZR0121P
    AzureOfferCodeMsazr0122P
    MSAZR0122P
    AzureOfferCodeMsazr0123P
    MSAZR0123P
    AzureOfferCodeMsazr0124P
    MSAZR0124P
    AzureOfferCodeMsazr0125P
    MSAZR0125P
    AzureOfferCodeMsazr0126P
    MSAZR0126P
    AzureOfferCodeMsazr0127P
    MSAZR0127P
    AzureOfferCodeMsazr0128P
    MSAZR0128P
    AzureOfferCodeMsazr0129P
    MSAZR0129P
    AzureOfferCodeMsazr0130P
    MSAZR0130P
    AzureOfferCodeMsazr0111P
    MSAZR0111P
    AzureOfferCodeMsazr0144P
    MSAZR0144P
    AzureOfferCodeMsazr0149P
    MSAZR0149P
    AzureOfferCodeMsmcazr0044P
    MSMCAZR0044P
    AzureOfferCodeMsmcazr0059P
    MSMCAZR0059P
    AzureOfferCodeMsmcazr0060P
    MSMCAZR0060P
    AzureOfferCodeMsmcazr0063P
    MSMCAZR0063P
    AzureOfferCodeMsmcazr0120P
    MSMCAZR0120P
    AzureOfferCodeMsmcazr0121P
    MSMCAZR0121P
    AzureOfferCodeMsmcazr0125P
    MSMCAZR0125P
    AzureOfferCodeMsmcazr0128P
    MSMCAZR0128P
    AzureOfferCodeMsazrde0003P
    MSAZRDE0003P
    AzureOfferCodeMsazrde0044P
    MSAZRDE0044P
    AzureOfferCodeMsazrusgov0003P
    MSAZRUSGOV0003P
    AzureOfferCodeEA
    EA
    AzureOfferCodeMsazr0243P
    MSAZR0243P
    AzureOfferCodeSavingsPlan1Year
    SavingsPlan1Year
    AzureOfferCodeSavingsPlan3Year
    SavingsPlan3Year
    Unknown
    Unknown
    Msazr0003P
    MSAZR0003P
    Msazr0044P
    MSAZR0044P
    Msazr0059P
    MSAZR0059P
    Msazr0060P
    MSAZR0060P
    Msazr0062P
    MSAZR0062P
    Msazr0063P
    MSAZR0063P
    Msazr0064P
    MSAZR0064P
    Msazr0029P
    MSAZR0029P
    Msazr0022P
    MSAZR0022P
    Msazr0023P
    MSAZR0023P
    Msazr0148P
    MSAZR0148P
    Msazr0025P
    MSAZR0025P
    Msazr0036P
    MSAZR0036P
    Msazr0120P
    MSAZR0120P
    Msazr0121P
    MSAZR0121P
    Msazr0122P
    MSAZR0122P
    Msazr0123P
    MSAZR0123P
    Msazr0124P
    MSAZR0124P
    Msazr0125P
    MSAZR0125P
    Msazr0126P
    MSAZR0126P
    Msazr0127P
    MSAZR0127P
    Msazr0128P
    MSAZR0128P
    Msazr0129P
    MSAZR0129P
    Msazr0130P
    MSAZR0130P
    Msazr0111P
    MSAZR0111P
    Msazr0144P
    MSAZR0144P
    Msazr0149P
    MSAZR0149P
    Msmcazr0044P
    MSMCAZR0044P
    Msmcazr0059P
    MSMCAZR0059P
    Msmcazr0060P
    MSMCAZR0060P
    Msmcazr0063P
    MSMCAZR0063P
    Msmcazr0120P
    MSMCAZR0120P
    Msmcazr0121P
    MSMCAZR0121P
    Msmcazr0125P
    MSMCAZR0125P
    Msmcazr0128P
    MSMCAZR0128P
    Msazrde0003P
    MSAZRDE0003P
    Msazrde0044P
    MSAZRDE0044P
    Msazrusgov0003P
    MSAZRUSGOV0003P
    EA
    EA
    Msazr0243P
    MSAZR0243P
    SavingsPlan1Year
    SavingsPlan1Year
    SavingsPlan3Year
    SavingsPlan3Year
    Unknown
    Unknown
    Msazr0003P
    MSAZR0003P
    Msazr0044P
    MSAZR0044P
    Msazr0059P
    MSAZR0059P
    Msazr0060P
    MSAZR0060P
    Msazr0062P
    MSAZR0062P
    Msazr0063P
    MSAZR0063P
    Msazr0064P
    MSAZR0064P
    Msazr0029P
    MSAZR0029P
    Msazr0022P
    MSAZR0022P
    Msazr0023P
    MSAZR0023P
    Msazr0148P
    MSAZR0148P
    Msazr0025P
    MSAZR0025P
    Msazr0036P
    MSAZR0036P
    Msazr0120P
    MSAZR0120P
    Msazr0121P
    MSAZR0121P
    Msazr0122P
    MSAZR0122P
    Msazr0123P
    MSAZR0123P
    Msazr0124P
    MSAZR0124P
    Msazr0125P
    MSAZR0125P
    Msazr0126P
    MSAZR0126P
    Msazr0127P
    MSAZR0127P
    Msazr0128P
    MSAZR0128P
    Msazr0129P
    MSAZR0129P
    Msazr0130P
    MSAZR0130P
    Msazr0111P
    MSAZR0111P
    Msazr0144P
    MSAZR0144P
    Msazr0149P
    MSAZR0149P
    Msmcazr0044P
    MSMCAZR0044P
    Msmcazr0059P
    MSMCAZR0059P
    Msmcazr0060P
    MSMCAZR0060P
    Msmcazr0063P
    MSMCAZR0063P
    Msmcazr0120P
    MSMCAZR0120P
    Msmcazr0121P
    MSMCAZR0121P
    Msmcazr0125P
    MSMCAZR0125P
    Msmcazr0128P
    MSMCAZR0128P
    Msazrde0003P
    MSAZRDE0003P
    Msazrde0044P
    MSAZRDE0044P
    Msazrusgov0003P
    MSAZRUSGOV0003P
    EA
    EA
    Msazr0243P
    MSAZR0243P
    SavingsPlan1Year
    SavingsPlan1Year
    SavingsPlan3Year
    SavingsPlan3Year
    UNKNOWN
    Unknown
    MSAZR0003_P
    MSAZR0003P
    MSAZR0044_P
    MSAZR0044P
    MSAZR0059_P
    MSAZR0059P
    MSAZR0060_P
    MSAZR0060P
    MSAZR0062_P
    MSAZR0062P
    MSAZR0063_P
    MSAZR0063P
    MSAZR0064_P
    MSAZR0064P
    MSAZR0029_P
    MSAZR0029P
    MSAZR0022_P
    MSAZR0022P
    MSAZR0023_P
    MSAZR0023P
    MSAZR0148_P
    MSAZR0148P
    MSAZR0025_P
    MSAZR0025P
    MSAZR0036_P
    MSAZR0036P
    MSAZR0120_P
    MSAZR0120P
    MSAZR0121_P
    MSAZR0121P
    MSAZR0122_P
    MSAZR0122P
    MSAZR0123_P
    MSAZR0123P
    MSAZR0124_P
    MSAZR0124P
    MSAZR0125_P
    MSAZR0125P
    MSAZR0126_P
    MSAZR0126P
    MSAZR0127_P
    MSAZR0127P
    MSAZR0128_P
    MSAZR0128P
    MSAZR0129_P
    MSAZR0129P
    MSAZR0130_P
    MSAZR0130P
    MSAZR0111_P
    MSAZR0111P
    MSAZR0144_P
    MSAZR0144P
    MSAZR0149_P
    MSAZR0149P
    MSMCAZR0044_P
    MSMCAZR0044P
    MSMCAZR0059_P
    MSMCAZR0059P
    MSMCAZR0060_P
    MSMCAZR0060P
    MSMCAZR0063_P
    MSMCAZR0063P
    MSMCAZR0120_P
    MSMCAZR0120P
    MSMCAZR0121_P
    MSMCAZR0121P
    MSMCAZR0125_P
    MSMCAZR0125P
    MSMCAZR0128_P
    MSMCAZR0128P
    MSAZRDE0003_P
    MSAZRDE0003P
    MSAZRDE0044_P
    MSAZRDE0044P
    MSAZRUSGOV0003_P
    MSAZRUSGOV0003P
    EA
    EA
    MSAZR0243_P
    MSAZR0243P
    SAVINGS_PLAN1_YEAR
    SavingsPlan1Year
    SAVINGS_PLAN3_YEAR
    SavingsPlan3Year
    "Unknown"
    Unknown
    "MSAZR0003P"
    MSAZR0003P
    "MSAZR0044P"
    MSAZR0044P
    "MSAZR0059P"
    MSAZR0059P
    "MSAZR0060P"
    MSAZR0060P
    "MSAZR0062P"
    MSAZR0062P
    "MSAZR0063P"
    MSAZR0063P
    "MSAZR0064P"
    MSAZR0064P
    "MSAZR0029P"
    MSAZR0029P
    "MSAZR0022P"
    MSAZR0022P
    "MSAZR0023P"
    MSAZR0023P
    "MSAZR0148P"
    MSAZR0148P
    "MSAZR0025P"
    MSAZR0025P
    "MSAZR0036P"
    MSAZR0036P
    "MSAZR0120P"
    MSAZR0120P
    "MSAZR0121P"
    MSAZR0121P
    "MSAZR0122P"
    MSAZR0122P
    "MSAZR0123P"
    MSAZR0123P
    "MSAZR0124P"
    MSAZR0124P
    "MSAZR0125P"
    MSAZR0125P
    "MSAZR0126P"
    MSAZR0126P
    "MSAZR0127P"
    MSAZR0127P
    "MSAZR0128P"
    MSAZR0128P
    "MSAZR0129P"
    MSAZR0129P
    "MSAZR0130P"
    MSAZR0130P
    "MSAZR0111P"
    MSAZR0111P
    "MSAZR0144P"
    MSAZR0144P
    "MSAZR0149P"
    MSAZR0149P
    "MSMCAZR0044P"
    MSMCAZR0044P
    "MSMCAZR0059P"
    MSMCAZR0059P
    "MSMCAZR0060P"
    MSMCAZR0060P
    "MSMCAZR0063P"
    MSMCAZR0063P
    "MSMCAZR0120P"
    MSMCAZR0120P
    "MSMCAZR0121P"
    MSMCAZR0121P
    "MSMCAZR0125P"
    MSMCAZR0125P
    "MSMCAZR0128P"
    MSMCAZR0128P
    "MSAZRDE0003P"
    MSAZRDE0003P
    "MSAZRDE0044P"
    MSAZRDE0044P
    "MSAZRUSGOV0003P"
    MSAZRUSGOV0003P
    "EA"
    EA
    "MSAZR0243P"
    MSAZR0243P
    "SavingsPlan1Year"
    SavingsPlan1Year
    "SavingsPlan3Year"
    SavingsPlan3Year

    AzureReservedInstance, AzureReservedInstanceArgs

    None
    None
    RI1Year
    RI1Year
    RI3Year
    RI3Year
    AzureReservedInstanceNone
    None
    AzureReservedInstanceRI1Year
    RI1Year
    AzureReservedInstanceRI3Year
    RI3Year
    None
    None
    RI1Year
    RI1Year
    RI3Year
    RI3Year
    None
    None
    RI1Year
    RI1Year
    RI3Year
    RI3Year
    NONE
    None
    RI1_YEAR
    RI1Year
    RI3_YEAR
    RI3Year
    "None"
    None
    "RI1Year"
    RI1Year
    "RI3Year"
    RI3Year

    AzureSecurityOfferingType, AzureSecurityOfferingTypeArgs

    NO
    NO NO - Azure Security Offering Type
    MDC
    MDC MDC - Azure Security Offering Type
    AzureSecurityOfferingTypeNO
    NO NO - Azure Security Offering Type
    AzureSecurityOfferingTypeMDC
    MDC MDC - Azure Security Offering Type
    NO
    NO NO - Azure Security Offering Type
    MDC
    MDC MDC - Azure Security Offering Type
    NO
    NO NO - Azure Security Offering Type
    MDC
    MDC MDC - Azure Security Offering Type
    NO
    NO NO - Azure Security Offering Type
    MDC
    MDC MDC - Azure Security Offering Type
    "NO"
    NO NO - Azure Security Offering Type
    "MDC"
    MDC MDC - Azure Security Offering Type

    AzureSqlDataBaseType, AzureSqlDataBaseTypeArgs

    Unknown
    Unknown Unknown Data Base Type
    Automatic
    Automatic Automatic Data Base Type
    SingleDatabase
    SingleDatabase SingleDatabase Data Base Type
    ElasticPool
    ElasticPool ElasticPool Data Base Type
    AzureSqlDataBaseTypeUnknown
    Unknown Unknown Data Base Type
    AzureSqlDataBaseTypeAutomatic
    Automatic Automatic Data Base Type
    AzureSqlDataBaseTypeSingleDatabase
    SingleDatabase SingleDatabase Data Base Type
    AzureSqlDataBaseTypeElasticPool
    ElasticPool ElasticPool Data Base Type
    Unknown
    Unknown Unknown Data Base Type
    Automatic
    Automatic Automatic Data Base Type
    SingleDatabase
    SingleDatabase SingleDatabase Data Base Type
    ElasticPool
    ElasticPool ElasticPool Data Base Type
    Unknown
    Unknown Unknown Data Base Type
    Automatic
    Automatic Automatic Data Base Type
    SingleDatabase
    SingleDatabase SingleDatabase Data Base Type
    ElasticPool
    ElasticPool ElasticPool Data Base Type
    UNKNOWN
    Unknown Unknown Data Base Type
    AUTOMATIC
    Automatic Automatic Data Base Type
    SINGLE_DATABASE
    SingleDatabase SingleDatabase Data Base Type
    ELASTIC_POOL
    ElasticPool ElasticPool Data Base Type
    "Unknown"
    Unknown Unknown Data Base Type
    "Automatic"
    Automatic Automatic Data Base Type
    "SingleDatabase"
    SingleDatabase SingleDatabase Data Base Type
    "ElasticPool"
    ElasticPool ElasticPool Data Base Type

    AzureSqlInstanceType, AzureSqlInstanceTypeArgs

    Unknown
    Unknown Unknown Azure Sql Instance Type
    Automatic
    Automatic Automatic Azure Sql Instance Type
    SingleInstance
    SingleInstance SingleInstance Azure Sql Instance Type
    InstancePools
    InstancePools InstancePools Azure Sql Instance Type
    AzureSqlInstanceTypeUnknown
    Unknown Unknown Azure Sql Instance Type
    AzureSqlInstanceTypeAutomatic
    Automatic Automatic Azure Sql Instance Type
    AzureSqlInstanceTypeSingleInstance
    SingleInstance SingleInstance Azure Sql Instance Type
    AzureSqlInstanceTypeInstancePools
    InstancePools InstancePools Azure Sql Instance Type
    Unknown
    Unknown Unknown Azure Sql Instance Type
    Automatic
    Automatic Automatic Azure Sql Instance Type
    SingleInstance
    SingleInstance SingleInstance Azure Sql Instance Type
    InstancePools
    InstancePools InstancePools Azure Sql Instance Type
    Unknown
    Unknown Unknown Azure Sql Instance Type
    Automatic
    Automatic Automatic Azure Sql Instance Type
    SingleInstance
    SingleInstance SingleInstance Azure Sql Instance Type
    InstancePools
    InstancePools InstancePools Azure Sql Instance Type
    UNKNOWN
    Unknown Unknown Azure Sql Instance Type
    AUTOMATIC
    Automatic Automatic Azure Sql Instance Type
    SINGLE_INSTANCE
    SingleInstance SingleInstance Azure Sql Instance Type
    INSTANCE_POOLS
    InstancePools InstancePools Azure Sql Instance Type
    "Unknown"
    Unknown Unknown Azure Sql Instance Type
    "Automatic"
    Automatic Automatic Azure Sql Instance Type
    "SingleInstance"
    SingleInstance SingleInstance Azure Sql Instance Type
    "InstancePools"
    InstancePools InstancePools Azure Sql Instance Type

    AzureSqlPurchaseModel, AzureSqlPurchaseModelArgs

    Unknown
    Unknown Unknown Purchase Model
    VCore
    VCore VCore Purchase Model
    DTU
    DTU DTU Purchase Model
    AzureSqlPurchaseModelUnknown
    Unknown Unknown Purchase Model
    AzureSqlPurchaseModelVCore
    VCore VCore Purchase Model
    AzureSqlPurchaseModelDTU
    DTU DTU Purchase Model
    Unknown
    Unknown Unknown Purchase Model
    VCore
    VCore VCore Purchase Model
    DTU
    DTU DTU Purchase Model
    Unknown
    Unknown Unknown Purchase Model
    VCore
    VCore VCore Purchase Model
    DTU
    DTU DTU Purchase Model
    UNKNOWN
    Unknown Unknown Purchase Model
    V_CORE
    VCore VCore Purchase Model
    DTU
    DTU DTU Purchase Model
    "Unknown"
    Unknown Unknown Purchase Model
    "VCore"
    VCore VCore Purchase Model
    "DTU"
    DTU DTU Purchase Model

    AzureSqlServiceTier, AzureSqlServiceTierArgs

    Unknown
    Unknown
    Automatic
    Automatic
    GeneralPurpose
    GeneralPurpose
    BusinessCritical
    BusinessCritical
    HyperScale
    HyperScale
    AzureSqlServiceTierUnknown
    Unknown
    AzureSqlServiceTierAutomatic
    Automatic
    AzureSqlServiceTierGeneralPurpose
    GeneralPurpose
    AzureSqlServiceTierBusinessCritical
    BusinessCritical
    AzureSqlServiceTierHyperScale
    HyperScale
    Unknown
    Unknown
    Automatic
    Automatic
    GeneralPurpose
    GeneralPurpose
    BusinessCritical
    BusinessCritical
    HyperScale
    HyperScale
    Unknown
    Unknown
    Automatic
    Automatic
    GeneralPurpose
    GeneralPurpose
    BusinessCritical
    BusinessCritical
    HyperScale
    HyperScale
    UNKNOWN
    Unknown
    AUTOMATIC
    Automatic
    GENERAL_PURPOSE
    GeneralPurpose
    BUSINESS_CRITICAL
    BusinessCritical
    HYPER_SCALE
    HyperScale
    "Unknown"
    Unknown
    "Automatic"
    Automatic
    "GeneralPurpose"
    GeneralPurpose
    "BusinessCritical"
    BusinessCritical
    "HyperScale"
    HyperScale

    AzureVmFamily, AzureVmFamilyArgs

    Unknown
    Unknown Unknown - Azure VM Family
    BasicA0A4
    Basic_A0_A4 Basic_A0_A4
    StandardA0A7
    Standard_A0_A7 Standard_A0_A7
    StandardA8A11
    Standard_A8_A11 Standard_A8_A11
    Av2Series
    Av2_series Av2_series
    DSeries
    D_series D_series
    Dv2Series
    Dv2_series Dv2_series
    DSSeries
    DS_series DS_series
    DSv2Series
    DSv2_series DSv2_series
    FSeries
    F_series F_series
    FsSeries
    Fs_series Fs_series
    GSeries
    G_series G_series
    GSSeries
    GS_series GS_series
    HSeries
    H_series H_series
    LsSeries
    Ls_series Ls_series
    Dsv3Series
    Dsv3_series Dsv3_series
    Dv3Series
    Dv3_series Dv3_series
    Fsv2Series
    Fsv2_series Fsv2_series
    Ev3Series
    Ev3_series Ev3_series
    Esv3Series
    Esv3_series Esv3_series
    MSeries
    M_series M_series
    DCSeries
    DC_Series DC_Series
    Lsv2Series
    Lsv2_series Lsv2_series
    Ev4Series
    Ev4_series Ev4_series
    Esv4Series
    Esv4_series Esv4_series
    Edv4Series
    Edv4_series Edv4_series
    Edsv4Series
    Edsv4_series Edsv4_series
    Dv4Series
    Dv4_series Dv4_series
    Dsv4Series
    Dsv4_series Dsv4_series
    Ddv4Series
    Ddv4_series Ddv4_series
    Ddsv4Series
    Ddsv4_series Ddsv4_series
    Easv4Series
    Easv4_series Easv4_series
    Dasv4Series
    Dasv4_series Dasv4_series
    Mv2Series
    Mv2_series Mv2_series
    Eav4Series
    Eav4_series Eav4_series
    Dav4Series
    Dav4_series Dav4_series
    Msv2Series
    Msv2_series Msv2_series
    Mdsv2Series
    Mdsv2_series Mdsv2_series
    Dv5Series
    Dv5_series Dv5_series
    Dsv5Series
    Dsv5_series Dsv5_series
    Ddv5Series
    Ddv5_series Ddv5_series
    Ddsv5Series
    Ddsv5_series Ddsv5_series
    Dasv5Series
    Dasv5_series Dasv5_series
    Dadsv5Series
    Dadsv5_series Dadsv5_series
    Ev5Series
    Ev5_series Ev5_series
    Esv5Series
    Esv5_series Esv5_series
    Edv5Series
    Edv5_series Edv5_series
    Edsv5Series
    Edsv5_series Edsv5_series
    Easv5Series
    Easv5_series Easv5_series
    Eadsv5Series
    Eadsv5_series Eadsv5_series
    Ebsv5Series
    Ebsv5_series Ebsv5_series
    Ebdsv5Series
    Ebdsv5_series Ebdsv5_series
    AzureVmFamilyUnknown
    Unknown Unknown - Azure VM Family
    AzureVmFamilyBasicA0A4
    Basic_A0_A4 Basic_A0_A4
    AzureVmFamilyStandardA0A7
    Standard_A0_A7 Standard_A0_A7
    AzureVmFamilyStandardA8A11
    Standard_A8_A11 Standard_A8_A11
    AzureVmFamilyAv2Series
    Av2_series Av2_series
    AzureVmFamilyDSeries
    D_series D_series
    AzureVmFamilyDv2Series
    Dv2_series Dv2_series
    AzureVmFamilyDSSeries
    DS_series DS_series
    AzureVmFamilyDSv2Series
    DSv2_series DSv2_series
    AzureVmFamilyFSeries
    F_series F_series
    AzureVmFamilyFsSeries
    Fs_series Fs_series
    AzureVmFamilyGSeries
    G_series G_series
    AzureVmFamilyGSSeries
    GS_series GS_series
    AzureVmFamilyHSeries
    H_series H_series
    AzureVmFamilyLsSeries
    Ls_series Ls_series
    AzureVmFamilyDsv3Series
    Dsv3_series Dsv3_series
    AzureVmFamilyDv3Series
    Dv3_series Dv3_series
    AzureVmFamilyFsv2Series
    Fsv2_series Fsv2_series
    AzureVmFamilyEv3Series
    Ev3_series Ev3_series
    AzureVmFamilyEsv3Series
    Esv3_series Esv3_series
    AzureVmFamilyMSeries
    M_series M_series
    AzureVmFamilyDCSeries
    DC_Series DC_Series
    AzureVmFamilyLsv2Series
    Lsv2_series Lsv2_series
    AzureVmFamilyEv4Series
    Ev4_series Ev4_series
    AzureVmFamilyEsv4Series
    Esv4_series Esv4_series
    AzureVmFamilyEdv4Series
    Edv4_series Edv4_series
    AzureVmFamilyEdsv4Series
    Edsv4_series Edsv4_series
    AzureVmFamilyDv4Series
    Dv4_series Dv4_series
    AzureVmFamilyDsv4Series
    Dsv4_series Dsv4_series
    AzureVmFamilyDdv4Series
    Ddv4_series Ddv4_series
    AzureVmFamilyDdsv4Series
    Ddsv4_series Ddsv4_series
    AzureVmFamilyEasv4Series
    Easv4_series Easv4_series
    AzureVmFamilyDasv4Series
    Dasv4_series Dasv4_series
    AzureVmFamilyMv2Series
    Mv2_series Mv2_series
    AzureVmFamilyEav4Series
    Eav4_series Eav4_series
    AzureVmFamilyDav4Series
    Dav4_series Dav4_series
    AzureVmFamilyMsv2Series
    Msv2_series Msv2_series
    AzureVmFamilyMdsv2Series
    Mdsv2_series Mdsv2_series
    AzureVmFamilyDv5Series
    Dv5_series Dv5_series
    AzureVmFamilyDsv5Series
    Dsv5_series Dsv5_series
    AzureVmFamilyDdv5Series
    Ddv5_series Ddv5_series
    AzureVmFamilyDdsv5Series
    Ddsv5_series Ddsv5_series
    AzureVmFamilyDasv5Series
    Dasv5_series Dasv5_series
    AzureVmFamilyDadsv5Series
    Dadsv5_series Dadsv5_series
    AzureVmFamilyEv5Series
    Ev5_series Ev5_series
    AzureVmFamilyEsv5Series
    Esv5_series Esv5_series
    AzureVmFamilyEdv5Series
    Edv5_series Edv5_series
    AzureVmFamilyEdsv5Series
    Edsv5_series Edsv5_series
    AzureVmFamilyEasv5Series
    Easv5_series Easv5_series
    AzureVmFamilyEadsv5Series
    Eadsv5_series Eadsv5_series
    AzureVmFamilyEbsv5Series
    Ebsv5_series Ebsv5_series
    AzureVmFamilyEbdsv5Series
    Ebdsv5_series Ebdsv5_series
    Unknown
    Unknown Unknown - Azure VM Family
    BasicA0A4
    Basic_A0_A4 Basic_A0_A4
    StandardA0A7
    Standard_A0_A7 Standard_A0_A7
    StandardA8A11
    Standard_A8_A11 Standard_A8_A11
    Av2Series
    Av2_series Av2_series
    DSeries
    D_series D_series
    Dv2Series
    Dv2_series Dv2_series
    DSSeries
    DS_series DS_series
    DSv2Series
    DSv2_series DSv2_series
    FSeries
    F_series F_series
    FsSeries
    Fs_series Fs_series
    GSeries
    G_series G_series
    GSSeries
    GS_series GS_series
    HSeries
    H_series H_series
    LsSeries
    Ls_series Ls_series
    Dsv3Series
    Dsv3_series Dsv3_series
    Dv3Series
    Dv3_series Dv3_series
    Fsv2Series
    Fsv2_series Fsv2_series
    Ev3Series
    Ev3_series Ev3_series
    Esv3Series
    Esv3_series Esv3_series
    MSeries
    M_series M_series
    DCSeries
    DC_Series DC_Series
    Lsv2Series
    Lsv2_series Lsv2_series
    Ev4Series
    Ev4_series Ev4_series
    Esv4Series
    Esv4_series Esv4_series
    Edv4Series
    Edv4_series Edv4_series
    Edsv4Series
    Edsv4_series Edsv4_series
    Dv4Series
    Dv4_series Dv4_series
    Dsv4Series
    Dsv4_series Dsv4_series
    Ddv4Series
    Ddv4_series Ddv4_series
    Ddsv4Series
    Ddsv4_series Ddsv4_series
    Easv4Series
    Easv4_series Easv4_series
    Dasv4Series
    Dasv4_series Dasv4_series
    Mv2Series
    Mv2_series Mv2_series
    Eav4Series
    Eav4_series Eav4_series
    Dav4Series
    Dav4_series Dav4_series
    Msv2Series
    Msv2_series Msv2_series
    Mdsv2Series
    Mdsv2_series Mdsv2_series
    Dv5Series
    Dv5_series Dv5_series
    Dsv5Series
    Dsv5_series Dsv5_series
    Ddv5Series
    Ddv5_series Ddv5_series
    Ddsv5Series
    Ddsv5_series Ddsv5_series
    Dasv5Series
    Dasv5_series Dasv5_series
    Dadsv5Series
    Dadsv5_series Dadsv5_series
    Ev5Series
    Ev5_series Ev5_series
    Esv5Series
    Esv5_series Esv5_series
    Edv5Series
    Edv5_series Edv5_series
    Edsv5Series
    Edsv5_series Edsv5_series
    Easv5Series
    Easv5_series Easv5_series
    Eadsv5Series
    Eadsv5_series Eadsv5_series
    Ebsv5Series
    Ebsv5_series Ebsv5_series
    Ebdsv5Series
    Ebdsv5_series Ebdsv5_series
    Unknown
    Unknown Unknown - Azure VM Family
    BasicA0A4
    Basic_A0_A4 Basic_A0_A4
    StandardA0A7
    Standard_A0_A7 Standard_A0_A7
    StandardA8A11
    Standard_A8_A11 Standard_A8_A11
    Av2Series
    Av2_series Av2_series
    DSeries
    D_series D_series
    Dv2Series
    Dv2_series Dv2_series
    DSSeries
    DS_series DS_series
    DSv2Series
    DSv2_series DSv2_series
    FSeries
    F_series F_series
    FsSeries
    Fs_series Fs_series
    GSeries
    G_series G_series
    GSSeries
    GS_series GS_series
    HSeries
    H_series H_series
    LsSeries
    Ls_series Ls_series
    Dsv3Series
    Dsv3_series Dsv3_series
    Dv3Series
    Dv3_series Dv3_series
    Fsv2Series
    Fsv2_series Fsv2_series
    Ev3Series
    Ev3_series Ev3_series
    Esv3Series
    Esv3_series Esv3_series
    MSeries
    M_series M_series
    DCSeries
    DC_Series DC_Series
    Lsv2Series
    Lsv2_series Lsv2_series
    Ev4Series
    Ev4_series Ev4_series
    Esv4Series
    Esv4_series Esv4_series
    Edv4Series
    Edv4_series Edv4_series
    Edsv4Series
    Edsv4_series Edsv4_series
    Dv4Series
    Dv4_series Dv4_series
    Dsv4Series
    Dsv4_series Dsv4_series
    Ddv4Series
    Ddv4_series Ddv4_series
    Ddsv4Series
    Ddsv4_series Ddsv4_series
    Easv4Series
    Easv4_series Easv4_series
    Dasv4Series
    Dasv4_series Dasv4_series
    Mv2Series
    Mv2_series Mv2_series
    Eav4Series
    Eav4_series Eav4_series
    Dav4Series
    Dav4_series Dav4_series
    Msv2Series
    Msv2_series Msv2_series
    Mdsv2Series
    Mdsv2_series Mdsv2_series
    Dv5Series
    Dv5_series Dv5_series
    Dsv5Series
    Dsv5_series Dsv5_series
    Ddv5Series
    Ddv5_series Ddv5_series
    Ddsv5Series
    Ddsv5_series Ddsv5_series
    Dasv5Series
    Dasv5_series Dasv5_series
    Dadsv5Series
    Dadsv5_series Dadsv5_series
    Ev5Series
    Ev5_series Ev5_series
    Esv5Series
    Esv5_series Esv5_series
    Edv5Series
    Edv5_series Edv5_series
    Edsv5Series
    Edsv5_series Edsv5_series
    Easv5Series
    Easv5_series Easv5_series
    Eadsv5Series
    Eadsv5_series Eadsv5_series
    Ebsv5Series
    Ebsv5_series Ebsv5_series
    Ebdsv5Series
    Ebdsv5_series Ebdsv5_series
    UNKNOWN
    Unknown Unknown - Azure VM Family
    BASIC_A0_A4
    Basic_A0_A4 Basic_A0_A4
    STANDARD_A0_A7
    Standard_A0_A7 Standard_A0_A7
    STANDARD_A8_A11
    Standard_A8_A11 Standard_A8_A11
    AV2_SERIES
    Av2_series Av2_series
    D_SERIES
    D_series D_series
    DV2_SERIES
    Dv2_series Dv2_series
    DS_SERIES
    DS_series DS_series
    D_SV2_SERIES
    DSv2_series DSv2_series
    F_SERIES
    F_series F_series
    FS_SERIES
    Fs_series Fs_series
    G_SERIES
    G_series G_series
    GS_SERIES
    GS_series GS_series
    H_SERIES
    H_series H_series
    LS_SERIES
    Ls_series Ls_series
    DSV3_SERIES
    Dsv3_series Dsv3_series
    DV3_SERIES
    Dv3_series Dv3_series
    FSV2_SERIES
    Fsv2_series Fsv2_series
    EV3_SERIES
    Ev3_series Ev3_series
    ESV3_SERIES
    Esv3_series Esv3_series
    M_SERIES
    M_series M_series
    DC_SERIES
    DC_Series DC_Series
    LSV2_SERIES
    Lsv2_series Lsv2_series
    EV4_SERIES
    Ev4_series Ev4_series
    ESV4_SERIES
    Esv4_series Esv4_series
    EDV4_SERIES
    Edv4_series Edv4_series
    EDSV4_SERIES
    Edsv4_series Edsv4_series
    DV4_SERIES
    Dv4_series Dv4_series
    DSV4_SERIES
    Dsv4_series Dsv4_series
    DDV4_SERIES
    Ddv4_series Ddv4_series
    DDSV4_SERIES
    Ddsv4_series Ddsv4_series
    EASV4_SERIES
    Easv4_series Easv4_series
    DASV4_SERIES
    Dasv4_series Dasv4_series
    MV2_SERIES
    Mv2_series Mv2_series
    EAV4_SERIES
    Eav4_series Eav4_series
    DAV4_SERIES
    Dav4_series Dav4_series
    MSV2_SERIES
    Msv2_series Msv2_series
    MDSV2_SERIES
    Mdsv2_series Mdsv2_series
    DV5_SERIES
    Dv5_series Dv5_series
    DSV5_SERIES
    Dsv5_series Dsv5_series
    DDV5_SERIES
    Ddv5_series Ddv5_series
    DDSV5_SERIES
    Ddsv5_series Ddsv5_series
    DASV5_SERIES
    Dasv5_series Dasv5_series
    DADSV5_SERIES
    Dadsv5_series Dadsv5_series
    EV5_SERIES
    Ev5_series Ev5_series
    ESV5_SERIES
    Esv5_series Esv5_series
    EDV5_SERIES
    Edv5_series Edv5_series
    EDSV5_SERIES
    Edsv5_series Edsv5_series
    EASV5_SERIES
    Easv5_series Easv5_series
    EADSV5_SERIES
    Eadsv5_series Eadsv5_series
    EBSV5_SERIES
    Ebsv5_series Ebsv5_series
    EBDSV5_SERIES
    Ebdsv5_series Ebdsv5_series
    "Unknown"
    Unknown Unknown - Azure VM Family
    "Basic_A0_A4"
    Basic_A0_A4 Basic_A0_A4
    "Standard_A0_A7"
    Standard_A0_A7 Standard_A0_A7
    "Standard_A8_A11"
    Standard_A8_A11 Standard_A8_A11
    "Av2_series"
    Av2_series Av2_series
    "D_series"
    D_series D_series
    "Dv2_series"
    Dv2_series Dv2_series
    "DS_series"
    DS_series DS_series
    "DSv2_series"
    DSv2_series DSv2_series
    "F_series"
    F_series F_series
    "Fs_series"
    Fs_series Fs_series
    "G_series"
    G_series G_series
    "GS_series"
    GS_series GS_series
    "H_series"
    H_series H_series
    "Ls_series"
    Ls_series Ls_series
    "Dsv3_series"
    Dsv3_series Dsv3_series
    "Dv3_series"
    Dv3_series Dv3_series
    "Fsv2_series"
    Fsv2_series Fsv2_series
    "Ev3_series"
    Ev3_series Ev3_series
    "Esv3_series"
    Esv3_series Esv3_series
    "M_series"
    M_series M_series
    "DC_Series"
    DC_Series DC_Series
    "Lsv2_series"
    Lsv2_series Lsv2_series
    "Ev4_series"
    Ev4_series Ev4_series
    "Esv4_series"
    Esv4_series Esv4_series
    "Edv4_series"
    Edv4_series Edv4_series
    "Edsv4_series"
    Edsv4_series Edsv4_series
    "Dv4_series"
    Dv4_series Dv4_series
    "Dsv4_series"
    Dsv4_series Dsv4_series
    "Ddv4_series"
    Ddv4_series Ddv4_series
    "Ddsv4_series"
    Ddsv4_series Ddsv4_series
    "Easv4_series"
    Easv4_series Easv4_series
    "Dasv4_series"
    Dasv4_series Dasv4_series
    "Mv2_series"
    Mv2_series Mv2_series
    "Eav4_series"
    Eav4_series Eav4_series
    "Dav4_series"
    Dav4_series Dav4_series
    "Msv2_series"
    Msv2_series Msv2_series
    "Mdsv2_series"
    Mdsv2_series Mdsv2_series
    "Dv5_series"
    Dv5_series Dv5_series
    "Dsv5_series"
    Dsv5_series Dsv5_series
    "Ddv5_series"
    Ddv5_series Ddv5_series
    "Ddsv5_series"
    Ddsv5_series Ddsv5_series
    "Dasv5_series"
    Dasv5_series Dasv5_series
    "Dadsv5_series"
    Dadsv5_series Dadsv5_series
    "Ev5_series"
    Ev5_series Ev5_series
    "Esv5_series"
    Esv5_series Esv5_series
    "Edv5_series"
    Edv5_series Edv5_series
    "Edsv5_series"
    Edsv5_series Edsv5_series
    "Easv5_series"
    Easv5_series Easv5_series
    "Eadsv5_series"
    Eadsv5_series Eadsv5_series
    "Ebsv5_series"
    Ebsv5_series Ebsv5_series
    "Ebdsv5_series"
    Ebdsv5_series Ebdsv5_series

    ComputeTier, ComputeTierArgs

    Unknown
    Unknown Unknown - Compute Tier
    Automatic
    Automatic Automatic - Compute Tier
    Provisioned
    Provisioned Provisioned - Compute Tier
    Serverless
    Serverless Serverless - Compute Tier
    ComputeTierUnknown
    Unknown Unknown - Compute Tier
    ComputeTierAutomatic
    Automatic Automatic - Compute Tier
    ComputeTierProvisioned
    Provisioned Provisioned - Compute Tier
    ComputeTierServerless
    Serverless Serverless - Compute Tier
    Unknown
    Unknown Unknown - Compute Tier
    Automatic
    Automatic Automatic - Compute Tier
    Provisioned
    Provisioned Provisioned - Compute Tier
    Serverless
    Serverless Serverless - Compute Tier
    Unknown
    Unknown Unknown - Compute Tier
    Automatic
    Automatic Automatic - Compute Tier
    Provisioned
    Provisioned Provisioned - Compute Tier
    Serverless
    Serverless Serverless - Compute Tier
    UNKNOWN
    Unknown Unknown - Compute Tier
    AUTOMATIC
    Automatic Automatic - Compute Tier
    PROVISIONED
    Provisioned Provisioned - Compute Tier
    SERVERLESS
    Serverless Serverless - Compute Tier
    "Unknown"
    Unknown Unknown - Compute Tier
    "Automatic"
    Automatic Automatic - Compute Tier
    "Provisioned"
    Provisioned Provisioned - Compute Tier
    "Serverless"
    Serverless Serverless - Compute Tier

    EntityUptime, EntityUptimeArgs

    Entity Uptime.
    DaysPerMonth int
    Gets the days per month.
    HoursPerDay int
    Gets the hours per day.
    DaysPerMonth int
    Gets the days per month.
    HoursPerDay int
    Gets the hours per day.
    daysPerMonth Integer
    Gets the days per month.
    hoursPerDay Integer
    Gets the hours per day.
    daysPerMonth number
    Gets the days per month.
    hoursPerDay number
    Gets the hours per day.
    days_per_month int
    Gets the days per month.
    hours_per_day int
    Gets the hours per day.
    daysPerMonth Number
    Gets the days per month.
    hoursPerDay Number
    Gets the hours per day.

    EntityUptimeResponse, EntityUptimeResponseArgs

    Entity Uptime.
    DaysPerMonth int
    Gets the days per month.
    HoursPerDay int
    Gets the hours per day.
    DaysPerMonth int
    Gets the days per month.
    HoursPerDay int
    Gets the hours per day.
    daysPerMonth Integer
    Gets the days per month.
    hoursPerDay Integer
    Gets the hours per day.
    daysPerMonth number
    Gets the days per month.
    hoursPerDay number
    Gets the hours per day.
    days_per_month int
    Gets the days per month.
    hours_per_day int
    Gets the hours per day.
    daysPerMonth Number
    Gets the days per month.
    hoursPerDay Number
    Gets the hours per day.

    EnvironmentType, EnvironmentTypeArgs

    Production
    Production Production - Environment Type
    Unknown
    Unknown Unknown - Environment Type
    DevTest
    DevTest DevTest - Environment Type
    EnvironmentTypeProduction
    Production Production - Environment Type
    EnvironmentTypeUnknown
    Unknown Unknown - Environment Type
    EnvironmentTypeDevTest
    DevTest DevTest - Environment Type
    Production
    Production Production - Environment Type
    Unknown
    Unknown Unknown - Environment Type
    DevTest
    DevTest DevTest - Environment Type
    Production
    Production Production - Environment Type
    Unknown
    Unknown Unknown - Environment Type
    DevTest
    DevTest DevTest - Environment Type
    PRODUCTION
    Production Production - Environment Type
    UNKNOWN
    Unknown Unknown - Environment Type
    DEV_TEST
    DevTest DevTest - Environment Type
    "Production"
    Production Production - Environment Type
    "Unknown"
    Unknown Unknown - Environment Type
    "DevTest"
    DevTest DevTest - Environment Type

    GroupType, GroupTypeArgs

    Default
    Default
    Import
    Import
    GroupTypeDefault
    Default
    GroupTypeImport
    Import
    Default
    Default
    Import
    Import
    Default
    Default
    Import
    Import
    DEFAULT
    Default
    IMPORT_
    Import
    "Default"
    Default
    "Import"
    Import

    MultiSubnetIntent, MultiSubnetIntentArgs

    None
    None None - Multi Subnet Intent
    HighAvailability
    HighAvailability HighAvailability - Multi Subnet Intent
    DisasterRecovery
    DisasterRecovery DisasterRecovery - Multi Subnet Intent
    MultiSubnetIntentNone
    None None - Multi Subnet Intent
    MultiSubnetIntentHighAvailability
    HighAvailability HighAvailability - Multi Subnet Intent
    MultiSubnetIntentDisasterRecovery
    DisasterRecovery DisasterRecovery - Multi Subnet Intent
    None
    None None - Multi Subnet Intent
    HighAvailability
    HighAvailability HighAvailability - Multi Subnet Intent
    DisasterRecovery
    DisasterRecovery DisasterRecovery - Multi Subnet Intent
    None
    None None - Multi Subnet Intent
    HighAvailability
    HighAvailability HighAvailability - Multi Subnet Intent
    DisasterRecovery
    DisasterRecovery DisasterRecovery - Multi Subnet Intent
    NONE
    None None - Multi Subnet Intent
    HIGH_AVAILABILITY
    HighAvailability HighAvailability - Multi Subnet Intent
    DISASTER_RECOVERY
    DisasterRecovery DisasterRecovery - Multi Subnet Intent
    "None"
    None None - Multi Subnet Intent
    "HighAvailability"
    HighAvailability HighAvailability - Multi Subnet Intent
    "DisasterRecovery"
    DisasterRecovery DisasterRecovery - Multi Subnet Intent

    OptimizationLogic, OptimizationLogicArgs

    MinimizeCost
    MinimizeCost
    ModernizeToPaaS
    ModernizeToPaaS
    ModernizeToAzureSqlMi
    ModernizeToAzureSqlMi
    ModernizeToAzureSqlDb
    ModernizeToAzureSqlDb
    OptimizationLogicMinimizeCost
    MinimizeCost
    OptimizationLogicModernizeToPaaS
    ModernizeToPaaS
    OptimizationLogicModernizeToAzureSqlMi
    ModernizeToAzureSqlMi
    OptimizationLogicModernizeToAzureSqlDb
    ModernizeToAzureSqlDb
    MinimizeCost
    MinimizeCost
    ModernizeToPaaS
    ModernizeToPaaS
    ModernizeToAzureSqlMi
    ModernizeToAzureSqlMi
    ModernizeToAzureSqlDb
    ModernizeToAzureSqlDb
    MinimizeCost
    MinimizeCost
    ModernizeToPaaS
    ModernizeToPaaS
    ModernizeToAzureSqlMi
    ModernizeToAzureSqlMi
    ModernizeToAzureSqlDb
    ModernizeToAzureSqlDb
    MINIMIZE_COST
    MinimizeCost
    MODERNIZE_TO_PAA_S
    ModernizeToPaaS
    MODERNIZE_TO_AZURE_SQL_MI
    ModernizeToAzureSqlMi
    MODERNIZE_TO_AZURE_SQL_DB
    ModernizeToAzureSqlDb
    "MinimizeCost"
    MinimizeCost
    "ModernizeToPaaS"
    ModernizeToPaaS
    "ModernizeToAzureSqlMi"
    ModernizeToAzureSqlMi
    "ModernizeToAzureSqlDb"
    ModernizeToAzureSqlDb

    OsLicense, OsLicenseArgs

    Unknown
    Unknown Unknown Os License
    Yes
    Yes Yes Os License
    No
    No No Os License
    OsLicenseUnknown
    Unknown Unknown Os License
    OsLicenseYes
    Yes Yes Os License
    OsLicenseNo
    No No Os License
    Unknown
    Unknown Unknown Os License
    Yes
    Yes Yes Os License
    No
    No No Os License
    Unknown
    Unknown Unknown Os License
    Yes
    Yes Yes Os License
    No
    No No Os License
    UNKNOWN
    Unknown Unknown Os License
    YES
    Yes Yes Os License
    NO
    No No Os License
    "Unknown"
    Unknown Unknown Os License
    "Yes"
    Yes Yes Os License
    "No"
    No No Os License

    Percentile, PercentileArgs

    Percentile50
    Percentile50 Percentile 50.
    Percentile90
    Percentile90 Percentile 90.
    Percentile95
    Percentile95 Percentile 95.
    Percentile99
    Percentile99 Percentile 99.
    PercentileUnknown
    PercentileUnknown Percentile unknown.
    PercentilePercentile50
    Percentile50 Percentile 50.
    PercentilePercentile90
    Percentile90 Percentile 90.
    PercentilePercentile95
    Percentile95 Percentile 95.
    PercentilePercentile99
    Percentile99 Percentile 99.
    PercentilePercentileUnknown
    PercentileUnknown Percentile unknown.
    Percentile50
    Percentile50 Percentile 50.
    Percentile90
    Percentile90 Percentile 90.
    Percentile95
    Percentile95 Percentile 95.
    Percentile99
    Percentile99 Percentile 99.
    PercentileUnknown
    PercentileUnknown Percentile unknown.
    Percentile50
    Percentile50 Percentile 50.
    Percentile90
    Percentile90 Percentile 90.
    Percentile95
    Percentile95 Percentile 95.
    Percentile99
    Percentile99 Percentile 99.
    PercentileUnknown
    PercentileUnknown Percentile unknown.
    PERCENTILE50
    Percentile50 Percentile 50.
    PERCENTILE90
    Percentile90 Percentile 90.
    PERCENTILE95
    Percentile95 Percentile 95.
    PERCENTILE99
    Percentile99 Percentile 99.
    PERCENTILE_UNKNOWN
    PercentileUnknown Percentile unknown.
    "Percentile50"
    Percentile50 Percentile 50.
    "Percentile90"
    Percentile90 Percentile 90.
    "Percentile95"
    Percentile95 Percentile 95.
    "Percentile99"
    Percentile99 Percentile 99.
    "PercentileUnknown"
    PercentileUnknown Percentile unknown.

    ProvisioningState, ProvisioningStateArgs

    Succeeded
    Succeeded Resource has been created.
    Failed
    Failed Resource creation failed.
    Canceled
    Canceled Resource creation was canceled.
    Provisioning
    Provisioning Resource is being Provisioned.
    Updating
    Updating Resource is being Updated.
    Deleting
    Deleting Resource is being Deleted.
    Accepted
    Accepted Resource is being Accepted.
    ProvisioningStateSucceeded
    Succeeded Resource has been created.
    ProvisioningStateFailed
    Failed Resource creation failed.
    ProvisioningStateCanceled
    Canceled Resource creation was canceled.
    ProvisioningStateProvisioning
    Provisioning Resource is being Provisioned.
    ProvisioningStateUpdating
    Updating Resource is being Updated.
    ProvisioningStateDeleting
    Deleting Resource is being Deleted.
    ProvisioningStateAccepted
    Accepted Resource is being Accepted.
    Succeeded
    Succeeded Resource has been created.
    Failed
    Failed Resource creation failed.
    Canceled
    Canceled Resource creation was canceled.
    Provisioning
    Provisioning Resource is being Provisioned.
    Updating
    Updating Resource is being Updated.
    Deleting
    Deleting Resource is being Deleted.
    Accepted
    Accepted Resource is being Accepted.
    Succeeded
    Succeeded Resource has been created.
    Failed
    Failed Resource creation failed.
    Canceled
    Canceled Resource creation was canceled.
    Provisioning
    Provisioning Resource is being Provisioned.
    Updating
    Updating Resource is being Updated.
    Deleting
    Deleting Resource is being Deleted.
    Accepted
    Accepted Resource is being Accepted.
    SUCCEEDED
    Succeeded Resource has been created.
    FAILED
    Failed Resource creation failed.
    CANCELED
    Canceled Resource creation was canceled.
    PROVISIONING
    Provisioning Resource is being Provisioned.
    UPDATING
    Updating Resource is being Updated.
    DELETING
    Deleting Resource is being Deleted.
    ACCEPTED
    Accepted Resource is being Accepted.
    "Succeeded"
    Succeeded Resource has been created.
    "Failed"
    Failed Resource creation failed.
    "Canceled"
    Canceled Resource creation was canceled.
    "Provisioning"
    Provisioning Resource is being Provisioned.
    "Updating"
    Updating Resource is being Updated.
    "Deleting"
    Deleting Resource is being Deleted.
    "Accepted"
    Accepted Resource is being Accepted.

    SqlDbSettings, SqlDbSettingsArgs

    SQL database assessment settings.
    AzureSqlComputeTier string | Pulumi.AzureNative.Migrate.ComputeTier
    Gets or sets the azure SQL compute tier.
    AzureSqlDataBaseType string | Pulumi.AzureNative.Migrate.AzureSqlDataBaseType
    Gets or sets the azure PAAS SQL instance type.
    AzureSqlPurchaseModel string | Pulumi.AzureNative.Migrate.AzureSqlPurchaseModel
    Gets or sets the azure SQL purchase model.
    AzureSqlServiceTier string | Pulumi.AzureNative.Migrate.AzureSqlServiceTier
    Gets or sets the azure SQL service tier.
    AzureSqlComputeTier string | ComputeTier
    Gets or sets the azure SQL compute tier.
    AzureSqlDataBaseType string | AzureSqlDataBaseType
    Gets or sets the azure PAAS SQL instance type.
    AzureSqlPurchaseModel string | AzureSqlPurchaseModel
    Gets or sets the azure SQL purchase model.
    AzureSqlServiceTier string | AzureSqlServiceTier
    Gets or sets the azure SQL service tier.
    azureSqlComputeTier String | ComputeTier
    Gets or sets the azure SQL compute tier.
    azureSqlDataBaseType String | AzureSqlDataBaseType
    Gets or sets the azure PAAS SQL instance type.
    azureSqlPurchaseModel String | AzureSqlPurchaseModel
    Gets or sets the azure SQL purchase model.
    azureSqlServiceTier String | AzureSqlServiceTier
    Gets or sets the azure SQL service tier.
    azureSqlComputeTier string | ComputeTier
    Gets or sets the azure SQL compute tier.
    azureSqlDataBaseType string | AzureSqlDataBaseType
    Gets or sets the azure PAAS SQL instance type.
    azureSqlPurchaseModel string | AzureSqlPurchaseModel
    Gets or sets the azure SQL purchase model.
    azureSqlServiceTier string | AzureSqlServiceTier
    Gets or sets the azure SQL service tier.
    azure_sql_compute_tier str | ComputeTier
    Gets or sets the azure SQL compute tier.
    azure_sql_data_base_type str | AzureSqlDataBaseType
    Gets or sets the azure PAAS SQL instance type.
    azure_sql_purchase_model str | AzureSqlPurchaseModel
    Gets or sets the azure SQL purchase model.
    azure_sql_service_tier str | AzureSqlServiceTier
    Gets or sets the azure SQL service tier.
    azureSqlComputeTier String | "Unknown" | "Automatic" | "Provisioned" | "Serverless"
    Gets or sets the azure SQL compute tier.
    azureSqlDataBaseType String | "Unknown" | "Automatic" | "SingleDatabase" | "ElasticPool"
    Gets or sets the azure PAAS SQL instance type.
    azureSqlPurchaseModel String | "Unknown" | "VCore" | "DTU"
    Gets or sets the azure SQL purchase model.
    azureSqlServiceTier String | "Unknown" | "Automatic" | "GeneralPurpose" | "BusinessCritical" | "HyperScale"
    Gets or sets the azure SQL service tier.

    SqlDbSettingsResponse, SqlDbSettingsResponseArgs

    SQL database assessment settings.
    AzureSqlComputeTier string
    Gets or sets the azure SQL compute tier.
    AzureSqlDataBaseType string
    Gets or sets the azure PAAS SQL instance type.
    AzureSqlPurchaseModel string
    Gets or sets the azure SQL purchase model.
    AzureSqlServiceTier string
    Gets or sets the azure SQL service tier.
    AzureSqlComputeTier string
    Gets or sets the azure SQL compute tier.
    AzureSqlDataBaseType string
    Gets or sets the azure PAAS SQL instance type.
    AzureSqlPurchaseModel string
    Gets or sets the azure SQL purchase model.
    AzureSqlServiceTier string
    Gets or sets the azure SQL service tier.
    azureSqlComputeTier String
    Gets or sets the azure SQL compute tier.
    azureSqlDataBaseType String
    Gets or sets the azure PAAS SQL instance type.
    azureSqlPurchaseModel String
    Gets or sets the azure SQL purchase model.
    azureSqlServiceTier String
    Gets or sets the azure SQL service tier.
    azureSqlComputeTier string
    Gets or sets the azure SQL compute tier.
    azureSqlDataBaseType string
    Gets or sets the azure PAAS SQL instance type.
    azureSqlPurchaseModel string
    Gets or sets the azure SQL purchase model.
    azureSqlServiceTier string
    Gets or sets the azure SQL service tier.
    azure_sql_compute_tier str
    Gets or sets the azure SQL compute tier.
    azure_sql_data_base_type str
    Gets or sets the azure PAAS SQL instance type.
    azure_sql_purchase_model str
    Gets or sets the azure SQL purchase model.
    azure_sql_service_tier str
    Gets or sets the azure SQL service tier.
    azureSqlComputeTier String
    Gets or sets the azure SQL compute tier.
    azureSqlDataBaseType String
    Gets or sets the azure PAAS SQL instance type.
    azureSqlPurchaseModel String
    Gets or sets the azure SQL purchase model.
    azureSqlServiceTier String
    Gets or sets the azure SQL service tier.

    SqlMiSettings, SqlMiSettingsArgs

    SQL managed instance assessment settings.
    AzureSqlInstanceType string | Pulumi.AzureNative.Migrate.AzureSqlInstanceType
    Gets or sets the azure PAAS SQL instance type.
    AzureSqlServiceTier string | Pulumi.AzureNative.Migrate.AzureSqlServiceTier
    Gets or sets the azure SQL service tier.
    AzureSqlInstanceType string | AzureSqlInstanceType
    Gets or sets the azure PAAS SQL instance type.
    AzureSqlServiceTier string | AzureSqlServiceTier
    Gets or sets the azure SQL service tier.
    azureSqlInstanceType String | AzureSqlInstanceType
    Gets or sets the azure PAAS SQL instance type.
    azureSqlServiceTier String | AzureSqlServiceTier
    Gets or sets the azure SQL service tier.
    azureSqlInstanceType string | AzureSqlInstanceType
    Gets or sets the azure PAAS SQL instance type.
    azureSqlServiceTier string | AzureSqlServiceTier
    Gets or sets the azure SQL service tier.
    azure_sql_instance_type str | AzureSqlInstanceType
    Gets or sets the azure PAAS SQL instance type.
    azure_sql_service_tier str | AzureSqlServiceTier
    Gets or sets the azure SQL service tier.

    SqlMiSettingsResponse, SqlMiSettingsResponseArgs

    SQL managed instance assessment settings.
    AzureSqlInstanceType string
    Gets or sets the azure PAAS SQL instance type.
    AzureSqlServiceTier string
    Gets or sets the azure SQL service tier.
    AzureSqlInstanceType string
    Gets or sets the azure PAAS SQL instance type.
    AzureSqlServiceTier string
    Gets or sets the azure SQL service tier.
    azureSqlInstanceType String
    Gets or sets the azure PAAS SQL instance type.
    azureSqlServiceTier String
    Gets or sets the azure SQL service tier.
    azureSqlInstanceType string
    Gets or sets the azure PAAS SQL instance type.
    azureSqlServiceTier string
    Gets or sets the azure SQL service tier.
    azure_sql_instance_type str
    Gets or sets the azure PAAS SQL instance type.
    azure_sql_service_tier str
    Gets or sets the azure SQL service tier.
    azureSqlInstanceType String
    Gets or sets the azure PAAS SQL instance type.
    azureSqlServiceTier String
    Gets or sets the azure SQL service tier.

    SqlServerLicense, SqlServerLicenseArgs

    Unknown
    Unknown Unknown - Sql Server License
    Yes
    Yes Has Sql Server License
    No
    No No Sql Server License
    SqlServerLicenseUnknown
    Unknown Unknown - Sql Server License
    SqlServerLicenseYes
    Yes Has Sql Server License
    SqlServerLicenseNo
    No No Sql Server License
    Unknown
    Unknown Unknown - Sql Server License
    Yes
    Yes Has Sql Server License
    No
    No No Sql Server License
    Unknown
    Unknown Unknown - Sql Server License
    Yes
    Yes Has Sql Server License
    No
    No No Sql Server License
    UNKNOWN
    Unknown Unknown - Sql Server License
    YES
    Yes Has Sql Server License
    NO
    No No Sql Server License
    "Unknown"
    Unknown Unknown - Sql Server License
    "Yes"
    Yes Has Sql Server License
    "No"
    No No Sql Server License

    SqlVmSettings, SqlVmSettingsArgs

    SQL VM assessment settings.
    InstanceSeries List<Union<string, Pulumi.AzureNative.Migrate.AzureVmFamily>>
    Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
    InstanceSeries []string
    Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
    instanceSeries List<Either<String,AzureVmFamily>>
    Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
    instanceSeries (string | AzureVmFamily)[]
    Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
    instance_series Sequence[Union[str, AzureVmFamily]]
    Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
    instanceSeries List<String | "Unknown" | "Basic_A0_A4" | "Standard_A0_A7" | "Standard_A8_A11" | "Av2_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 (calling instance series to keep it consistent with other targets).

    SqlVmSettingsResponse, SqlVmSettingsResponseArgs

    SQL VM assessment settings.
    InstanceSeries List<string>
    Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
    InstanceSeries []string
    Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
    instanceSeries List<String>
    Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
    instanceSeries string[]
    Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
    instance_series Sequence[str]
    Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
    instanceSeries List<String>
    Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).

    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.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    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.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    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.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    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.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    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_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    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.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    TimeRange, TimeRangeArgs

    Day
    Day Daily.
    Week
    Week Weekly.
    Month
    Month Monthly.
    Custom
    Custom Custom Time Range.
    TimeRangeDay
    Day Daily.
    TimeRangeWeek
    Week Weekly.
    TimeRangeMonth
    Month Monthly.
    TimeRangeCustom
    Custom Custom Time Range.
    Day
    Day Daily.
    Week
    Week Weekly.
    Month
    Month Monthly.
    Custom
    Custom Custom Time Range.
    Day
    Day Daily.
    Week
    Week Weekly.
    Month
    Month Monthly.
    Custom
    Custom Custom Time Range.
    DAY
    Day Daily.
    WEEK
    Week Weekly.
    MONTH
    Month Monthly.
    CUSTOM
    Custom Custom Time Range.
    "Day"
    Day Daily.
    "Week"
    Week Weekly.
    "Month"
    Month Monthly.
    "Custom"
    Custom Custom Time Range.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:migrate:SqlAssessmentV2Operation test_swagger_1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/groups/{groupName}/sqlAssessments/{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
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate