SQL Assessment REST resource. Azure REST API version: 2023-03-15.
Other available API versions: 2023-04-01-preview, 2023-05-01-preview, 2023-09-09-preview.
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/v2"
"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)
.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)
.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 =
{
{ "azureSqlComputeTier", "string" },
{ "azureSqlDataBaseType", "string" },
{ "azureSqlPurchaseModel", "string" },
{ "azureSqlServiceTier", "string" },
},
AzureSqlManagedInstanceSettings =
{
{ "azureSqlInstanceType", "string" },
{ "azureSqlServiceTier", "string" },
},
AzureSqlVmSettings =
{
{ "instanceSeries", new[]
{
"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",
});
example, err := migrate.NewSqlAssessmentV2Operation(ctx, "sqlAssessmentV2OperationResource", &migrate.SqlAssessmentV2OperationArgs{
ProjectName: "string",
GroupName: "string",
ResourceGroupName: "string",
AssessmentType: "string",
IsInternetAccessAvailable: false,
AzureOfferCodeForVm: "string",
AzureSecurityOfferingType: "string",
AzureSqlDatabaseSettings: map[string]interface{}{
"azureSqlComputeTier": "string",
"azureSqlDataBaseType": "string",
"azureSqlPurchaseModel": "string",
"azureSqlServiceTier": "string",
},
AzureSqlManagedInstanceSettings: map[string]interface{}{
"azureSqlInstanceType": "string",
"azureSqlServiceTier": "string",
},
AzureSqlVmSettings: map[string]interface{}{
"instanceSeries": []string{
"string",
},
},
ConfidenceRatingInPercentage: 0,
Currency: "string",
DisasterRecoveryLocation: "string",
DiscountPercentage: 0,
EaSubscriptionId: "string",
EnableHadrAssessment: false,
EnvironmentType: "string",
EntityUptime: map[string]interface{}{
"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",
})
var sqlAssessmentV2OperationResource = new SqlAssessmentV2Operation("sqlAssessmentV2OperationResource", SqlAssessmentV2OperationArgs.builder()
.projectName("string")
.groupName("string")
.resourceGroupName("string")
.assessmentType("string")
.isInternetAccessAvailable(false)
.azureOfferCodeForVm("string")
.azureSecurityOfferingType("string")
.azureSqlDatabaseSettings(Map.ofEntries(
Map.entry("azureSqlComputeTier", "string"),
Map.entry("azureSqlDataBaseType", "string"),
Map.entry("azureSqlPurchaseModel", "string"),
Map.entry("azureSqlServiceTier", "string")
))
.azureSqlManagedInstanceSettings(Map.ofEntries(
Map.entry("azureSqlInstanceType", "string"),
Map.entry("azureSqlServiceTier", "string")
))
.azureSqlVmSettings(Map.of("instanceSeries", List.of("string")))
.confidenceRatingInPercentage(0)
.currency("string")
.disasterRecoveryLocation("string")
.discountPercentage(0)
.eaSubscriptionId("string")
.enableHadrAssessment(false)
.environmentType("string")
.entityUptime(Map.ofEntries(
Map.entry("daysPerMonth", 0),
Map.entry("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")
.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={
azureSqlComputeTier: string,
azureSqlDataBaseType: string,
azureSqlPurchaseModel: string,
azureSqlServiceTier: string,
},
azure_sql_managed_instance_settings={
azureSqlInstanceType: string,
azureSqlServiceTier: string,
},
azure_sql_vm_settings={
instanceSeries: [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={
daysPerMonth: 0,
hoursPerDay: 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:
- Group
Name string - Group ARM name
- Project
Name string - Assessment Project Name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Assessment
Name string - SQL Assessment arm name.
- Assessment
Type string | Pulumi.Azure Native. Migrate. Assessment Type - Assessment type of the assessment.
- Async
Commit string | Pulumi.Mode Intent Azure Native. Migrate. Async Commit Mode Intent - Gets or sets user preference indicating intent of async commit mode.
- Azure
Location string - Azure Location or Azure region where to which the machines will be migrated.
- Azure
Offer string | Pulumi.Code Azure Native. Migrate. Azure Offer Code - Azure Offer Code.
- Azure
Offer string | Pulumi.Code For Vm Azure Native. Migrate. Azure Offer Code - Gets or sets Azure Offer Code for VM.
- Azure
Security string | Pulumi.Offering Type Azure Native. Migrate. Azure Security Offering Type - Gets or sets a value indicating azure security offering type.
- Azure
Sql Pulumi.Database Settings Azure Native. Migrate. Inputs. Sql Db Settings - Gets or sets user configurable SQL database settings.
- Azure
Sql Pulumi.Managed Instance Settings Azure Native. Migrate. Inputs. Sql Mi Settings - Gets or sets user configurable SQL managed instance settings.
- Azure
Sql Pulumi.Vm Settings Azure Native. Migrate. Inputs. Sql Vm Settings - Gets or sets user configurable SQL VM settings.
- Confidence
Rating doubleIn Percentage - Confidence Rating in Percentage.
- Currency
string | Pulumi.
Azure Native. Migrate. Azure Currency - Currency in which prices should be reported.
- Disaster
Recovery string | Pulumi.Location Azure Native. Migrate. Azure Location - Gets or sets the Azure Location or Azure region where to which the machines will be migrated.
- Discount
Percentage double - Custom discount percentage.
- Ea
Subscription stringId - Gets or sets the Enterprise agreement subscription id.
- Enable
Hadr boolAssessment - Gets or sets a value indicating whether HADR assessments needs to be created.
- Entity
Uptime Pulumi.Azure Native. Migrate. Inputs. Entity Uptime - Gets or sets the duration for which the entity (SQL, VMs) are up in the on-premises environment.
- Environment
Type string | Pulumi.Azure Native. Migrate. Environment Type - Gets or sets user configurable setting to display the environment type.
- Group
Type string | Pulumi.Azure Native. Migrate. Group Type - Gets the group type for the assessment.
- Is
Internet boolAccess Available - Gets or sets a value indicating whether internet access is available.
- Multi
Subnet string | Pulumi.Intent Azure Native. Migrate. Multi Subnet Intent - Gets or sets user preference indicating intent of multi-subnet configuration.
- Optimization
Logic string | Pulumi.Azure Native. Migrate. Optimization Logic - Gets or sets SQL optimization logic.
- Os
License string | Pulumi.Azure Native. Migrate. Os License - Gets or sets user configurable setting to display the azure hybrid use benefit.
- Percentile
string | Pulumi.
Azure Native. Migrate. Percentile - Percentile of the utilization data values to be considered while assessing machines.
- Perf
Data stringEnd Time - Gets or sets the end time to consider performance data for assessment.
- Perf
Data stringStart Time - Gets or sets the start time to consider performance data for assessment.
- Provisioning
State string | Pulumi.Azure Native. Migrate. Provisioning State - The status of the last operation.
- Reserved
Instance string | Pulumi.Azure Native. Migrate. Azure Reserved Instance - Reserved instance.
- Reserved
Instance string | Pulumi.For Vm Azure Native. Migrate. Azure Reserved Instance - Gets or sets azure reserved instance for VM.
- Scaling
Factor double - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- Sizing
Criterion string | Pulumi.Azure Native. Migrate. Assessment Sizing Criterion - Assessment sizing criterion.
- Sql
Server string | Pulumi.License Azure Native. Migrate. Sql Server License - SQL server license.
- Time
Range string | Pulumi.Azure Native. Migrate. Time Range - Time Range for which the historic utilization data should be considered for assessment.
- Group
Name string - Group ARM name
- Project
Name string - Assessment Project Name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Assessment
Name string - SQL Assessment arm name.
- Assessment
Type string | AssessmentType - Assessment type of the assessment.
- Async
Commit string | AsyncMode Intent Commit Mode Intent - Gets or sets user preference indicating intent of async commit mode.
- Azure
Location string - Azure Location or Azure region where to which the machines will be migrated.
- Azure
Offer string | AzureCode Offer Code - Azure Offer Code.
- Azure
Offer string | AzureCode For Vm Offer Code - Gets or sets Azure Offer Code for VM.
- Azure
Security string | AzureOffering Type Security Offering Type - Gets or sets a value indicating azure security offering type.
- Azure
Sql SqlDatabase Settings Db Settings Args - Gets or sets user configurable SQL database settings.
- Azure
Sql SqlManaged Instance Settings Mi Settings Args - Gets or sets user configurable SQL managed instance settings.
- Azure
Sql SqlVm Settings Vm Settings Args - Gets or sets user configurable SQL VM settings.
- Confidence
Rating float64In Percentage - Confidence Rating in Percentage.
- Currency
string | Azure
Currency - Currency in which prices should be reported.
- Disaster
Recovery string | AzureLocation Location - Gets or sets the Azure Location or Azure region where to which the machines will be migrated.
- Discount
Percentage float64 - Custom discount percentage.
- Ea
Subscription stringId - Gets or sets the Enterprise agreement subscription id.
- Enable
Hadr boolAssessment - Gets or sets a value indicating whether HADR assessments needs to be created.
- Entity
Uptime EntityUptime Args - Gets or sets the duration for which the entity (SQL, VMs) are up in the on-premises environment.
- Environment
Type string | EnvironmentType - Gets or sets user configurable setting to display the environment type.
- Group
Type string | GroupType - Gets the group type for the assessment.
- Is
Internet boolAccess Available - Gets or sets a value indicating whether internet access is available.
- Multi
Subnet string | MultiIntent Subnet Intent - Gets or sets user preference indicating intent of multi-subnet configuration.
- Optimization
Logic string | OptimizationLogic - Gets or sets SQL optimization logic.
- Os
License 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.
- Perf
Data stringEnd Time - Gets or sets the end time to consider performance data for assessment.
- Perf
Data stringStart Time - Gets or sets the start time to consider performance data for assessment.
- Provisioning
State string | ProvisioningState - The status of the last operation.
- Reserved
Instance string | AzureReserved Instance - Reserved instance.
- Reserved
Instance string | AzureFor Vm Reserved Instance - Gets or sets azure reserved instance for VM.
- Scaling
Factor float64 - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- Sizing
Criterion string | AssessmentSizing Criterion - Assessment sizing criterion.
- Sql
Server string | SqlLicense Server License - SQL server license.
- Time
Range string | TimeRange - Time Range for which the historic utilization data should be considered for assessment.
- group
Name String - Group ARM name
- project
Name String - Assessment Project Name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- assessment
Name String - SQL Assessment arm name.
- assessment
Type String | AssessmentType - Assessment type of the assessment.
- async
Commit String | AsyncMode Intent Commit Mode Intent - Gets or sets user preference indicating intent of async commit mode.
- azure
Location String - Azure Location or Azure region where to which the machines will be migrated.
- azure
Offer String | AzureCode Offer Code - Azure Offer Code.
- azure
Offer String | AzureCode For Vm Offer Code - Gets or sets Azure Offer Code for VM.
- azure
Security String | AzureOffering Type Security Offering Type - Gets or sets a value indicating azure security offering type.
- azure
Sql SqlDatabase Settings Db Settings - Gets or sets user configurable SQL database settings.
- azure
Sql SqlManaged Instance Settings Mi Settings - Gets or sets user configurable SQL managed instance settings.
- azure
Sql SqlVm Settings Vm Settings - Gets or sets user configurable SQL VM settings.
- confidence
Rating DoubleIn Percentage - Confidence Rating in Percentage.
- currency
String | Azure
Currency - Currency in which prices should be reported.
- disaster
Recovery String | AzureLocation Location - Gets or sets the Azure Location or Azure region where to which the machines will be migrated.
- discount
Percentage Double - Custom discount percentage.
- ea
Subscription StringId - Gets or sets the Enterprise agreement subscription id.
- enable
Hadr BooleanAssessment - Gets or sets a value indicating whether HADR assessments needs to be created.
- entity
Uptime EntityUptime - Gets or sets the duration for which the entity (SQL, VMs) are up in the on-premises environment.
- environment
Type String | EnvironmentType - Gets or sets user configurable setting to display the environment type.
- group
Type String | GroupType - Gets the group type for the assessment.
- is
Internet BooleanAccess Available - Gets or sets a value indicating whether internet access is available.
- multi
Subnet String | MultiIntent Subnet Intent - Gets or sets user preference indicating intent of multi-subnet configuration.
- optimization
Logic String | OptimizationLogic - Gets or sets SQL optimization logic.
- os
License 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.
- perf
Data StringEnd Time - Gets or sets the end time to consider performance data for assessment.
- perf
Data StringStart Time - Gets or sets the start time to consider performance data for assessment.
- provisioning
State String | ProvisioningState - The status of the last operation.
- reserved
Instance String | AzureReserved Instance - Reserved instance.
- reserved
Instance String | AzureFor Vm Reserved Instance - Gets or sets azure reserved instance for VM.
- scaling
Factor Double - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing
Criterion String | AssessmentSizing Criterion - Assessment sizing criterion.
- sql
Server String | SqlLicense Server License - SQL server license.
- time
Range String | TimeRange - Time Range for which the historic utilization data should be considered for assessment.
- group
Name string - Group ARM name
- project
Name string - Assessment Project Name
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- assessment
Name string - SQL Assessment arm name.
- assessment
Type string | AssessmentType - Assessment type of the assessment.
- async
Commit string | AsyncMode Intent Commit Mode Intent - Gets or sets user preference indicating intent of async commit mode.
- azure
Location string - Azure Location or Azure region where to which the machines will be migrated.
- azure
Offer string | AzureCode Offer Code - Azure Offer Code.
- azure
Offer string | AzureCode For Vm Offer Code - Gets or sets Azure Offer Code for VM.
- azure
Security string | AzureOffering Type Security Offering Type - Gets or sets a value indicating azure security offering type.
- azure
Sql SqlDatabase Settings Db Settings - Gets or sets user configurable SQL database settings.
- azure
Sql SqlManaged Instance Settings Mi Settings - Gets or sets user configurable SQL managed instance settings.
- azure
Sql SqlVm Settings Vm Settings - Gets or sets user configurable SQL VM settings.
- confidence
Rating numberIn Percentage - Confidence Rating in Percentage.
- currency
string | Azure
Currency - Currency in which prices should be reported.
- disaster
Recovery string | AzureLocation Location - Gets or sets the Azure Location or Azure region where to which the machines will be migrated.
- discount
Percentage number - Custom discount percentage.
- ea
Subscription stringId - Gets or sets the Enterprise agreement subscription id.
- enable
Hadr booleanAssessment - Gets or sets a value indicating whether HADR assessments needs to be created.
- entity
Uptime EntityUptime - Gets or sets the duration for which the entity (SQL, VMs) are up in the on-premises environment.
- environment
Type string | EnvironmentType - Gets or sets user configurable setting to display the environment type.
- group
Type string | GroupType - Gets the group type for the assessment.
- is
Internet booleanAccess Available - Gets or sets a value indicating whether internet access is available.
- multi
Subnet string | MultiIntent Subnet Intent - Gets or sets user preference indicating intent of multi-subnet configuration.
- optimization
Logic string | OptimizationLogic - Gets or sets SQL optimization logic.
- os
License 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.
- perf
Data stringEnd Time - Gets or sets the end time to consider performance data for assessment.
- perf
Data stringStart Time - Gets or sets the start time to consider performance data for assessment.
- provisioning
State string | ProvisioningState - The status of the last operation.
- reserved
Instance string | AzureReserved Instance - Reserved instance.
- reserved
Instance string | AzureFor Vm Reserved Instance - Gets or sets azure reserved instance for VM.
- scaling
Factor number - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing
Criterion string | AssessmentSizing Criterion - Assessment sizing criterion.
- sql
Server string | SqlLicense Server License - SQL server license.
- time
Range 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_ strname - 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_ str | Asyncmode_ intent Commit Mode Intent - 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_ str | Azurecode Offer Code - Azure Offer Code.
- azure_
offer_ str | Azurecode_ for_ vm Offer Code - Gets or sets Azure Offer Code for VM.
- azure_
security_ str | Azureoffering_ type Security Offering Type - Gets or sets a value indicating azure security offering type.
- azure_
sql_ Sqldatabase_ settings Db Settings Args - Gets or sets user configurable SQL database settings.
- azure_
sql_ Sqlmanaged_ instance_ settings Mi Settings Args - Gets or sets user configurable SQL managed instance settings.
- azure_
sql_ Sqlvm_ settings Vm Settings Args - Gets or sets user configurable SQL VM settings.
- confidence_
rating_ floatin_ percentage - Confidence Rating in Percentage.
- currency
str | Azure
Currency - Currency in which prices should be reported.
- disaster_
recovery_ str | Azurelocation Location - 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_ strid - Gets or sets the Enterprise agreement subscription id.
- enable_
hadr_ boolassessment - Gets or sets a value indicating whether HADR assessments needs to be created.
- entity_
uptime EntityUptime Args - 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_ boolaccess_ available - Gets or sets a value indicating whether internet access is available.
- multi_
subnet_ str | Multiintent Subnet Intent - 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_ strend_ time - Gets or sets the end time to consider performance data for assessment.
- perf_
data_ strstart_ time - Gets or sets the start time to consider performance data for assessment.
- provisioning_
state str | ProvisioningState - The status of the last operation.
- reserved_
instance str | AzureReserved Instance - Reserved instance.
- reserved_
instance_ str | Azurefor_ vm Reserved Instance - 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 | AssessmentSizing Criterion - Assessment sizing criterion.
- sql_
server_ str | Sqllicense Server License - SQL server license.
- time_
range str | TimeRange - Time Range for which the historic utilization data should be considered for assessment.
- group
Name String - Group ARM name
- project
Name String - Assessment Project Name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- assessment
Name String - SQL Assessment arm name.
- assessment
Type String | "Unknown" | "MachineAssessment" | "Avs Assessment" | "Sql Assessment" | "Web App Assessment" - Assessment type of the assessment.
- async
Commit String | "None" | "HighMode Intent Availability" | "Disaster Recovery" - Gets or sets user preference indicating intent of async commit mode.
- azure
Location String - Azure Location or Azure region where to which the machines will be migrated.
- azure
Offer String | "Unknown" | "MSAZR0003P" | "MSAZR0044P" | "MSAZR0059P" | "MSAZR0060P" | "MSAZR0062P" | "MSAZR0063P" | "MSAZR0064P" | "MSAZR0029P" | "MSAZR0022P" | "MSAZR0023P" | "MSAZR0148P" | "MSAZR0025P" | "MSAZR0036P" | "MSAZR0120P" | "MSAZR0121P" | "MSAZR0122P" | "MSAZR0123P" | "MSAZR0124P" | "MSAZR0125P" | "MSAZR0126P" | "MSAZR0127P" | "MSAZR0128P" | "MSAZR0129P" | "MSAZR0130P" | "MSAZR0111P" | "MSAZR0144P" | "MSAZR0149P" | "MSMCAZR0044P" | "MSMCAZR0059P" | "MSMCAZR0060P" | "MSMCAZR0063P" | "MSMCAZR0120P" | "MSMCAZR0121P" | "MSMCAZR0125P" | "MSMCAZR0128P" | "MSAZRDE0003P" | "MSAZRDE0044P" | "MSAZRUSGOV0003P" | "EA" | "MSAZR0243P" | "SavingsCode Plan1Year" | "Savings Plan3Year" - Azure Offer Code.
- azure
Offer String | "Unknown" | "MSAZR0003P" | "MSAZR0044P" | "MSAZR0059P" | "MSAZR0060P" | "MSAZR0062P" | "MSAZR0063P" | "MSAZR0064P" | "MSAZR0029P" | "MSAZR0022P" | "MSAZR0023P" | "MSAZR0148P" | "MSAZR0025P" | "MSAZR0036P" | "MSAZR0120P" | "MSAZR0121P" | "MSAZR0122P" | "MSAZR0123P" | "MSAZR0124P" | "MSAZR0125P" | "MSAZR0126P" | "MSAZR0127P" | "MSAZR0128P" | "MSAZR0129P" | "MSAZR0130P" | "MSAZR0111P" | "MSAZR0144P" | "MSAZR0149P" | "MSMCAZR0044P" | "MSMCAZR0059P" | "MSMCAZR0060P" | "MSMCAZR0063P" | "MSMCAZR0120P" | "MSMCAZR0121P" | "MSMCAZR0125P" | "MSMCAZR0128P" | "MSAZRDE0003P" | "MSAZRDE0044P" | "MSAZRUSGOV0003P" | "EA" | "MSAZR0243P" | "SavingsCode For Vm Plan1Year" | "Savings Plan3Year" - Gets or sets Azure Offer Code for VM.
- azure
Security String | "NO" | "MDC"Offering Type - Gets or sets a value indicating azure security offering type.
- azure
Sql Property MapDatabase Settings - Gets or sets user configurable SQL database settings.
- azure
Sql Property MapManaged Instance Settings - Gets or sets user configurable SQL managed instance settings.
- azure
Sql Property MapVm Settings - Gets or sets user configurable SQL VM settings.
- confidence
Rating NumberIn Percentage - 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.
- disaster
Recovery String | "Unknown" | "EastLocation Asia" | "Southeast Asia" | "Australia East" | "Australia Southeast" | "Brazil South" | "Canada Central" | "Canada East" | "West Europe" | "North Europe" | "Central India" | "South India" | "West India" | "Japan East" | "Japan West" | "Korea Central" | "Korea South" | "Uk West" | "Uk South" | "North Central Us" | "East Us" | "West Us2" | "South Central Us" | "Central Us" | "East Us2" | "West Us" | "West Central Us" | "Germany Central" | "Germany Northeast" | "China North" | "China East" | "USGov Arizona" | "USGov Texas" | "USGov Iowa" | "USGov Virginia" | "USDo DCentral" | "USDo DEast" | "France Central" | "Australia Central" | "South Africa North" | "France South" | "Australia Central2" | "South Africa West" | "Germany North" | "Germany West Central" | "Norway East" | "Norway West" | "China East2" | "China North2" | "Switzerland North" | "Switzerland West" | "UAENorth" | "UAECentral" | "Us Nat East" | "Us Nat West" | "Us Sec East" | "Us Sec Central" | "Us Sec West" | "Sweden Central" | "Qatar Central" - Gets or sets the Azure Location or Azure region where to which the machines will be migrated.
- discount
Percentage Number - Custom discount percentage.
- ea
Subscription StringId - Gets or sets the Enterprise agreement subscription id.
- enable
Hadr BooleanAssessment - Gets or sets a value indicating whether HADR assessments needs to be created.
- entity
Uptime Property Map - Gets or sets the duration for which the entity (SQL, VMs) are up in the on-premises environment.
- environment
Type String | "Production" | "Test" - Gets or sets user configurable setting to display the environment type.
- group
Type String | "Default" | "Import" - Gets the group type for the assessment.
- is
Internet BooleanAccess Available - Gets or sets a value indicating whether internet access is available.
- multi
Subnet String | "None" | "HighIntent Availability" | "Disaster Recovery" - Gets or sets user preference indicating intent of multi-subnet configuration.
- optimization
Logic String | "MinimizeCost" | "Modernize To Paa S" | "Modernize To Azure Sql Mi" | "Modernize To Azure Sql Db" - Gets or sets SQL optimization logic.
- os
License String | "Unknown" | "Yes" | "No" - Gets or sets user configurable setting to display the azure hybrid use benefit.
- percentile String | "Percentile50" | "Percentile90" | "Percentile95" | "Percentile99"
- Percentile of the utilization data values to be considered while assessing machines.
- perf
Data StringEnd Time - Gets or sets the end time to consider performance data for assessment.
- perf
Data StringStart Time - Gets or sets the start time to consider performance data for assessment.
- provisioning
State String | "Succeeded" | "Failed" | "Canceled" | "Provisioning" | "Updating" | "Deleting" | "Accepted" - The status of the last operation.
- reserved
Instance String | "None" | "RI1Year" | "RI3Year" - Reserved instance.
- reserved
Instance String | "None" | "RI1Year" | "RI3Year"For Vm - Gets or sets azure reserved instance for VM.
- scaling
Factor Number - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing
Criterion String | "PerformanceBased" | "As On Premises" - Assessment sizing criterion.
- sql
Server String | "Unknown" | "Yes" | "No"License - SQL server license.
- time
Range 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:
- Created
Timestamp 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
- Prices
Timestamp string - Last time when rates were queried.
- Schema
Version 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.
- System
Data Pulumi.Azure Native. Migrate. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Updated
Timestamp string - Date and Time when assessment was last updated.
- Created
Timestamp 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
- Prices
Timestamp string - Last time when rates were queried.
- Schema
Version 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.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Updated
Timestamp string - Date and Time when assessment was last updated.
- created
Timestamp 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
- prices
Timestamp String - Last time when rates were queried.
- schema
Version 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.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- updated
Timestamp String - Date and Time when assessment was last updated.
- created
Timestamp 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
- prices
Timestamp string - Last time when rates were queried.
- schema
Version 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.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- updated
Timestamp string - Date and Time when assessment was last updated.
- 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 SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- updated_
timestamp str - Date and Time when assessment was last updated.
- created
Timestamp 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
- prices
Timestamp String - Last time when rates were queried.
- schema
Version 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.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- updated
Timestamp String - Date and Time when assessment was last updated.
Supporting Types
AssessmentSizingCriterion, AssessmentSizingCriterionArgs
- Performance
Based PerformanceBasedPerformance Data based Sizing.- As
On Premises AsOnPremisesAs On Premises or Static Data based Sizing.
- Assessment
Sizing Criterion Performance Based PerformanceBasedPerformance Data based Sizing.- Assessment
Sizing Criterion As On Premises AsOnPremisesAs On Premises or Static Data based Sizing.
- Performance
Based PerformanceBasedPerformance Data based Sizing.- As
On Premises AsOnPremisesAs On Premises or Static Data based Sizing.
- Performance
Based PerformanceBasedPerformance Data based Sizing.- As
On Premises AsOnPremisesAs On Premises or Static Data based Sizing.
- PERFORMANCE_BASED
PerformanceBasedPerformance Data based Sizing.- AS_ON_PREMISES
AsOnPremisesAs On Premises or Static Data based Sizing.
- "Performance
Based" PerformanceBasedPerformance Data based Sizing.- "As
On Premises" AsOnPremisesAs On Premises or Static Data based Sizing.
AssessmentType, AssessmentTypeArgs
- Unknown
Unknown- Machine
Assessment MachineAssessment- Avs
Assessment AvsAssessment- Sql
Assessment SqlAssessment- Web
App Assessment WebAppAssessment
- Assessment
Type Unknown Unknown- Assessment
Type Machine Assessment MachineAssessment- Assessment
Type Avs Assessment AvsAssessment- Assessment
Type Sql Assessment SqlAssessment- Assessment
Type Web App Assessment WebAppAssessment
- Unknown
Unknown- Machine
Assessment MachineAssessment- Avs
Assessment AvsAssessment- Sql
Assessment SqlAssessment- Web
App Assessment WebAppAssessment
- Unknown
Unknown- Machine
Assessment MachineAssessment- Avs
Assessment AvsAssessment- Sql
Assessment SqlAssessment- Web
App Assessment WebAppAssessment
- UNKNOWN
Unknown- MACHINE_ASSESSMENT
MachineAssessment- AVS_ASSESSMENT
AvsAssessment- SQL_ASSESSMENT
SqlAssessment- WEB_APP_ASSESSMENT
WebAppAssessment
- "Unknown"
Unknown- "Machine
Assessment" MachineAssessment- "Avs
Assessment" AvsAssessment- "Sql
Assessment" SqlAssessment- "Web
App Assessment" WebAppAssessment
AsyncCommitModeIntent, AsyncCommitModeIntentArgs
- None
None- High
Availability HighAvailability- Disaster
Recovery DisasterRecovery
- Async
Commit Mode Intent None None- Async
Commit Mode Intent High Availability HighAvailability- Async
Commit Mode Intent Disaster Recovery DisasterRecovery
- None
None- High
Availability HighAvailability- Disaster
Recovery DisasterRecovery
- None
None- High
Availability HighAvailability- Disaster
Recovery DisasterRecovery
- NONE
None- HIGH_AVAILABILITY
HighAvailability- DISASTER_RECOVERY
DisasterRecovery
- "None"
None- "High
Availability" HighAvailability- "Disaster
Recovery" DisasterRecovery
AzureCurrency, AzureCurrencyArgs
- Unknown
Unknown- USD
USD- DKK
DKK- CAD
CAD- IDR
IDR- JPY
JPY- KRW
KRW- NZD
NZD- NOK
NOK- RUB
RUB- SAR
SAR- ZAR
ZAR- SEK
SEK- TRY
TRY- GBP
GBP- MXN
MXN- MYR
MYR- INR
INR- HKD
HKD- BRL
BRL- TWD
TWD- EUR
EUR- CHF
CHF- ARS
ARS- AUD
AUD- CNY
CNY
- Azure
Currency Unknown Unknown- Azure
Currency USD USD- Azure
Currency DKK DKK- Azure
Currency CAD CAD- Azure
Currency IDR IDR- Azure
Currency JPY JPY- Azure
Currency KRW KRW- Azure
Currency NZD NZD- Azure
Currency NOK NOK- Azure
Currency RUB RUB- Azure
Currency SAR SAR- Azure
Currency ZAR ZAR- Azure
Currency SEK SEK- Azure
Currency TRY TRY- Azure
Currency GBP GBP- Azure
Currency MXN MXN- Azure
Currency MYR MYR- Azure
Currency INR INR- Azure
Currency HKD HKD- Azure
Currency BRL BRL- Azure
Currency TWD TWD- Azure
Currency EUR EUR- Azure
Currency CHF CHF- Azure
Currency ARS ARS- Azure
Currency AUD AUD- Azure
Currency CNY CNY
- Unknown
Unknown- USD
USD- DKK
DKK- CAD
CAD- IDR
IDR- JPY
JPY- KRW
KRW- NZD
NZD- NOK
NOK- RUB
RUB- SAR
SAR- ZAR
ZAR- SEK
SEK- TRY
TRY- GBP
GBP- MXN
MXN- MYR
MYR- INR
INR- HKD
HKD- BRL
BRL- TWD
TWD- EUR
EUR- CHF
CHF- ARS
ARS- AUD
AUD- CNY
CNY
- Unknown
Unknown- USD
USD- DKK
DKK- CAD
CAD- IDR
IDR- JPY
JPY- KRW
KRW- NZD
NZD- NOK
NOK- RUB
RUB- SAR
SAR- ZAR
ZAR- SEK
SEK- TRY
TRY- GBP
GBP- MXN
MXN- MYR
MYR- INR
INR- HKD
HKD- BRL
BRL- TWD
TWD- EUR
EUR- CHF
CHF- ARS
ARS- AUD
AUD- CNY
CNY
- UNKNOWN
Unknown- USD
USD- DKK
DKK- CAD
CAD- IDR
IDR- JPY
JPY- KRW
KRW- NZD
NZD- NOK
NOK- RUB
RUB- SAR
SAR- ZAR
ZAR- SEK
SEK- TRY_
TRY- GBP
GBP- MXN
MXN- MYR
MYR- INR
INR- HKD
HKD- BRL
BRL- TWD
TWD- EUR
EUR- CHF
CHF- ARS
ARS- AUD
AUD- CNY
CNY
- "Unknown"
Unknown- "USD"
USD- "DKK"
DKK- "CAD"
CAD- "IDR"
IDR- "JPY"
JPY- "KRW"
KRW- "NZD"
NZD- "NOK"
NOK- "RUB"
RUB- "SAR"
SAR- "ZAR"
ZAR- "SEK"
SEK- "TRY"
TRY- "GBP"
GBP- "MXN"
MXN- "MYR"
MYR- "INR"
INR- "HKD"
HKD- "BRL"
BRL- "TWD"
TWD- "EUR"
EUR- "CHF"
CHF- "ARS"
ARS- "AUD"
AUD- "CNY"
CNY
AzureLocation, AzureLocationArgs
- Unknown
Unknown- East
Asia EastAsia- Southeast
Asia SoutheastAsia- Australia
East AustraliaEast- Australia
Southeast AustraliaSoutheast- Brazil
South BrazilSouth- Canada
Central CanadaCentral- Canada
East CanadaEast- West
Europe WestEurope- North
Europe NorthEurope- Central
India CentralIndia- South
India SouthIndia- West
India WestIndia- Japan
East JapanEast- Japan
West JapanWest- Korea
Central KoreaCentral- Korea
South KoreaSouth- Uk
West UkWest- Uk
South UkSouth- North
Central Us NorthCentralUs- East
Us EastUs- West
Us2 WestUs2- South
Central Us SouthCentralUs- Central
Us CentralUs- East
Us2 EastUs2- West
Us WestUs- West
Central Us WestCentralUs- Germany
Central GermanyCentral- Germany
Northeast GermanyNortheast- China
North ChinaNorth- China
East ChinaEast- USGov
Arizona USGovArizona- USGov
Texas USGovTexas- USGov
Iowa USGovIowa- USGov
Virginia USGovVirginia- USDo
DCentral USDoDCentral- USDo
DEast USDoDEast- France
Central FranceCentral- Australia
Central AustraliaCentral- South
Africa North SouthAfricaNorth- France
South FranceSouth- Australia
Central2 AustraliaCentral2- South
Africa West SouthAfricaWest- Germany
North GermanyNorth- Germany
West Central GermanyWestCentral- Norway
East NorwayEast- Norway
West NorwayWest- China
East2 ChinaEast2- China
North2 ChinaNorth2- Switzerland
North SwitzerlandNorth- Switzerland
West SwitzerlandWest- UAENorth
UAENorth- UAECentral
UAECentral- Us
Nat East UsNatEast- Us
Nat West UsNatWest- Us
Sec East UsSecEast- Us
Sec Central UsSecCentral- Us
Sec West UsSecWest- Sweden
Central SwedenCentral- Qatar
Central QatarCentral
- Azure
Location Unknown Unknown- Azure
Location East Asia EastAsia- Azure
Location Southeast Asia SoutheastAsia- Azure
Location Australia East AustraliaEast- Azure
Location Australia Southeast AustraliaSoutheast- Azure
Location Brazil South BrazilSouth- Azure
Location Canada Central CanadaCentral- Azure
Location Canada East CanadaEast- Azure
Location West Europe WestEurope- Azure
Location North Europe NorthEurope- Azure
Location Central India CentralIndia- Azure
Location South India SouthIndia- Azure
Location West India WestIndia- Azure
Location Japan East JapanEast- Azure
Location Japan West JapanWest- Azure
Location Korea Central KoreaCentral- Azure
Location Korea South KoreaSouth- Azure
Location Uk West UkWest- Azure
Location Uk South UkSouth- Azure
Location North Central Us NorthCentralUs- Azure
Location East Us EastUs- Azure
Location West Us2 WestUs2- Azure
Location South Central Us SouthCentralUs- Azure
Location Central Us CentralUs- Azure
Location East Us2 EastUs2- Azure
Location West Us WestUs- Azure
Location West Central Us WestCentralUs- Azure
Location Germany Central GermanyCentral- Azure
Location Germany Northeast GermanyNortheast- Azure
Location China North ChinaNorth- Azure
Location China East ChinaEast- Azure
Location USGov Arizona USGovArizona- Azure
Location USGov Texas USGovTexas- Azure
Location USGov Iowa USGovIowa- Azure
Location USGov Virginia USGovVirginia- Azure
Location USDo DCentral USDoDCentral- Azure
Location USDo DEast USDoDEast- Azure
Location France Central FranceCentral- Azure
Location Australia Central AustraliaCentral- Azure
Location South Africa North SouthAfricaNorth- Azure
Location France South FranceSouth- Azure
Location Australia Central2 AustraliaCentral2- Azure
Location South Africa West SouthAfricaWest- Azure
Location Germany North GermanyNorth- Azure
Location Germany West Central GermanyWestCentral- Azure
Location Norway East NorwayEast- Azure
Location Norway West NorwayWest- Azure
Location China East2 ChinaEast2- Azure
Location China North2 ChinaNorth2- Azure
Location Switzerland North SwitzerlandNorth- Azure
Location Switzerland West SwitzerlandWest- Azure
Location UAENorth UAENorth- Azure
Location UAECentral UAECentral- Azure
Location Us Nat East UsNatEast- Azure
Location Us Nat West UsNatWest- Azure
Location Us Sec East UsSecEast- Azure
Location Us Sec Central UsSecCentral- Azure
Location Us Sec West UsSecWest- Azure
Location Sweden Central SwedenCentral- Azure
Location Qatar Central QatarCentral
- Unknown
Unknown- East
Asia EastAsia- Southeast
Asia SoutheastAsia- Australia
East AustraliaEast- Australia
Southeast AustraliaSoutheast- Brazil
South BrazilSouth- Canada
Central CanadaCentral- Canada
East CanadaEast- West
Europe WestEurope- North
Europe NorthEurope- Central
India CentralIndia- South
India SouthIndia- West
India WestIndia- Japan
East JapanEast- Japan
West JapanWest- Korea
Central KoreaCentral- Korea
South KoreaSouth- Uk
West UkWest- Uk
South UkSouth- North
Central Us NorthCentralUs- East
Us EastUs- West
Us2 WestUs2- South
Central Us SouthCentralUs- Central
Us CentralUs- East
Us2 EastUs2- West
Us WestUs- West
Central Us WestCentralUs- Germany
Central GermanyCentral- Germany
Northeast GermanyNortheast- China
North ChinaNorth- China
East ChinaEast- USGov
Arizona USGovArizona- USGov
Texas USGovTexas- USGov
Iowa USGovIowa- USGov
Virginia USGovVirginia- USDo
DCentral USDoDCentral- USDo
DEast USDoDEast- France
Central FranceCentral- Australia
Central AustraliaCentral- South
Africa North SouthAfricaNorth- France
South FranceSouth- Australia
Central2 AustraliaCentral2- South
Africa West SouthAfricaWest- Germany
North GermanyNorth- Germany
West Central GermanyWestCentral- Norway
East NorwayEast- Norway
West NorwayWest- China
East2 ChinaEast2- China
North2 ChinaNorth2- Switzerland
North SwitzerlandNorth- Switzerland
West SwitzerlandWest- UAENorth
UAENorth- UAECentral
UAECentral- Us
Nat East UsNatEast- Us
Nat West UsNatWest- Us
Sec East UsSecEast- Us
Sec Central UsSecCentral- Us
Sec West UsSecWest- Sweden
Central SwedenCentral- Qatar
Central QatarCentral
- Unknown
Unknown- East
Asia EastAsia- Southeast
Asia SoutheastAsia- Australia
East AustraliaEast- Australia
Southeast AustraliaSoutheast- Brazil
South BrazilSouth- Canada
Central CanadaCentral- Canada
East CanadaEast- West
Europe WestEurope- North
Europe NorthEurope- Central
India CentralIndia- South
India SouthIndia- West
India WestIndia- Japan
East JapanEast- Japan
West JapanWest- Korea
Central KoreaCentral- Korea
South KoreaSouth- Uk
West UkWest- Uk
South UkSouth- North
Central Us NorthCentralUs- East
Us EastUs- West
Us2 WestUs2- South
Central Us SouthCentralUs- Central
Us CentralUs- East
Us2 EastUs2- West
Us WestUs- West
Central Us WestCentralUs- Germany
Central GermanyCentral- Germany
Northeast GermanyNortheast- China
North ChinaNorth- China
East ChinaEast- USGov
Arizona USGovArizona- USGov
Texas USGovTexas- USGov
Iowa USGovIowa- USGov
Virginia USGovVirginia- USDo
DCentral USDoDCentral- USDo
DEast USDoDEast- France
Central FranceCentral- Australia
Central AustraliaCentral- South
Africa North SouthAfricaNorth- France
South FranceSouth- Australia
Central2 AustraliaCentral2- South
Africa West SouthAfricaWest- Germany
North GermanyNorth- Germany
West Central GermanyWestCentral- Norway
East NorwayEast- Norway
West NorwayWest- China
East2 ChinaEast2- China
North2 ChinaNorth2- Switzerland
North SwitzerlandNorth- Switzerland
West SwitzerlandWest- UAENorth
UAENorth- UAECentral
UAECentral- Us
Nat East UsNatEast- Us
Nat West UsNatWest- Us
Sec East UsSecEast- Us
Sec Central UsSecCentral- Us
Sec West UsSecWest- Sweden
Central SwedenCentral- Qatar
Central QatarCentral
- UNKNOWN
Unknown- EAST_ASIA
EastAsia- SOUTHEAST_ASIA
SoutheastAsia- AUSTRALIA_EAST
AustraliaEast- AUSTRALIA_SOUTHEAST
AustraliaSoutheast- BRAZIL_SOUTH
BrazilSouth- CANADA_CENTRAL
CanadaCentral- CANADA_EAST
CanadaEast- WEST_EUROPE
WestEurope- NORTH_EUROPE
NorthEurope- CENTRAL_INDIA
CentralIndia- SOUTH_INDIA
SouthIndia- WEST_INDIA
WestIndia- JAPAN_EAST
JapanEast- JAPAN_WEST
JapanWest- KOREA_CENTRAL
KoreaCentral- KOREA_SOUTH
KoreaSouth- UK_WEST
UkWest- UK_SOUTH
UkSouth- NORTH_CENTRAL_US
NorthCentralUs- EAST_US
EastUs- WEST_US2
WestUs2- SOUTH_CENTRAL_US
SouthCentralUs- CENTRAL_US
CentralUs- EAST_US2
EastUs2- WEST_US
WestUs- WEST_CENTRAL_US
WestCentralUs- GERMANY_CENTRAL
GermanyCentral- GERMANY_NORTHEAST
GermanyNortheast- CHINA_NORTH
ChinaNorth- CHINA_EAST
ChinaEast- US_GOV_ARIZONA
USGovArizona- US_GOV_TEXAS
USGovTexas- US_GOV_IOWA
USGovIowa- US_GOV_VIRGINIA
USGovVirginia- US_DO_D_CENTRAL
USDoDCentral- US_DO_D_EAST
USDoDEast- FRANCE_CENTRAL
FranceCentral- AUSTRALIA_CENTRAL
AustraliaCentral- SOUTH_AFRICA_NORTH
SouthAfricaNorth- FRANCE_SOUTH
FranceSouth- AUSTRALIA_CENTRAL2
AustraliaCentral2- SOUTH_AFRICA_WEST
SouthAfricaWest- GERMANY_NORTH
GermanyNorth- GERMANY_WEST_CENTRAL
GermanyWestCentral- NORWAY_EAST
NorwayEast- NORWAY_WEST
NorwayWest- CHINA_EAST2
ChinaEast2- CHINA_NORTH2
ChinaNorth2- SWITZERLAND_NORTH
SwitzerlandNorth- SWITZERLAND_WEST
SwitzerlandWest- UAE_NORTH
UAENorth- UAE_CENTRAL
UAECentral- US_NAT_EAST
UsNatEast- US_NAT_WEST
UsNatWest- US_SEC_EAST
UsSecEast- US_SEC_CENTRAL
UsSecCentral- US_SEC_WEST
UsSecWest- SWEDEN_CENTRAL
SwedenCentral- QATAR_CENTRAL
QatarCentral
- "Unknown"
Unknown- "East
Asia" EastAsia- "Southeast
Asia" SoutheastAsia- "Australia
East" AustraliaEast- "Australia
Southeast" AustraliaSoutheast- "Brazil
South" BrazilSouth- "Canada
Central" CanadaCentral- "Canada
East" CanadaEast- "West
Europe" WestEurope- "North
Europe" NorthEurope- "Central
India" CentralIndia- "South
India" SouthIndia- "West
India" WestIndia- "Japan
East" JapanEast- "Japan
West" JapanWest- "Korea
Central" KoreaCentral- "Korea
South" KoreaSouth- "Uk
West" UkWest- "Uk
South" UkSouth- "North
Central Us" NorthCentralUs- "East
Us" EastUs- "West
Us2" WestUs2- "South
Central Us" SouthCentralUs- "Central
Us" CentralUs- "East
Us2" EastUs2- "West
Us" WestUs- "West
Central Us" WestCentralUs- "Germany
Central" GermanyCentral- "Germany
Northeast" GermanyNortheast- "China
North" ChinaNorth- "China
East" ChinaEast- "USGov
Arizona" USGovArizona- "USGov
Texas" USGovTexas- "USGov
Iowa" USGovIowa- "USGov
Virginia" USGovVirginia- "USDo
DCentral" USDoDCentral- "USDo
DEast" USDoDEast- "France
Central" FranceCentral- "Australia
Central" AustraliaCentral- "South
Africa North" SouthAfricaNorth- "France
South" FranceSouth- "Australia
Central2" AustraliaCentral2- "South
Africa West" SouthAfricaWest- "Germany
North" GermanyNorth- "Germany
West Central" GermanyWestCentral- "Norway
East" NorwayEast- "Norway
West" NorwayWest- "China
East2" ChinaEast2- "China
North2" ChinaNorth2- "Switzerland
North" SwitzerlandNorth- "Switzerland
West" SwitzerlandWest- "UAENorth"
UAENorth- "UAECentral"
UAECentral- "Us
Nat East" UsNatEast- "Us
Nat West" UsNatWest- "Us
Sec East" UsSecEast- "Us
Sec Central" UsSecCentral- "Us
Sec West" UsSecWest- "Sweden
Central" SwedenCentral- "Qatar
Central" QatarCentral
AzureOfferCode, AzureOfferCodeArgs
- Unknown
Unknown- Msazr0003P
MSAZR0003P- Msazr0044P
MSAZR0044P- Msazr0059P
MSAZR0059P- Msazr0060P
MSAZR0060P- Msazr0062P
MSAZR0062P- Msazr0063P
MSAZR0063P- Msazr0064P
MSAZR0064P- Msazr0029P
MSAZR0029P- Msazr0022P
MSAZR0022P- Msazr0023P
MSAZR0023P- Msazr0148P
MSAZR0148P- Msazr0025P
MSAZR0025P- Msazr0036P
MSAZR0036P- Msazr0120P
MSAZR0120P- Msazr0121P
MSAZR0121P- Msazr0122P
MSAZR0122P- Msazr0123P
MSAZR0123P- Msazr0124P
MSAZR0124P- Msazr0125P
MSAZR0125P- Msazr0126P
MSAZR0126P- Msazr0127P
MSAZR0127P- Msazr0128P
MSAZR0128P- Msazr0129P
MSAZR0129P- Msazr0130P
MSAZR0130P- Msazr0111P
MSAZR0111P- Msazr0144P
MSAZR0144P- Msazr0149P
MSAZR0149P- Msmcazr0044P
MSMCAZR0044P- Msmcazr0059P
MSMCAZR0059P- Msmcazr0060P
MSMCAZR0060P- Msmcazr0063P
MSMCAZR0063P- Msmcazr0120P
MSMCAZR0120P- Msmcazr0121P
MSMCAZR0121P- Msmcazr0125P
MSMCAZR0125P- Msmcazr0128P
MSMCAZR0128P- Msazrde0003P
MSAZRDE0003P- Msazrde0044P
MSAZRDE0044P- Msazrusgov0003P
MSAZRUSGOV0003P- EA
EA- Msazr0243P
MSAZR0243P- Savings
Plan1Year SavingsPlan1Year- Savings
Plan3Year SavingsPlan3Year
- Azure
Offer Code Unknown Unknown- Azure
Offer Code Msazr0003P MSAZR0003P- Azure
Offer Code Msazr0044P MSAZR0044P- Azure
Offer Code Msazr0059P MSAZR0059P- Azure
Offer Code Msazr0060P MSAZR0060P- Azure
Offer Code Msazr0062P MSAZR0062P- Azure
Offer Code Msazr0063P MSAZR0063P- Azure
Offer Code Msazr0064P MSAZR0064P- Azure
Offer Code Msazr0029P MSAZR0029P- Azure
Offer Code Msazr0022P MSAZR0022P- Azure
Offer Code Msazr0023P MSAZR0023P- Azure
Offer Code Msazr0148P MSAZR0148P- Azure
Offer Code Msazr0025P MSAZR0025P- Azure
Offer Code Msazr0036P MSAZR0036P- Azure
Offer Code Msazr0120P MSAZR0120P- Azure
Offer Code Msazr0121P MSAZR0121P- Azure
Offer Code Msazr0122P MSAZR0122P- Azure
Offer Code Msazr0123P MSAZR0123P- Azure
Offer Code Msazr0124P MSAZR0124P- Azure
Offer Code Msazr0125P MSAZR0125P- Azure
Offer Code Msazr0126P MSAZR0126P- Azure
Offer Code Msazr0127P MSAZR0127P- Azure
Offer Code Msazr0128P MSAZR0128P- Azure
Offer Code Msazr0129P MSAZR0129P- Azure
Offer Code Msazr0130P MSAZR0130P- Azure
Offer Code Msazr0111P MSAZR0111P- Azure
Offer Code Msazr0144P MSAZR0144P- Azure
Offer Code Msazr0149P MSAZR0149P- Azure
Offer Code Msmcazr0044P MSMCAZR0044P- Azure
Offer Code Msmcazr0059P MSMCAZR0059P- Azure
Offer Code Msmcazr0060P MSMCAZR0060P- Azure
Offer Code Msmcazr0063P MSMCAZR0063P- Azure
Offer Code Msmcazr0120P MSMCAZR0120P- Azure
Offer Code Msmcazr0121P MSMCAZR0121P- Azure
Offer Code Msmcazr0125P MSMCAZR0125P- Azure
Offer Code Msmcazr0128P MSMCAZR0128P- Azure
Offer Code Msazrde0003P MSAZRDE0003P- Azure
Offer Code Msazrde0044P MSAZRDE0044P- Azure
Offer Code Msazrusgov0003P MSAZRUSGOV0003P- Azure
Offer Code EA EA- Azure
Offer Code Msazr0243P MSAZR0243P- Azure
Offer Code Savings Plan1Year SavingsPlan1Year- Azure
Offer Code Savings Plan3Year SavingsPlan3Year
- Unknown
Unknown- Msazr0003P
MSAZR0003P- Msazr0044P
MSAZR0044P- Msazr0059P
MSAZR0059P- Msazr0060P
MSAZR0060P- Msazr0062P
MSAZR0062P- Msazr0063P
MSAZR0063P- Msazr0064P
MSAZR0064P- Msazr0029P
MSAZR0029P- Msazr0022P
MSAZR0022P- Msazr0023P
MSAZR0023P- Msazr0148P
MSAZR0148P- Msazr0025P
MSAZR0025P- Msazr0036P
MSAZR0036P- Msazr0120P
MSAZR0120P- Msazr0121P
MSAZR0121P- Msazr0122P
MSAZR0122P- Msazr0123P
MSAZR0123P- Msazr0124P
MSAZR0124P- Msazr0125P
MSAZR0125P- Msazr0126P
MSAZR0126P- Msazr0127P
MSAZR0127P- Msazr0128P
MSAZR0128P- Msazr0129P
MSAZR0129P- Msazr0130P
MSAZR0130P- Msazr0111P
MSAZR0111P- Msazr0144P
MSAZR0144P- Msazr0149P
MSAZR0149P- Msmcazr0044P
MSMCAZR0044P- Msmcazr0059P
MSMCAZR0059P- Msmcazr0060P
MSMCAZR0060P- Msmcazr0063P
MSMCAZR0063P- Msmcazr0120P
MSMCAZR0120P- Msmcazr0121P
MSMCAZR0121P- Msmcazr0125P
MSMCAZR0125P- Msmcazr0128P
MSMCAZR0128P- Msazrde0003P
MSAZRDE0003P- Msazrde0044P
MSAZRDE0044P- Msazrusgov0003P
MSAZRUSGOV0003P- EA
EA- Msazr0243P
MSAZR0243P- Savings
Plan1Year SavingsPlan1Year- Savings
Plan3Year SavingsPlan3Year
- Unknown
Unknown- Msazr0003P
MSAZR0003P- Msazr0044P
MSAZR0044P- Msazr0059P
MSAZR0059P- Msazr0060P
MSAZR0060P- Msazr0062P
MSAZR0062P- Msazr0063P
MSAZR0063P- Msazr0064P
MSAZR0064P- Msazr0029P
MSAZR0029P- Msazr0022P
MSAZR0022P- Msazr0023P
MSAZR0023P- Msazr0148P
MSAZR0148P- Msazr0025P
MSAZR0025P- Msazr0036P
MSAZR0036P- Msazr0120P
MSAZR0120P- Msazr0121P
MSAZR0121P- Msazr0122P
MSAZR0122P- Msazr0123P
MSAZR0123P- Msazr0124P
MSAZR0124P- Msazr0125P
MSAZR0125P- Msazr0126P
MSAZR0126P- Msazr0127P
MSAZR0127P- Msazr0128P
MSAZR0128P- Msazr0129P
MSAZR0129P- Msazr0130P
MSAZR0130P- Msazr0111P
MSAZR0111P- Msazr0144P
MSAZR0144P- Msazr0149P
MSAZR0149P- Msmcazr0044P
MSMCAZR0044P- Msmcazr0059P
MSMCAZR0059P- Msmcazr0060P
MSMCAZR0060P- Msmcazr0063P
MSMCAZR0063P- Msmcazr0120P
MSMCAZR0120P- Msmcazr0121P
MSMCAZR0121P- Msmcazr0125P
MSMCAZR0125P- Msmcazr0128P
MSMCAZR0128P- Msazrde0003P
MSAZRDE0003P- Msazrde0044P
MSAZRDE0044P- Msazrusgov0003P
MSAZRUSGOV0003P- EA
EA- Msazr0243P
MSAZR0243P- Savings
Plan1Year SavingsPlan1Year- Savings
Plan3Year SavingsPlan3Year
- UNKNOWN
Unknown- MSAZR0003_P
MSAZR0003P- MSAZR0044_P
MSAZR0044P- MSAZR0059_P
MSAZR0059P- MSAZR0060_P
MSAZR0060P- MSAZR0062_P
MSAZR0062P- MSAZR0063_P
MSAZR0063P- MSAZR0064_P
MSAZR0064P- MSAZR0029_P
MSAZR0029P- MSAZR0022_P
MSAZR0022P- MSAZR0023_P
MSAZR0023P- MSAZR0148_P
MSAZR0148P- MSAZR0025_P
MSAZR0025P- MSAZR0036_P
MSAZR0036P- MSAZR0120_P
MSAZR0120P- MSAZR0121_P
MSAZR0121P- MSAZR0122_P
MSAZR0122P- MSAZR0123_P
MSAZR0123P- MSAZR0124_P
MSAZR0124P- MSAZR0125_P
MSAZR0125P- MSAZR0126_P
MSAZR0126P- MSAZR0127_P
MSAZR0127P- MSAZR0128_P
MSAZR0128P- MSAZR0129_P
MSAZR0129P- MSAZR0130_P
MSAZR0130P- MSAZR0111_P
MSAZR0111P- MSAZR0144_P
MSAZR0144P- MSAZR0149_P
MSAZR0149P- MSMCAZR0044_P
MSMCAZR0044P- MSMCAZR0059_P
MSMCAZR0059P- MSMCAZR0060_P
MSMCAZR0060P- MSMCAZR0063_P
MSMCAZR0063P- MSMCAZR0120_P
MSMCAZR0120P- MSMCAZR0121_P
MSMCAZR0121P- MSMCAZR0125_P
MSMCAZR0125P- MSMCAZR0128_P
MSMCAZR0128P- MSAZRDE0003_P
MSAZRDE0003P- MSAZRDE0044_P
MSAZRDE0044P- MSAZRUSGOV0003_P
MSAZRUSGOV0003P- EA
EA- MSAZR0243_P
MSAZR0243P- SAVINGS_PLAN1_YEAR
SavingsPlan1Year- SAVINGS_PLAN3_YEAR
SavingsPlan3Year
- "Unknown"
Unknown- "MSAZR0003P"
MSAZR0003P- "MSAZR0044P"
MSAZR0044P- "MSAZR0059P"
MSAZR0059P- "MSAZR0060P"
MSAZR0060P- "MSAZR0062P"
MSAZR0062P- "MSAZR0063P"
MSAZR0063P- "MSAZR0064P"
MSAZR0064P- "MSAZR0029P"
MSAZR0029P- "MSAZR0022P"
MSAZR0022P- "MSAZR0023P"
MSAZR0023P- "MSAZR0148P"
MSAZR0148P- "MSAZR0025P"
MSAZR0025P- "MSAZR0036P"
MSAZR0036P- "MSAZR0120P"
MSAZR0120P- "MSAZR0121P"
MSAZR0121P- "MSAZR0122P"
MSAZR0122P- "MSAZR0123P"
MSAZR0123P- "MSAZR0124P"
MSAZR0124P- "MSAZR0125P"
MSAZR0125P- "MSAZR0126P"
MSAZR0126P- "MSAZR0127P"
MSAZR0127P- "MSAZR0128P"
MSAZR0128P- "MSAZR0129P"
MSAZR0129P- "MSAZR0130P"
MSAZR0130P- "MSAZR0111P"
MSAZR0111P- "MSAZR0144P"
MSAZR0144P- "MSAZR0149P"
MSAZR0149P- "MSMCAZR0044P"
MSMCAZR0044P- "MSMCAZR0059P"
MSMCAZR0059P- "MSMCAZR0060P"
MSMCAZR0060P- "MSMCAZR0063P"
MSMCAZR0063P- "MSMCAZR0120P"
MSMCAZR0120P- "MSMCAZR0121P"
MSMCAZR0121P- "MSMCAZR0125P"
MSMCAZR0125P- "MSMCAZR0128P"
MSMCAZR0128P- "MSAZRDE0003P"
MSAZRDE0003P- "MSAZRDE0044P"
MSAZRDE0044P- "MSAZRUSGOV0003P"
MSAZRUSGOV0003P- "EA"
EA- "MSAZR0243P"
MSAZR0243P- "Savings
Plan1Year" SavingsPlan1Year- "Savings
Plan3Year" SavingsPlan3Year
AzureReservedInstance, AzureReservedInstanceArgs
- None
None- RI1Year
RI1Year- RI3Year
RI3Year
- Azure
Reserved Instance None None- Azure
Reserved Instance RI1Year RI1Year- Azure
Reserved Instance RI3Year RI3Year
- None
None- RI1Year
RI1Year- RI3Year
RI3Year
- None
None- RI1Year
RI1Year- RI3Year
RI3Year
- NONE
None- RI1_YEAR
RI1Year- RI3_YEAR
RI3Year
- "None"
None- "RI1Year"
RI1Year- "RI3Year"
RI3Year
AzureSecurityOfferingType, AzureSecurityOfferingTypeArgs
- NO
NO- MDC
MDC
- Azure
Security Offering Type NO NO- Azure
Security Offering Type MDC MDC
- NO
NO- MDC
MDC
- NO
NO- MDC
MDC
- NO
NO- MDC
MDC
- "NO"
NO- "MDC"
MDC
AzureSqlDataBaseType, AzureSqlDataBaseTypeArgs
- Unknown
Unknown- Automatic
Automatic- Single
Database SingleDatabase- Elastic
Pool ElasticPool
- Azure
Sql Data Base Type Unknown Unknown- Azure
Sql Data Base Type Automatic Automatic- Azure
Sql Data Base Type Single Database SingleDatabase- Azure
Sql Data Base Type Elastic Pool ElasticPool
- Unknown
Unknown- Automatic
Automatic- Single
Database SingleDatabase- Elastic
Pool ElasticPool
- Unknown
Unknown- Automatic
Automatic- Single
Database SingleDatabase- Elastic
Pool ElasticPool
- UNKNOWN
Unknown- AUTOMATIC
Automatic- SINGLE_DATABASE
SingleDatabase- ELASTIC_POOL
ElasticPool
- "Unknown"
Unknown- "Automatic"
Automatic- "Single
Database" SingleDatabase- "Elastic
Pool" ElasticPool
AzureSqlInstanceType, AzureSqlInstanceTypeArgs
- Unknown
Unknown- Automatic
Automatic- Single
Instance SingleInstance- Instance
Pools InstancePools
- Azure
Sql Instance Type Unknown Unknown- Azure
Sql Instance Type Automatic Automatic- Azure
Sql Instance Type Single Instance SingleInstance- Azure
Sql Instance Type Instance Pools InstancePools
- Unknown
Unknown- Automatic
Automatic- Single
Instance SingleInstance- Instance
Pools InstancePools
- Unknown
Unknown- Automatic
Automatic- Single
Instance SingleInstance- Instance
Pools InstancePools
- UNKNOWN
Unknown- AUTOMATIC
Automatic- SINGLE_INSTANCE
SingleInstance- INSTANCE_POOLS
InstancePools
- "Unknown"
Unknown- "Automatic"
Automatic- "Single
Instance" SingleInstance- "Instance
Pools" InstancePools
AzureSqlPurchaseModel, AzureSqlPurchaseModelArgs
- Unknown
Unknown- VCore
VCore- DTU
DTU
- Azure
Sql Purchase Model Unknown Unknown- Azure
Sql Purchase Model VCore VCore- Azure
Sql Purchase Model DTU DTU
- Unknown
Unknown- VCore
VCore- DTU
DTU
- Unknown
Unknown- VCore
VCore- DTU
DTU
- UNKNOWN
Unknown- V_CORE
VCore- DTU
DTU
- "Unknown"
Unknown- "VCore"
VCore- "DTU"
DTU
AzureSqlServiceTier, AzureSqlServiceTierArgs
- Unknown
Unknown- Automatic
Automatic- General
Purpose GeneralPurpose- Business
Critical BusinessCritical- Hyper
Scale HyperScale
- Azure
Sql Service Tier Unknown Unknown- Azure
Sql Service Tier Automatic Automatic- Azure
Sql Service Tier General Purpose GeneralPurpose- Azure
Sql Service Tier Business Critical BusinessCritical- Azure
Sql Service Tier Hyper Scale HyperScale
- Unknown
Unknown- Automatic
Automatic- General
Purpose GeneralPurpose- Business
Critical BusinessCritical- Hyper
Scale HyperScale
- Unknown
Unknown- Automatic
Automatic- General
Purpose GeneralPurpose- Business
Critical BusinessCritical- Hyper
Scale HyperScale
- UNKNOWN
Unknown- AUTOMATIC
Automatic- GENERAL_PURPOSE
GeneralPurpose- BUSINESS_CRITICAL
BusinessCritical- HYPER_SCALE
HyperScale
- "Unknown"
Unknown- "Automatic"
Automatic- "General
Purpose" GeneralPurpose- "Business
Critical" BusinessCritical- "Hyper
Scale" HyperScale
AzureVmFamily, AzureVmFamilyArgs
- Unknown
Unknown- Basic
A0A4 Basic_A0_A4- Standard
A0A7 Standard_A0_A7- Standard
A8A11 Standard_A8_A11- Av2Series
Av2_series- DSeries
D_series- Dv2Series
Dv2_series- DSSeries
DS_series- DSv2Series
DSv2_series- FSeries
F_series- Fs
Series Fs_series- GSeries
G_series- GSSeries
GS_series- HSeries
H_series- Ls
Series Ls_series- Dsv3Series
Dsv3_series- Dv3Series
Dv3_series- Fsv2Series
Fsv2_series- Ev3Series
Ev3_series- Esv3Series
Esv3_series- MSeries
M_series- DCSeries
DC_Series- Lsv2Series
Lsv2_series- Ev4Series
Ev4_series- Esv4Series
Esv4_series- Edv4Series
Edv4_series- Edsv4Series
Edsv4_series- Dv4Series
Dv4_series- Dsv4Series
Dsv4_series- Ddv4Series
Ddv4_series- Ddsv4Series
Ddsv4_series- Easv4Series
Easv4_series- Dasv4Series
Dasv4_series- Mv2Series
Mv2_series- Eav4Series
Eav4_series- Dav4Series
Dav4_series- Msv2Series
Msv2_series- Mdsv2Series
Mdsv2_series- Dv5Series
Dv5_series- Dsv5Series
Dsv5_series- Ddv5Series
Ddv5_series- Ddsv5Series
Ddsv5_series- Dasv5Series
Dasv5_series- Dadsv5Series
Dadsv5_series- Ev5Series
Ev5_series- Esv5Series
Esv5_series- Edv5Series
Edv5_series- Edsv5Series
Edsv5_series- Easv5Series
Easv5_series- Eadsv5Series
Eadsv5_series- Ebsv5Series
Ebsv5_series- Ebdsv5Series
Ebdsv5_series
- Azure
Vm Family Unknown Unknown- Azure
Vm Family Basic A0A4 Basic_A0_A4- Azure
Vm Family Standard A0A7 Standard_A0_A7- Azure
Vm Family Standard A8A11 Standard_A8_A11- Azure
Vm Family Av2Series Av2_series- Azure
Vm Family DSeries D_series- Azure
Vm Family Dv2Series Dv2_series- Azure
Vm Family DSSeries DS_series- Azure
Vm Family DSv2Series DSv2_series- Azure
Vm Family FSeries F_series- Azure
Vm Family Fs Series Fs_series- Azure
Vm Family GSeries G_series- Azure
Vm Family GSSeries GS_series- Azure
Vm Family HSeries H_series- Azure
Vm Family Ls Series Ls_series- Azure
Vm Family Dsv3Series Dsv3_series- Azure
Vm Family Dv3Series Dv3_series- Azure
Vm Family Fsv2Series Fsv2_series- Azure
Vm Family Ev3Series Ev3_series- Azure
Vm Family Esv3Series Esv3_series- Azure
Vm Family MSeries M_series- Azure
Vm Family DCSeries DC_Series- Azure
Vm Family Lsv2Series Lsv2_series- Azure
Vm Family Ev4Series Ev4_series- Azure
Vm Family Esv4Series Esv4_series- Azure
Vm Family Edv4Series Edv4_series- Azure
Vm Family Edsv4Series Edsv4_series- Azure
Vm Family Dv4Series Dv4_series- Azure
Vm Family Dsv4Series Dsv4_series- Azure
Vm Family Ddv4Series Ddv4_series- Azure
Vm Family Ddsv4Series Ddsv4_series- Azure
Vm Family Easv4Series Easv4_series- Azure
Vm Family Dasv4Series Dasv4_series- Azure
Vm Family Mv2Series Mv2_series- Azure
Vm Family Eav4Series Eav4_series- Azure
Vm Family Dav4Series Dav4_series- Azure
Vm Family Msv2Series Msv2_series- Azure
Vm Family Mdsv2Series Mdsv2_series- Azure
Vm Family Dv5Series Dv5_series- Azure
Vm Family Dsv5Series Dsv5_series- Azure
Vm Family Ddv5Series Ddv5_series- Azure
Vm Family Ddsv5Series Ddsv5_series- Azure
Vm Family Dasv5Series Dasv5_series- Azure
Vm Family Dadsv5Series Dadsv5_series- Azure
Vm Family Ev5Series Ev5_series- Azure
Vm Family Esv5Series Esv5_series- Azure
Vm Family Edv5Series Edv5_series- Azure
Vm Family Edsv5Series Edsv5_series- Azure
Vm Family Easv5Series Easv5_series- Azure
Vm Family Eadsv5Series Eadsv5_series- Azure
Vm Family Ebsv5Series Ebsv5_series- Azure
Vm Family Ebdsv5Series Ebdsv5_series
- Unknown
Unknown- Basic
A0A4 Basic_A0_A4- Standard
A0A7 Standard_A0_A7- Standard
A8A11 Standard_A8_A11- Av2Series
Av2_series- DSeries
D_series- Dv2Series
Dv2_series- DSSeries
DS_series- DSv2Series
DSv2_series- FSeries
F_series- Fs
Series Fs_series- GSeries
G_series- GSSeries
GS_series- HSeries
H_series- Ls
Series Ls_series- Dsv3Series
Dsv3_series- Dv3Series
Dv3_series- Fsv2Series
Fsv2_series- Ev3Series
Ev3_series- Esv3Series
Esv3_series- MSeries
M_series- DCSeries
DC_Series- Lsv2Series
Lsv2_series- Ev4Series
Ev4_series- Esv4Series
Esv4_series- Edv4Series
Edv4_series- Edsv4Series
Edsv4_series- Dv4Series
Dv4_series- Dsv4Series
Dsv4_series- Ddv4Series
Ddv4_series- Ddsv4Series
Ddsv4_series- Easv4Series
Easv4_series- Dasv4Series
Dasv4_series- Mv2Series
Mv2_series- Eav4Series
Eav4_series- Dav4Series
Dav4_series- Msv2Series
Msv2_series- Mdsv2Series
Mdsv2_series- Dv5Series
Dv5_series- Dsv5Series
Dsv5_series- Ddv5Series
Ddv5_series- Ddsv5Series
Ddsv5_series- Dasv5Series
Dasv5_series- Dadsv5Series
Dadsv5_series- Ev5Series
Ev5_series- Esv5Series
Esv5_series- Edv5Series
Edv5_series- Edsv5Series
Edsv5_series- Easv5Series
Easv5_series- Eadsv5Series
Eadsv5_series- Ebsv5Series
Ebsv5_series- Ebdsv5Series
Ebdsv5_series
- Unknown
Unknown- Basic
A0A4 Basic_A0_A4- Standard
A0A7 Standard_A0_A7- Standard
A8A11 Standard_A8_A11- Av2Series
Av2_series- DSeries
D_series- Dv2Series
Dv2_series- DSSeries
DS_series- DSv2Series
DSv2_series- FSeries
F_series- Fs
Series Fs_series- GSeries
G_series- GSSeries
GS_series- HSeries
H_series- Ls
Series Ls_series- Dsv3Series
Dsv3_series- Dv3Series
Dv3_series- Fsv2Series
Fsv2_series- Ev3Series
Ev3_series- Esv3Series
Esv3_series- MSeries
M_series- DCSeries
DC_Series- Lsv2Series
Lsv2_series- Ev4Series
Ev4_series- Esv4Series
Esv4_series- Edv4Series
Edv4_series- Edsv4Series
Edsv4_series- Dv4Series
Dv4_series- Dsv4Series
Dsv4_series- Ddv4Series
Ddv4_series- Ddsv4Series
Ddsv4_series- Easv4Series
Easv4_series- Dasv4Series
Dasv4_series- Mv2Series
Mv2_series- Eav4Series
Eav4_series- Dav4Series
Dav4_series- Msv2Series
Msv2_series- Mdsv2Series
Mdsv2_series- Dv5Series
Dv5_series- Dsv5Series
Dsv5_series- Ddv5Series
Ddv5_series- Ddsv5Series
Ddsv5_series- Dasv5Series
Dasv5_series- Dadsv5Series
Dadsv5_series- Ev5Series
Ev5_series- Esv5Series
Esv5_series- Edv5Series
Edv5_series- Edsv5Series
Edsv5_series- Easv5Series
Easv5_series- Eadsv5Series
Eadsv5_series- Ebsv5Series
Ebsv5_series- Ebdsv5Series
Ebdsv5_series
- UNKNOWN
Unknown- BASIC_A0_A4
Basic_A0_A4- STANDARD_A0_A7
Standard_A0_A7- STANDARD_A8_A11
Standard_A8_A11- AV2_SERIES
Av2_series- D_SERIES
D_series- DV2_SERIES
Dv2_series- DS_SERIES
DS_series- D_SV2_SERIES
DSv2_series- F_SERIES
F_series- FS_SERIES
Fs_series- G_SERIES
G_series- GS_SERIES
GS_series- H_SERIES
H_series- LS_SERIES
Ls_series- DSV3_SERIES
Dsv3_series- DV3_SERIES
Dv3_series- FSV2_SERIES
Fsv2_series- EV3_SERIES
Ev3_series- ESV3_SERIES
Esv3_series- M_SERIES
M_series- DC_SERIES
DC_Series- LSV2_SERIES
Lsv2_series- EV4_SERIES
Ev4_series- ESV4_SERIES
Esv4_series- EDV4_SERIES
Edv4_series- EDSV4_SERIES
Edsv4_series- DV4_SERIES
Dv4_series- DSV4_SERIES
Dsv4_series- DDV4_SERIES
Ddv4_series- DDSV4_SERIES
Ddsv4_series- EASV4_SERIES
Easv4_series- DASV4_SERIES
Dasv4_series- MV2_SERIES
Mv2_series- EAV4_SERIES
Eav4_series- DAV4_SERIES
Dav4_series- MSV2_SERIES
Msv2_series- MDSV2_SERIES
Mdsv2_series- DV5_SERIES
Dv5_series- DSV5_SERIES
Dsv5_series- DDV5_SERIES
Ddv5_series- DDSV5_SERIES
Ddsv5_series- DASV5_SERIES
Dasv5_series- DADSV5_SERIES
Dadsv5_series- EV5_SERIES
Ev5_series- ESV5_SERIES
Esv5_series- EDV5_SERIES
Edv5_series- EDSV5_SERIES
Edsv5_series- EASV5_SERIES
Easv5_series- EADSV5_SERIES
Eadsv5_series- EBSV5_SERIES
Ebsv5_series- EBDSV5_SERIES
Ebdsv5_series
- "Unknown"
Unknown- "Basic_A0_A4"
Basic_A0_A4- "Standard_A0_A7"
Standard_A0_A7- "Standard_A8_A11"
Standard_A8_A11- "Av2_
series" Av2_series- "D_
series" D_series- "Dv2_
series" Dv2_series- "DS_
series" DS_series- "DSv2_
series" DSv2_series- "F_
series" F_series- "Fs_
series" Fs_series- "G_
series" G_series- "GS_
series" GS_series- "H_
series" H_series- "Ls_
series" Ls_series- "Dsv3_
series" Dsv3_series- "Dv3_
series" Dv3_series- "Fsv2_
series" Fsv2_series- "Ev3_
series" Ev3_series- "Esv3_
series" Esv3_series- "M_
series" M_series- "DC_Series"
DC_Series- "Lsv2_
series" Lsv2_series- "Ev4_
series" Ev4_series- "Esv4_
series" Esv4_series- "Edv4_
series" Edv4_series- "Edsv4_
series" Edsv4_series- "Dv4_
series" Dv4_series- "Dsv4_
series" Dsv4_series- "Ddv4_
series" Ddv4_series- "Ddsv4_
series" Ddsv4_series- "Easv4_
series" Easv4_series- "Dasv4_
series" Dasv4_series- "Mv2_
series" Mv2_series- "Eav4_
series" Eav4_series- "Dav4_
series" Dav4_series- "Msv2_
series" Msv2_series- "Mdsv2_
series" Mdsv2_series- "Dv5_
series" Dv5_series- "Dsv5_
series" Dsv5_series- "Ddv5_
series" Ddv5_series- "Ddsv5_
series" Ddsv5_series- "Dasv5_
series" Dasv5_series- "Dadsv5_
series" Dadsv5_series- "Ev5_
series" Ev5_series- "Esv5_
series" Esv5_series- "Edv5_
series" Edv5_series- "Edsv5_
series" Edsv5_series- "Easv5_
series" Easv5_series- "Eadsv5_
series" Eadsv5_series- "Ebsv5_
series" Ebsv5_series- "Ebdsv5_
series" Ebdsv5_series
ComputeTier, ComputeTierArgs
- Unknown
Unknown- Automatic
Automatic- Provisioned
Provisioned- Serverless
Serverless
- Compute
Tier Unknown Unknown- Compute
Tier Automatic Automatic- Compute
Tier Provisioned Provisioned- Compute
Tier Serverless Serverless
- Unknown
Unknown- Automatic
Automatic- Provisioned
Provisioned- Serverless
Serverless
- Unknown
Unknown- Automatic
Automatic- Provisioned
Provisioned- Serverless
Serverless
- UNKNOWN
Unknown- AUTOMATIC
Automatic- PROVISIONED
Provisioned- SERVERLESS
Serverless
- "Unknown"
Unknown- "Automatic"
Automatic- "Provisioned"
Provisioned- "Serverless"
Serverless
EntityUptime, EntityUptimeArgs
Entity Uptime.- Days
Per intMonth - Gets the days per month.
- Hours
Per intDay - Gets the hours per day.
- Days
Per intMonth - Gets the days per month.
- Hours
Per intDay - Gets the hours per day.
- days
Per IntegerMonth - Gets the days per month.
- hours
Per IntegerDay - Gets the hours per day.
- days
Per numberMonth - Gets the days per month.
- hours
Per numberDay - Gets the hours per day.
- days_
per_ intmonth - Gets the days per month.
- hours_
per_ intday - Gets the hours per day.
- days
Per NumberMonth - Gets the days per month.
- hours
Per NumberDay - Gets the hours per day.
EntityUptimeResponse, EntityUptimeResponseArgs
Entity Uptime.- Days
Per intMonth - Gets the days per month.
- Hours
Per intDay - Gets the hours per day.
- Days
Per intMonth - Gets the days per month.
- Hours
Per intDay - Gets the hours per day.
- days
Per IntegerMonth - Gets the days per month.
- hours
Per IntegerDay - Gets the hours per day.
- days
Per numberMonth - Gets the days per month.
- hours
Per numberDay - Gets the hours per day.
- days_
per_ intmonth - Gets the days per month.
- hours_
per_ intday - Gets the hours per day.
- days
Per NumberMonth - Gets the days per month.
- hours
Per NumberDay - Gets the hours per day.
EnvironmentType, EnvironmentTypeArgs
- Production
Production- Test
Test
- Environment
Type Production Production- Environment
Type Test Test
- Production
Production- Test
Test
- Production
Production- Test
Test
- PRODUCTION
Production- TEST
Test
- "Production"
Production- "Test"
Test
GroupType, GroupTypeArgs
- Default
Default- Import
Import
- Group
Type Default Default- Group
Type Import Import
- Default
Default- Import
Import
- Default
Default- Import
Import
- DEFAULT
Default- IMPORT_
Import
- "Default"
Default- "Import"
Import
MultiSubnetIntent, MultiSubnetIntentArgs
- None
None- High
Availability HighAvailability- Disaster
Recovery DisasterRecovery
- Multi
Subnet Intent None None- Multi
Subnet Intent High Availability HighAvailability- Multi
Subnet Intent Disaster Recovery DisasterRecovery
- None
None- High
Availability HighAvailability- Disaster
Recovery DisasterRecovery
- None
None- High
Availability HighAvailability- Disaster
Recovery DisasterRecovery
- NONE
None- HIGH_AVAILABILITY
HighAvailability- DISASTER_RECOVERY
DisasterRecovery
- "None"
None- "High
Availability" HighAvailability- "Disaster
Recovery" DisasterRecovery
OptimizationLogic, OptimizationLogicArgs
- Minimize
Cost MinimizeCost- Modernize
To Paa S ModernizeToPaaS- Modernize
To Azure Sql Mi ModernizeToAzureSqlMi- Modernize
To Azure Sql Db ModernizeToAzureSqlDb
- Optimization
Logic Minimize Cost MinimizeCost- Optimization
Logic Modernize To Paa S ModernizeToPaaS- Optimization
Logic Modernize To Azure Sql Mi ModernizeToAzureSqlMi- Optimization
Logic Modernize To Azure Sql Db ModernizeToAzureSqlDb
- Minimize
Cost MinimizeCost- Modernize
To Paa S ModernizeToPaaS- Modernize
To Azure Sql Mi ModernizeToAzureSqlMi- Modernize
To Azure Sql Db ModernizeToAzureSqlDb
- Minimize
Cost MinimizeCost- Modernize
To Paa S ModernizeToPaaS- Modernize
To Azure Sql Mi ModernizeToAzureSqlMi- Modernize
To Azure Sql Db ModernizeToAzureSqlDb
- MINIMIZE_COST
MinimizeCost- MODERNIZE_TO_PAA_S
ModernizeToPaaS- MODERNIZE_TO_AZURE_SQL_MI
ModernizeToAzureSqlMi- MODERNIZE_TO_AZURE_SQL_DB
ModernizeToAzureSqlDb
- "Minimize
Cost" MinimizeCost- "Modernize
To Paa S" ModernizeToPaaS- "Modernize
To Azure Sql Mi" ModernizeToAzureSqlMi- "Modernize
To Azure Sql Db" ModernizeToAzureSqlDb
OsLicense, OsLicenseArgs
- Unknown
Unknown- Yes
Yes- No
No
- Os
License Unknown Unknown- Os
License Yes Yes- Os
License No No
- Unknown
Unknown- Yes
Yes- No
No
- Unknown
Unknown- Yes
Yes- No
No
- UNKNOWN
Unknown- YES
Yes- NO
No
- "Unknown"
Unknown- "Yes"
Yes- "No"
No
Percentile, PercentileArgs
- Percentile50
Percentile50Percentile 50.- Percentile90
Percentile90Percentile 90.- Percentile95
Percentile95Percentile 95.- Percentile99
Percentile99Percentile 99.
- Percentile
Percentile50 Percentile50Percentile 50.- Percentile
Percentile90 Percentile90Percentile 90.- Percentile
Percentile95 Percentile95Percentile 95.- Percentile
Percentile99 Percentile99Percentile 99.
- Percentile50
Percentile50Percentile 50.- Percentile90
Percentile90Percentile 90.- Percentile95
Percentile95Percentile 95.- Percentile99
Percentile99Percentile 99.
- Percentile50
Percentile50Percentile 50.- Percentile90
Percentile90Percentile 90.- Percentile95
Percentile95Percentile 95.- Percentile99
Percentile99Percentile 99.
- PERCENTILE50
Percentile50Percentile 50.- PERCENTILE90
Percentile90Percentile 90.- PERCENTILE95
Percentile95Percentile 95.- PERCENTILE99
Percentile99Percentile 99.
- "Percentile50"
Percentile50Percentile 50.- "Percentile90"
Percentile90Percentile 90.- "Percentile95"
Percentile95Percentile 95.- "Percentile99"
Percentile99Percentile 99.
ProvisioningState, ProvisioningStateArgs
- Succeeded
SucceededResource has been created.- Failed
FailedResource creation failed.- Canceled
CanceledResource creation was canceled.- Provisioning
ProvisioningResource is being Provisioned.- Updating
UpdatingResource is being Updated.- Deleting
DeletingResource is being Deleted.- Accepted
AcceptedResource is being Accepted.
- Provisioning
State Succeeded SucceededResource has been created.- Provisioning
State Failed FailedResource creation failed.- Provisioning
State Canceled CanceledResource creation was canceled.- Provisioning
State Provisioning ProvisioningResource is being Provisioned.- Provisioning
State Updating UpdatingResource is being Updated.- Provisioning
State Deleting DeletingResource is being Deleted.- Provisioning
State Accepted AcceptedResource is being Accepted.
- Succeeded
SucceededResource has been created.- Failed
FailedResource creation failed.- Canceled
CanceledResource creation was canceled.- Provisioning
ProvisioningResource is being Provisioned.- Updating
UpdatingResource is being Updated.- Deleting
DeletingResource is being Deleted.- Accepted
AcceptedResource is being Accepted.
- Succeeded
SucceededResource has been created.- Failed
FailedResource creation failed.- Canceled
CanceledResource creation was canceled.- Provisioning
ProvisioningResource is being Provisioned.- Updating
UpdatingResource is being Updated.- Deleting
DeletingResource is being Deleted.- Accepted
AcceptedResource is being Accepted.
- SUCCEEDED
SucceededResource has been created.- FAILED
FailedResource creation failed.- CANCELED
CanceledResource creation was canceled.- PROVISIONING
ProvisioningResource is being Provisioned.- UPDATING
UpdatingResource is being Updated.- DELETING
DeletingResource is being Deleted.- ACCEPTED
AcceptedResource is being Accepted.
- "Succeeded"
SucceededResource has been created.- "Failed"
FailedResource creation failed.- "Canceled"
CanceledResource creation was canceled.- "Provisioning"
ProvisioningResource is being Provisioned.- "Updating"
UpdatingResource is being Updated.- "Deleting"
DeletingResource is being Deleted.- "Accepted"
AcceptedResource is being Accepted.
SqlDbSettings, SqlDbSettingsArgs
SQL database assessment settings.- Azure
Sql string | Pulumi.Compute Tier Azure Native. Migrate. Compute Tier - Gets or sets the azure SQL compute tier.
- Azure
Sql string | Pulumi.Data Base Type Azure Native. Migrate. Azure Sql Data Base Type - Gets or sets the azure PAAS SQL instance type.
- Azure
Sql string | Pulumi.Purchase Model Azure Native. Migrate. Azure Sql Purchase Model - Gets or sets the azure SQL purchase model.
- Azure
Sql string | Pulumi.Service Tier Azure Native. Migrate. Azure Sql Service Tier - Gets or sets the azure SQL service tier.
- Azure
Sql string | ComputeCompute Tier Tier - Gets or sets the azure SQL compute tier.
- Azure
Sql string | AzureData Base Type Sql Data Base Type - Gets or sets the azure PAAS SQL instance type.
- Azure
Sql string | AzurePurchase Model Sql Purchase Model - Gets or sets the azure SQL purchase model.
- Azure
Sql string | AzureService Tier Sql Service Tier - Gets or sets the azure SQL service tier.
- azure
Sql String | ComputeCompute Tier Tier - Gets or sets the azure SQL compute tier.
- azure
Sql String | AzureData Base Type Sql Data Base Type - Gets or sets the azure PAAS SQL instance type.
- azure
Sql String | AzurePurchase Model Sql Purchase Model - Gets or sets the azure SQL purchase model.
- azure
Sql String | AzureService Tier Sql Service Tier - Gets or sets the azure SQL service tier.
- azure
Sql string | ComputeCompute Tier Tier - Gets or sets the azure SQL compute tier.
- azure
Sql string | AzureData Base Type Sql Data Base Type - Gets or sets the azure PAAS SQL instance type.
- azure
Sql string | AzurePurchase Model Sql Purchase Model - Gets or sets the azure SQL purchase model.
- azure
Sql string | AzureService Tier Sql Service Tier - Gets or sets the azure SQL service tier.
- azure_
sql_ str | Computecompute_ tier Tier - Gets or sets the azure SQL compute tier.
- azure_
sql_ str | Azuredata_ base_ type Sql Data Base Type - Gets or sets the azure PAAS SQL instance type.
- azure_
sql_ str | Azurepurchase_ model Sql Purchase Model - Gets or sets the azure SQL purchase model.
- azure_
sql_ str | Azureservice_ tier Sql Service Tier - Gets or sets the azure SQL service tier.
- azure
Sql String | "Unknown" | "Automatic" | "Provisioned" | "Serverless"Compute Tier - Gets or sets the azure SQL compute tier.
- azure
Sql String | "Unknown" | "Automatic" | "SingleData Base Type Database" | "Elastic Pool" - Gets or sets the azure PAAS SQL instance type.
- azure
Sql String | "Unknown" | "VCore" | "DTU"Purchase Model - Gets or sets the azure SQL purchase model.
- azure
Sql String | "Unknown" | "Automatic" | "GeneralService Tier Purpose" | "Business Critical" | "Hyper Scale" - Gets or sets the azure SQL service tier.
SqlDbSettingsResponse, SqlDbSettingsResponseArgs
SQL database assessment settings.- Azure
Sql stringCompute Tier - Gets or sets the azure SQL compute tier.
- Azure
Sql stringData Base Type - Gets or sets the azure PAAS SQL instance type.
- Azure
Sql stringPurchase Model - Gets or sets the azure SQL purchase model.
- Azure
Sql stringService Tier - Gets or sets the azure SQL service tier.
- Azure
Sql stringCompute Tier - Gets or sets the azure SQL compute tier.
- Azure
Sql stringData Base Type - Gets or sets the azure PAAS SQL instance type.
- Azure
Sql stringPurchase Model - Gets or sets the azure SQL purchase model.
- Azure
Sql stringService Tier - Gets or sets the azure SQL service tier.
- azure
Sql StringCompute Tier - Gets or sets the azure SQL compute tier.
- azure
Sql StringData Base Type - Gets or sets the azure PAAS SQL instance type.
- azure
Sql StringPurchase Model - Gets or sets the azure SQL purchase model.
- azure
Sql StringService Tier - Gets or sets the azure SQL service tier.
- azure
Sql stringCompute Tier - Gets or sets the azure SQL compute tier.
- azure
Sql stringData Base Type - Gets or sets the azure PAAS SQL instance type.
- azure
Sql stringPurchase Model - Gets or sets the azure SQL purchase model.
- azure
Sql stringService Tier - Gets or sets the azure SQL service tier.
- azure_
sql_ strcompute_ tier - Gets or sets the azure SQL compute tier.
- azure_
sql_ strdata_ base_ type - Gets or sets the azure PAAS SQL instance type.
- azure_
sql_ strpurchase_ model - Gets or sets the azure SQL purchase model.
- azure_
sql_ strservice_ tier - Gets or sets the azure SQL service tier.
- azure
Sql StringCompute Tier - Gets or sets the azure SQL compute tier.
- azure
Sql StringData Base Type - Gets or sets the azure PAAS SQL instance type.
- azure
Sql StringPurchase Model - Gets or sets the azure SQL purchase model.
- azure
Sql StringService Tier - Gets or sets the azure SQL service tier.
SqlMiSettings, SqlMiSettingsArgs
SQL managed instance assessment settings.- Azure
Sql string | Pulumi.Instance Type Azure Native. Migrate. Azure Sql Instance Type - Gets or sets the azure PAAS SQL instance type.
- Azure
Sql string | Pulumi.Service Tier Azure Native. Migrate. Azure Sql Service Tier - Gets or sets the azure SQL service tier.
- Azure
Sql string | AzureInstance Type Sql Instance Type - Gets or sets the azure PAAS SQL instance type.
- Azure
Sql string | AzureService Tier Sql Service Tier - Gets or sets the azure SQL service tier.
- azure
Sql String | AzureInstance Type Sql Instance Type - Gets or sets the azure PAAS SQL instance type.
- azure
Sql String | AzureService Tier Sql Service Tier - Gets or sets the azure SQL service tier.
- azure
Sql string | AzureInstance Type Sql Instance Type - Gets or sets the azure PAAS SQL instance type.
- azure
Sql string | AzureService Tier Sql Service Tier - Gets or sets the azure SQL service tier.
- azure_
sql_ str | Azureinstance_ type Sql Instance Type - Gets or sets the azure PAAS SQL instance type.
- azure_
sql_ str | Azureservice_ tier Sql Service Tier - Gets or sets the azure SQL service tier.
- azure
Sql String | "Unknown" | "Automatic" | "SingleInstance Type Instance" | "Instance Pools" - Gets or sets the azure PAAS SQL instance type.
- azure
Sql String | "Unknown" | "Automatic" | "GeneralService Tier Purpose" | "Business Critical" | "Hyper Scale" - Gets or sets the azure SQL service tier.
SqlMiSettingsResponse, SqlMiSettingsResponseArgs
SQL managed instance assessment settings.- Azure
Sql stringInstance Type - Gets or sets the azure PAAS SQL instance type.
- Azure
Sql stringService Tier - Gets or sets the azure SQL service tier.
- Azure
Sql stringInstance Type - Gets or sets the azure PAAS SQL instance type.
- Azure
Sql stringService Tier - Gets or sets the azure SQL service tier.
- azure
Sql StringInstance Type - Gets or sets the azure PAAS SQL instance type.
- azure
Sql StringService Tier - Gets or sets the azure SQL service tier.
- azure
Sql stringInstance Type - Gets or sets the azure PAAS SQL instance type.
- azure
Sql stringService Tier - Gets or sets the azure SQL service tier.
- azure_
sql_ strinstance_ type - Gets or sets the azure PAAS SQL instance type.
- azure_
sql_ strservice_ tier - Gets or sets the azure SQL service tier.
- azure
Sql StringInstance Type - Gets or sets the azure PAAS SQL instance type.
- azure
Sql StringService Tier - Gets or sets the azure SQL service tier.
SqlServerLicense, SqlServerLicenseArgs
- Unknown
Unknown- Yes
Yes- No
No
- Sql
Server License Unknown Unknown- Sql
Server License Yes Yes- Sql
Server License No No
- Unknown
Unknown- Yes
Yes- No
No
- Unknown
Unknown- Yes
Yes- No
No
- UNKNOWN
Unknown- YES
Yes- NO
No
- "Unknown"
Unknown- "Yes"
Yes- "No"
No
SqlVmSettings, SqlVmSettingsArgs
SQL VM assessment settings.- Instance
Series List<Union<string, Pulumi.Azure Native. Migrate. Azure Vm Family>> - Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
- Instance
Series []string - Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
- instance
Series List<Either<String,AzureVm Family>> - Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
- instance
Series (string | AzureVm Family)[] - Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
- instance_
series Sequence[Union[str, AzureVm Family]] - Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
- instance
Series 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.- Instance
Series List<string> - Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
- Instance
Series []string - Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
- instance
Series List<String> - Gets or sets the Azure VM families (calling instance series to keep it consistent with other targets).
- instance
Series 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).
- instance
Series 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.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
TimeRange, TimeRangeArgs
- Day
DayDaily.- Week
WeekWeekly.- Month
MonthMonthly.- Custom
CustomCustom Time Range.
- Time
Range Day DayDaily.- Time
Range Week WeekWeekly.- Time
Range Month MonthMonthly.- Time
Range Custom CustomCustom Time Range.
- Day
DayDaily.- Week
WeekWeekly.- Month
MonthMonthly.- Custom
CustomCustom Time Range.
- Day
DayDaily.- Week
WeekWeekly.- Month
MonthMonthly.- Custom
CustomCustom Time Range.
- DAY
DayDaily.- WEEK
WeekWeekly.- MONTH
MonthMonthly.- CUSTOM
CustomCustom Time Range.
- "Day"
DayDaily.- "Week"
WeekWeekly.- "Month"
MonthMonthly.- "Custom"
CustomCustom Time Range.
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-v2 pulumi/pulumi-azure-native
- License
- Apache-2.0
