azure-native.migrate.AvsAssessmentsOperation
Explore with Pulumi AI
AVS assessment resource.
Uses Azure REST API version 2024-01-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-03-15.
Other available API versions: 2023-03-15, 2023-04-01-preview, 2023-05-01-preview, 2023-09-09-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native migrate [ApiVersion]
. See the version guide for details.
Example Usage
AvsAssessmentsOperations_Create_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var avsAssessmentsOperation = new AzureNative.Migrate.AvsAssessmentsOperation("avsAssessmentsOperation", new()
{
AssessmentName = "asm2",
AvsAssessmentScenario = AzureNative.Migrate.AvsAssessmentScenario.NewAvsSddc,
AzureLocation = AzureNative.Migrate.AzureLocation.EastUs,
AzureOfferCode = AzureNative.Migrate.AzureOfferCode.Msazr0003P,
CpuHeadroom = 12,
Currency = AzureNative.Migrate.AzureCurrency.USD,
DedupeCompression = 1.5,
DiscountPercentage = 0,
ExternalStorageTypes = new[]
{
AzureNative.Migrate.ExternalStorageType.AnfStandard,
AzureNative.Migrate.ExternalStorageType.AnfPremium,
AzureNative.Migrate.ExternalStorageType.AnfUltra,
},
FailuresToTolerateAndRaidLevel = AzureNative.Migrate.FttAndRaidLevel.Unknown,
FailuresToTolerateAndRaidLevelList = new[]
{
AzureNative.Migrate.FttAndRaidLevel.Ftt1Raid1,
AzureNative.Migrate.FttAndRaidLevel.Ftt1Raid5,
AzureNative.Migrate.FttAndRaidLevel.Ftt3Raid1,
},
GroupName = "kuchatur-test",
IsStretchClusterEnabled = true,
IsVcfByolEnabled = true,
MemOvercommit = 1,
NodeType = AzureNative.Migrate.AzureAvsNodeType.Unknown,
NodeTypes = new[]
{
AzureNative.Migrate.AzureAvsNodeType.AV36,
AzureNative.Migrate.AzureAvsNodeType.AV52,
AzureNative.Migrate.AzureAvsNodeType.AV36P,
AzureNative.Migrate.AzureAvsNodeType.AV64,
},
Percentile = AzureNative.Migrate.Percentile.Percentile95,
PerfDataEndTime = "2023-09-26T13:35:56.5671462Z",
PerfDataStartTime = "2023-09-25T13:35:56.5671462Z",
ProjectName = "app18700project",
ProvisioningState = AzureNative.Migrate.ProvisioningState.Succeeded,
ReservedInstance = AzureNative.Migrate.AzureReservedInstance.RI3Year,
ResourceGroupName = "ayagrawrg",
ScalingFactor = 1,
SizingCriterion = AzureNative.Migrate.AssessmentSizingCriterion.AsOnPremises,
TimeRange = AzureNative.Migrate.TimeRange.Day,
VcpuOversubscription = 4,
});
});
package main
import (
migrate "github.com/pulumi/pulumi-azure-native-sdk/migrate/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := migrate.NewAvsAssessmentsOperation(ctx, "avsAssessmentsOperation", &migrate.AvsAssessmentsOperationArgs{
AssessmentName: pulumi.String("asm2"),
AvsAssessmentScenario: pulumi.String(migrate.AvsAssessmentScenarioNewAvsSddc),
AzureLocation: pulumi.String(migrate.AzureLocationEastUs),
AzureOfferCode: pulumi.String(migrate.AzureOfferCodeMsazr0003P),
CpuHeadroom: pulumi.Float64(12),
Currency: pulumi.String(migrate.AzureCurrencyUSD),
DedupeCompression: pulumi.Float64(1.5),
DiscountPercentage: pulumi.Float64(0),
ExternalStorageTypes: pulumi.StringArray{
pulumi.String(migrate.ExternalStorageTypeAnfStandard),
pulumi.String(migrate.ExternalStorageTypeAnfPremium),
pulumi.String(migrate.ExternalStorageTypeAnfUltra),
},
FailuresToTolerateAndRaidLevel: pulumi.String(migrate.FttAndRaidLevelUnknown),
FailuresToTolerateAndRaidLevelList: pulumi.StringArray{
pulumi.String(migrate.FttAndRaidLevelFtt1Raid1),
pulumi.String(migrate.FttAndRaidLevelFtt1Raid5),
pulumi.String(migrate.FttAndRaidLevelFtt3Raid1),
},
GroupName: pulumi.String("kuchatur-test"),
IsStretchClusterEnabled: pulumi.Bool(true),
IsVcfByolEnabled: pulumi.Bool(true),
MemOvercommit: pulumi.Float64(1),
NodeType: pulumi.String(migrate.AzureAvsNodeTypeUnknown),
NodeTypes: pulumi.StringArray{
pulumi.String(migrate.AzureAvsNodeTypeAV36),
pulumi.String(migrate.AzureAvsNodeTypeAV52),
pulumi.String(migrate.AzureAvsNodeTypeAV36P),
pulumi.String(migrate.AzureAvsNodeTypeAV64),
},
Percentile: pulumi.String(migrate.PercentilePercentile95),
PerfDataEndTime: pulumi.String("2023-09-26T13:35:56.5671462Z"),
PerfDataStartTime: pulumi.String("2023-09-25T13:35:56.5671462Z"),
ProjectName: pulumi.String("app18700project"),
ProvisioningState: pulumi.String(migrate.ProvisioningStateSucceeded),
ReservedInstance: pulumi.String(migrate.AzureReservedInstanceRI3Year),
ResourceGroupName: pulumi.String("ayagrawrg"),
ScalingFactor: pulumi.Float64(1),
SizingCriterion: pulumi.String(migrate.AssessmentSizingCriterionAsOnPremises),
TimeRange: pulumi.String(migrate.TimeRangeDay),
VcpuOversubscription: pulumi.Float64(4),
})
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.AvsAssessmentsOperation;
import com.pulumi.azurenative.migrate.AvsAssessmentsOperationArgs;
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 avsAssessmentsOperation = new AvsAssessmentsOperation("avsAssessmentsOperation", AvsAssessmentsOperationArgs.builder()
.assessmentName("asm2")
.avsAssessmentScenario("NewAvsSddc")
.azureLocation("EastUs")
.azureOfferCode("MSAZR0003P")
.cpuHeadroom(12.0)
.currency("USD")
.dedupeCompression(1.5)
.discountPercentage(0.0)
.externalStorageTypes(
"AnfStandard",
"AnfPremium",
"AnfUltra")
.failuresToTolerateAndRaidLevel("Unknown")
.failuresToTolerateAndRaidLevelList(
"Ftt1Raid1",
"Ftt1Raid5",
"Ftt3Raid1")
.groupName("kuchatur-test")
.isStretchClusterEnabled(true)
.isVcfByolEnabled(true)
.memOvercommit(1.0)
.nodeType("Unknown")
.nodeTypes(
"AV36",
"AV52",
"AV36P",
"AV64")
.percentile("Percentile95")
.perfDataEndTime("2023-09-26T13:35:56.5671462Z")
.perfDataStartTime("2023-09-25T13:35:56.5671462Z")
.projectName("app18700project")
.provisioningState("Succeeded")
.reservedInstance("RI3Year")
.resourceGroupName("ayagrawrg")
.scalingFactor(1.0)
.sizingCriterion("AsOnPremises")
.timeRange("Day")
.vcpuOversubscription(4.0)
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const avsAssessmentsOperation = new azure_native.migrate.AvsAssessmentsOperation("avsAssessmentsOperation", {
assessmentName: "asm2",
avsAssessmentScenario: azure_native.migrate.AvsAssessmentScenario.NewAvsSddc,
azureLocation: azure_native.migrate.AzureLocation.EastUs,
azureOfferCode: azure_native.migrate.AzureOfferCode.Msazr0003P,
cpuHeadroom: 12,
currency: azure_native.migrate.AzureCurrency.USD,
dedupeCompression: 1.5,
discountPercentage: 0,
externalStorageTypes: [
azure_native.migrate.ExternalStorageType.AnfStandard,
azure_native.migrate.ExternalStorageType.AnfPremium,
azure_native.migrate.ExternalStorageType.AnfUltra,
],
failuresToTolerateAndRaidLevel: azure_native.migrate.FttAndRaidLevel.Unknown,
failuresToTolerateAndRaidLevelList: [
azure_native.migrate.FttAndRaidLevel.Ftt1Raid1,
azure_native.migrate.FttAndRaidLevel.Ftt1Raid5,
azure_native.migrate.FttAndRaidLevel.Ftt3Raid1,
],
groupName: "kuchatur-test",
isStretchClusterEnabled: true,
isVcfByolEnabled: true,
memOvercommit: 1,
nodeType: azure_native.migrate.AzureAvsNodeType.Unknown,
nodeTypes: [
azure_native.migrate.AzureAvsNodeType.AV36,
azure_native.migrate.AzureAvsNodeType.AV52,
azure_native.migrate.AzureAvsNodeType.AV36P,
azure_native.migrate.AzureAvsNodeType.AV64,
],
percentile: azure_native.migrate.Percentile.Percentile95,
perfDataEndTime: "2023-09-26T13:35:56.5671462Z",
perfDataStartTime: "2023-09-25T13:35:56.5671462Z",
projectName: "app18700project",
provisioningState: azure_native.migrate.ProvisioningState.Succeeded,
reservedInstance: azure_native.migrate.AzureReservedInstance.RI3Year,
resourceGroupName: "ayagrawrg",
scalingFactor: 1,
sizingCriterion: azure_native.migrate.AssessmentSizingCriterion.AsOnPremises,
timeRange: azure_native.migrate.TimeRange.Day,
vcpuOversubscription: 4,
});
import pulumi
import pulumi_azure_native as azure_native
avs_assessments_operation = azure_native.migrate.AvsAssessmentsOperation("avsAssessmentsOperation",
assessment_name="asm2",
avs_assessment_scenario=azure_native.migrate.AvsAssessmentScenario.NEW_AVS_SDDC,
azure_location=azure_native.migrate.AzureLocation.EAST_US,
azure_offer_code=azure_native.migrate.AzureOfferCode.MSAZR0003_P,
cpu_headroom=12,
currency=azure_native.migrate.AzureCurrency.USD,
dedupe_compression=1.5,
discount_percentage=0,
external_storage_types=[
azure_native.migrate.ExternalStorageType.ANF_STANDARD,
azure_native.migrate.ExternalStorageType.ANF_PREMIUM,
azure_native.migrate.ExternalStorageType.ANF_ULTRA,
],
failures_to_tolerate_and_raid_level=azure_native.migrate.FttAndRaidLevel.UNKNOWN,
failures_to_tolerate_and_raid_level_list=[
azure_native.migrate.FttAndRaidLevel.FTT1_RAID1,
azure_native.migrate.FttAndRaidLevel.FTT1_RAID5,
azure_native.migrate.FttAndRaidLevel.FTT3_RAID1,
],
group_name="kuchatur-test",
is_stretch_cluster_enabled=True,
is_vcf_byol_enabled=True,
mem_overcommit=1,
node_type=azure_native.migrate.AzureAvsNodeType.UNKNOWN,
node_types=[
azure_native.migrate.AzureAvsNodeType.AV36,
azure_native.migrate.AzureAvsNodeType.AV52,
azure_native.migrate.AzureAvsNodeType.AV36_P,
azure_native.migrate.AzureAvsNodeType.AV64,
],
percentile=azure_native.migrate.Percentile.PERCENTILE95,
perf_data_end_time="2023-09-26T13:35:56.5671462Z",
perf_data_start_time="2023-09-25T13:35:56.5671462Z",
project_name="app18700project",
provisioning_state=azure_native.migrate.ProvisioningState.SUCCEEDED,
reserved_instance=azure_native.migrate.AzureReservedInstance.RI3_YEAR,
resource_group_name="ayagrawrg",
scaling_factor=1,
sizing_criterion=azure_native.migrate.AssessmentSizingCriterion.AS_ON_PREMISES,
time_range=azure_native.migrate.TimeRange.DAY,
vcpu_oversubscription=4)
resources:
avsAssessmentsOperation:
type: azure-native:migrate:AvsAssessmentsOperation
properties:
assessmentName: asm2
avsAssessmentScenario: NewAvsSddc
azureLocation: EastUs
azureOfferCode: MSAZR0003P
cpuHeadroom: 12
currency: USD
dedupeCompression: 1.5
discountPercentage: 0
externalStorageTypes:
- AnfStandard
- AnfPremium
- AnfUltra
failuresToTolerateAndRaidLevel: Unknown
failuresToTolerateAndRaidLevelList:
- Ftt1Raid1
- Ftt1Raid5
- Ftt3Raid1
groupName: kuchatur-test
isStretchClusterEnabled: true
isVcfByolEnabled: true
memOvercommit: 1
nodeType: Unknown
nodeTypes:
- AV36
- AV52
- AV36P
- AV64
percentile: Percentile95
perfDataEndTime: 2023-09-26T13:35:56.5671462Z
perfDataStartTime: 2023-09-25T13:35:56.5671462Z
projectName: app18700project
provisioningState: Succeeded
reservedInstance: RI3Year
resourceGroupName: ayagrawrg
scalingFactor: 1
sizingCriterion: AsOnPremises
timeRange: Day
vcpuOversubscription: 4
Create AvsAssessmentsOperation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AvsAssessmentsOperation(name: string, args: AvsAssessmentsOperationArgs, opts?: CustomResourceOptions);
@overload
def AvsAssessmentsOperation(resource_name: str,
args: AvsAssessmentsOperationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AvsAssessmentsOperation(resource_name: str,
opts: Optional[ResourceOptions] = None,
group_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
project_name: Optional[str] = None,
mem_overcommit: Optional[float] = None,
node_types: Optional[Sequence[Union[str, AzureAvsNodeType]]] = None,
currency: Optional[Union[str, AzureCurrency]] = None,
dedupe_compression: Optional[float] = None,
discount_percentage: Optional[float] = None,
external_storage_types: Optional[Sequence[Union[str, ExternalStorageType]]] = None,
failures_to_tolerate_and_raid_level: Optional[Union[str, FttAndRaidLevel]] = None,
failures_to_tolerate_and_raid_level_list: Optional[Sequence[Union[str, FttAndRaidLevel]]] = None,
azure_offer_code: Optional[Union[str, AzureOfferCode]] = None,
is_stretch_cluster_enabled: Optional[bool] = None,
is_vcf_byol_enabled: Optional[bool] = None,
assessment_name: Optional[str] = None,
node_type: Optional[Union[str, AzureAvsNodeType]] = None,
cpu_headroom: Optional[float] = None,
percentile: Optional[Union[str, Percentile]] = None,
perf_data_end_time: Optional[str] = None,
perf_data_start_time: Optional[str] = None,
azure_location: Optional[Union[str, AzureLocation]] = None,
provisioning_state: Optional[Union[str, ProvisioningState]] = None,
reserved_instance: Optional[Union[str, AzureReservedInstance]] = None,
avs_assessment_scenario: Optional[Union[str, AvsAssessmentScenario]] = None,
scaling_factor: Optional[float] = None,
sizing_criterion: Optional[Union[str, AssessmentSizingCriterion]] = None,
time_range: Optional[Union[str, TimeRange]] = None,
vcpu_oversubscription: Optional[float] = None)
func NewAvsAssessmentsOperation(ctx *Context, name string, args AvsAssessmentsOperationArgs, opts ...ResourceOption) (*AvsAssessmentsOperation, error)
public AvsAssessmentsOperation(string name, AvsAssessmentsOperationArgs args, CustomResourceOptions? opts = null)
public AvsAssessmentsOperation(String name, AvsAssessmentsOperationArgs args)
public AvsAssessmentsOperation(String name, AvsAssessmentsOperationArgs args, CustomResourceOptions options)
type: azure-native:migrate:AvsAssessmentsOperation
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 AvsAssessmentsOperationArgs
- 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 AvsAssessmentsOperationArgs
- 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 AvsAssessmentsOperationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AvsAssessmentsOperationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AvsAssessmentsOperationArgs
- 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 avsAssessmentsOperationResource = new AzureNative.Migrate.AvsAssessmentsOperation("avsAssessmentsOperationResource", new()
{
GroupName = "string",
ResourceGroupName = "string",
ProjectName = "string",
MemOvercommit = 0,
NodeTypes = new[]
{
"string",
},
Currency = "string",
DedupeCompression = 0,
DiscountPercentage = 0,
ExternalStorageTypes = new[]
{
"string",
},
FailuresToTolerateAndRaidLevel = "string",
FailuresToTolerateAndRaidLevelList = new[]
{
"string",
},
AzureOfferCode = "string",
IsStretchClusterEnabled = false,
IsVcfByolEnabled = false,
AssessmentName = "string",
NodeType = "string",
CpuHeadroom = 0,
Percentile = "string",
PerfDataEndTime = "string",
PerfDataStartTime = "string",
AzureLocation = "string",
ProvisioningState = "string",
ReservedInstance = "string",
AvsAssessmentScenario = "string",
ScalingFactor = 0,
SizingCriterion = "string",
TimeRange = "string",
VcpuOversubscription = 0,
});
example, err := migrate.NewAvsAssessmentsOperation(ctx, "avsAssessmentsOperationResource", &migrate.AvsAssessmentsOperationArgs{
GroupName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ProjectName: pulumi.String("string"),
MemOvercommit: pulumi.Float64(0),
NodeTypes: pulumi.StringArray{
pulumi.String("string"),
},
Currency: pulumi.String("string"),
DedupeCompression: pulumi.Float64(0),
DiscountPercentage: pulumi.Float64(0),
ExternalStorageTypes: pulumi.StringArray{
pulumi.String("string"),
},
FailuresToTolerateAndRaidLevel: pulumi.String("string"),
FailuresToTolerateAndRaidLevelList: pulumi.StringArray{
pulumi.String("string"),
},
AzureOfferCode: pulumi.String("string"),
IsStretchClusterEnabled: pulumi.Bool(false),
IsVcfByolEnabled: pulumi.Bool(false),
AssessmentName: pulumi.String("string"),
NodeType: pulumi.String("string"),
CpuHeadroom: pulumi.Float64(0),
Percentile: pulumi.String("string"),
PerfDataEndTime: pulumi.String("string"),
PerfDataStartTime: pulumi.String("string"),
AzureLocation: pulumi.String("string"),
ProvisioningState: pulumi.String("string"),
ReservedInstance: pulumi.String("string"),
AvsAssessmentScenario: pulumi.String("string"),
ScalingFactor: pulumi.Float64(0),
SizingCriterion: pulumi.String("string"),
TimeRange: pulumi.String("string"),
VcpuOversubscription: pulumi.Float64(0),
})
var avsAssessmentsOperationResource = new AvsAssessmentsOperation("avsAssessmentsOperationResource", AvsAssessmentsOperationArgs.builder()
.groupName("string")
.resourceGroupName("string")
.projectName("string")
.memOvercommit(0)
.nodeTypes("string")
.currency("string")
.dedupeCompression(0)
.discountPercentage(0)
.externalStorageTypes("string")
.failuresToTolerateAndRaidLevel("string")
.failuresToTolerateAndRaidLevelList("string")
.azureOfferCode("string")
.isStretchClusterEnabled(false)
.isVcfByolEnabled(false)
.assessmentName("string")
.nodeType("string")
.cpuHeadroom(0)
.percentile("string")
.perfDataEndTime("string")
.perfDataStartTime("string")
.azureLocation("string")
.provisioningState("string")
.reservedInstance("string")
.avsAssessmentScenario("string")
.scalingFactor(0)
.sizingCriterion("string")
.timeRange("string")
.vcpuOversubscription(0)
.build());
avs_assessments_operation_resource = azure_native.migrate.AvsAssessmentsOperation("avsAssessmentsOperationResource",
group_name="string",
resource_group_name="string",
project_name="string",
mem_overcommit=0,
node_types=["string"],
currency="string",
dedupe_compression=0,
discount_percentage=0,
external_storage_types=["string"],
failures_to_tolerate_and_raid_level="string",
failures_to_tolerate_and_raid_level_list=["string"],
azure_offer_code="string",
is_stretch_cluster_enabled=False,
is_vcf_byol_enabled=False,
assessment_name="string",
node_type="string",
cpu_headroom=0,
percentile="string",
perf_data_end_time="string",
perf_data_start_time="string",
azure_location="string",
provisioning_state="string",
reserved_instance="string",
avs_assessment_scenario="string",
scaling_factor=0,
sizing_criterion="string",
time_range="string",
vcpu_oversubscription=0)
const avsAssessmentsOperationResource = new azure_native.migrate.AvsAssessmentsOperation("avsAssessmentsOperationResource", {
groupName: "string",
resourceGroupName: "string",
projectName: "string",
memOvercommit: 0,
nodeTypes: ["string"],
currency: "string",
dedupeCompression: 0,
discountPercentage: 0,
externalStorageTypes: ["string"],
failuresToTolerateAndRaidLevel: "string",
failuresToTolerateAndRaidLevelList: ["string"],
azureOfferCode: "string",
isStretchClusterEnabled: false,
isVcfByolEnabled: false,
assessmentName: "string",
nodeType: "string",
cpuHeadroom: 0,
percentile: "string",
perfDataEndTime: "string",
perfDataStartTime: "string",
azureLocation: "string",
provisioningState: "string",
reservedInstance: "string",
avsAssessmentScenario: "string",
scalingFactor: 0,
sizingCriterion: "string",
timeRange: "string",
vcpuOversubscription: 0,
});
type: azure-native:migrate:AvsAssessmentsOperation
properties:
assessmentName: string
avsAssessmentScenario: string
azureLocation: string
azureOfferCode: string
cpuHeadroom: 0
currency: string
dedupeCompression: 0
discountPercentage: 0
externalStorageTypes:
- string
failuresToTolerateAndRaidLevel: string
failuresToTolerateAndRaidLevelList:
- string
groupName: string
isStretchClusterEnabled: false
isVcfByolEnabled: false
memOvercommit: 0
nodeType: string
nodeTypes:
- string
percentile: string
perfDataEndTime: string
perfDataStartTime: string
projectName: string
provisioningState: string
reservedInstance: string
resourceGroupName: string
scalingFactor: 0
sizingCriterion: string
timeRange: string
vcpuOversubscription: 0
AvsAssessmentsOperation 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 AvsAssessmentsOperation 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 - AVS Assessment ARM name
- Avs
Assessment string | Pulumi.Scenario Azure Native. Migrate. Avs Assessment Scenario - AVS Assessment Scenario.
- Azure
Location string | Pulumi.Azure Native. Migrate. Azure Location - 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 according to which cost estimation is done.
- Cpu
Headroom double - Percentage of CPU capacity reserved for processing additional workloads.
- Currency
string | Pulumi.
Azure Native. Migrate. Azure Currency - Currency in which prices should be reported.
- Dedupe
Compression double - De-duplication compression.
- Discount
Percentage double - Custom discount percentage.
- External
Storage List<Union<string, Pulumi.Types Azure Native. Migrate. External Storage Type>> - List of AVS external storage types.
- Failures
To string | Pulumi.Tolerate And Raid Level Azure Native. Migrate. Ftt And Raid Level - Failures to tolerate and RAID level in a common property.
- Failures
To List<Union<string, Pulumi.Tolerate And Raid Level List Azure Native. Migrate. Ftt And Raid Level>> - List of Failures to tolerate and RAID levels in a common property.
- Is
Stretch boolCluster Enabled - Is Stretch Cluster Enabled.
- Is
Vcf boolByol Enabled - Is VCF license applied
- Mem
Overcommit double - Memory overcommit.
- Node
Type string | Pulumi.Azure Native. Migrate. Azure Avs Node Type - AVS node type.
- Node
Types List<Union<string, Pulumi.Azure Native. Migrate. Azure Avs Node Type>> - AVS node types.
- 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.
- 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.
- Time
Range string | Pulumi.Azure Native. Migrate. Time Range - Time Range for which the historic utilization data should be considered for assessment.
- Vcpu
Oversubscription double - VCPU over subscription.
- 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 - AVS Assessment ARM name
- Avs
Assessment string | AvsScenario Assessment Scenario - AVS Assessment Scenario.
- Azure
Location string | AzureLocation - Azure Location or Azure region where to which the machines will be migrated.
- Azure
Offer string | AzureCode Offer Code - Azure Offer code according to which cost estimation is done.
- Cpu
Headroom float64 - Percentage of CPU capacity reserved for processing additional workloads.
- Currency
string | Azure
Currency - Currency in which prices should be reported.
- Dedupe
Compression float64 - De-duplication compression.
- Discount
Percentage float64 - Custom discount percentage.
- External
Storage []stringTypes - List of AVS external storage types.
- Failures
To string | FttTolerate And Raid Level And Raid Level - Failures to tolerate and RAID level in a common property.
- Failures
To []stringTolerate And Raid Level List - List of Failures to tolerate and RAID levels in a common property.
- Is
Stretch boolCluster Enabled - Is Stretch Cluster Enabled.
- Is
Vcf boolByol Enabled - Is VCF license applied
- Mem
Overcommit float64 - Memory overcommit.
- Node
Type string | AzureAvs Node Type - AVS node type.
- Node
Types []string - AVS node types.
- 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.
- Scaling
Factor float64 - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- Sizing
Criterion string | AssessmentSizing Criterion - Assessment sizing criterion.
- Time
Range string | TimeRange - Time Range for which the historic utilization data should be considered for assessment.
- Vcpu
Oversubscription float64 - VCPU over subscription.
- 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 - AVS Assessment ARM name
- avs
Assessment String | AvsScenario Assessment Scenario - AVS Assessment Scenario.
- azure
Location String | AzureLocation - Azure Location or Azure region where to which the machines will be migrated.
- azure
Offer String | AzureCode Offer Code - Azure Offer code according to which cost estimation is done.
- cpu
Headroom Double - Percentage of CPU capacity reserved for processing additional workloads.
- currency
String | Azure
Currency - Currency in which prices should be reported.
- dedupe
Compression Double - De-duplication compression.
- discount
Percentage Double - Custom discount percentage.
- external
Storage List<Either<String,ExternalTypes Storage Type>> - List of AVS external storage types.
- failures
To String | FttTolerate And Raid Level And Raid Level - Failures to tolerate and RAID level in a common property.
- failures
To List<Either<String,FttTolerate And Raid Level List And Raid Level>> - List of Failures to tolerate and RAID levels in a common property.
- is
Stretch BooleanCluster Enabled - Is Stretch Cluster Enabled.
- is
Vcf BooleanByol Enabled - Is VCF license applied
- mem
Overcommit Double - Memory overcommit.
- node
Type String | AzureAvs Node Type - AVS node type.
- node
Types List<Either<String,AzureAvs Node Type>> - AVS node types.
- 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.
- scaling
Factor Double - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing
Criterion String | AssessmentSizing Criterion - Assessment sizing criterion.
- time
Range String | TimeRange - Time Range for which the historic utilization data should be considered for assessment.
- vcpu
Oversubscription Double - VCPU over subscription.
- 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 - AVS Assessment ARM name
- avs
Assessment string | AvsScenario Assessment Scenario - AVS Assessment Scenario.
- azure
Location string | AzureLocation - Azure Location or Azure region where to which the machines will be migrated.
- azure
Offer string | AzureCode Offer Code - Azure Offer code according to which cost estimation is done.
- cpu
Headroom number - Percentage of CPU capacity reserved for processing additional workloads.
- currency
string | Azure
Currency - Currency in which prices should be reported.
- dedupe
Compression number - De-duplication compression.
- discount
Percentage number - Custom discount percentage.
- external
Storage (string | ExternalTypes Storage Type)[] - List of AVS external storage types.
- failures
To string | FttTolerate And Raid Level And Raid Level - Failures to tolerate and RAID level in a common property.
- failures
To (string | FttTolerate And Raid Level List And Raid Level)[] - List of Failures to tolerate and RAID levels in a common property.
- is
Stretch booleanCluster Enabled - Is Stretch Cluster Enabled.
- is
Vcf booleanByol Enabled - Is VCF license applied
- mem
Overcommit number - Memory overcommit.
- node
Type string | AzureAvs Node Type - AVS node type.
- node
Types (string | AzureAvs Node Type)[] - AVS node types.
- 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.
- scaling
Factor number - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing
Criterion string | AssessmentSizing Criterion - Assessment sizing criterion.
- time
Range string | TimeRange - Time Range for which the historic utilization data should be considered for assessment.
- vcpu
Oversubscription number - VCPU over subscription.
- 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 - AVS Assessment ARM name
- avs_
assessment_ str | Avsscenario Assessment Scenario - AVS Assessment Scenario.
- azure_
location str | AzureLocation - Azure Location or Azure region where to which the machines will be migrated.
- azure_
offer_ str | Azurecode Offer Code - Azure Offer code according to which cost estimation is done.
- cpu_
headroom float - Percentage of CPU capacity reserved for processing additional workloads.
- currency
str | Azure
Currency - Currency in which prices should be reported.
- dedupe_
compression float - De-duplication compression.
- discount_
percentage float - Custom discount percentage.
- external_
storage_ Sequence[Union[str, Externaltypes Storage Type]] - List of AVS external storage types.
- failures_
to_ str | Ftttolerate_ and_ raid_ level And Raid Level - Failures to tolerate and RAID level in a common property.
- failures_
to_ Sequence[Union[str, Ftttolerate_ and_ raid_ level_ list And Raid Level]] - List of Failures to tolerate and RAID levels in a common property.
- is_
stretch_ boolcluster_ enabled - Is Stretch Cluster Enabled.
- is_
vcf_ boolbyol_ enabled - Is VCF license applied
- mem_
overcommit float - Memory overcommit.
- node_
type str | AzureAvs Node Type - AVS node type.
- node_
types Sequence[Union[str, AzureAvs Node Type]] - AVS node types.
- 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.
- scaling_
factor float - Percentage of buffer that user wants on performance metrics when recommending Azure sizes.
- sizing_
criterion str | AssessmentSizing Criterion - Assessment sizing criterion.
- time_
range str | TimeRange - Time Range for which the historic utilization data should be considered for assessment.
- vcpu_
oversubscription float - VCPU over subscription.
- 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 - AVS Assessment ARM name
- avs
Assessment String | "Unknown" | "NewScenario Avs Sddc" | "Avs Sddc Expansion" - AVS Assessment Scenario.
- azure
Location String | "Unknown" | "EastAsia" | "Southeast Asia" | "Australia East" | "Australia Southeast" | "Brazil South" | "Canada Central" | "Canada East" | "West Europe" | "North Europe" | "Central India" | "South India" | "West India" | "Japan East" | "Japan West" | "Korea Central" | "Korea South" | "Uk West" | "Uk South" | "North Central Us" | "East Us" | "West Us2" | "South Central Us" | "Central Us" | "East Us2" | "West Us" | "West Central Us" | "Germany Central" | "Germany Northeast" | "China North" | "China East" | "USGov Arizona" | "USGov Texas" | "USGov Iowa" | "USGov Virginia" | "USDo DCentral" | "USDo DEast" | "France Central" | "Australia Central" | "South Africa North" | "France South" | "Australia Central2" | "South Africa West" | "Germany North" | "Germany West Central" | "Norway East" | "Norway West" | "China East2" | "China North2" | "Switzerland North" | "Switzerland West" | "UAENorth" | "UAECentral" | "Us Nat East" | "Us Nat West" | "Us Sec East" | "Us Sec Central" | "Us Sec West" | "Sweden Central" | "Qatar Central" | "Jio India West" | "Italy North" | "Poland Central" | "Israel Central" | "Mexico Central" | "New Zealand North" | "Spain Central" - 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 according to which cost estimation is done.
- cpu
Headroom Number - Percentage of CPU capacity reserved for processing additional workloads.
- 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.
- dedupe
Compression Number - De-duplication compression.
- discount
Percentage Number - Custom discount percentage.
- external
Storage List<String | "Unknown" | "None" | "AnfTypes Standard" | "Anf Premium" | "Anf Ultra"> - List of AVS external storage types.
- failures
To String | "Unknown" | "Ftt1Raid1" | "Ftt1Raid5" | "Ftt2Raid1" | "Ftt2Raid6" | "Ftt3Raid1"Tolerate And Raid Level - Failures to tolerate and RAID level in a common property.
- failures
To List<String | "Unknown" | "Ftt1Raid1" | "Ftt1Raid5" | "Ftt2Raid1" | "Ftt2Raid6" | "Ftt3Raid1">Tolerate And Raid Level List - List of Failures to tolerate and RAID levels in a common property.
- is
Stretch BooleanCluster Enabled - Is Stretch Cluster Enabled.
- is
Vcf BooleanByol Enabled - Is VCF license applied
- mem
Overcommit Number - Memory overcommit.
- node
Type String | "Unknown" | "AV36" | "AV36P" | "AV52" | "AV64" - AVS node type.
- node
Types List<String | "Unknown" | "AV36" | "AV36P" | "AV52" | "AV64"> - AVS node types.
- percentile
String | "Percentile50" | "Percentile90" | "Percentile95" | "Percentile99" | "Percentile
Unknown" - Percentile of the utilization data values to be considered while assessing machines.
- perf
Data StringEnd Time - Gets or sets the end time to consider performance data for assessment.
- perf
Data StringStart Time - Gets or sets the start time to consider performance data for assessment.
- provisioning
State String | "Succeeded" | "Failed" | "Canceled" | "Provisioning" | "Updating" | "Deleting" | "Accepted" - The status of the last operation.
- reserved
Instance String | "None" | "RI1Year" | "RI3Year" - Reserved instance.
- 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.
- time
Range String | "Day" | "Week" | "Month" | "Custom" - Time Range for which the historic utilization data should be considered for assessment.
- vcpu
Oversubscription Number - VCPU over subscription.
Outputs
All input properties are implicitly available as output properties. Additionally, the AvsAssessmentsOperation resource produces the following output properties:
- Assessment
Error Dictionary<string, int>Summary - Gets the assessment error summary. This is the number of machines affected by each type of error in this assessment.
- Assessment
Type string - Assessment type of the assessment.
- Avs
Estimated List<Pulumi.External Storages Azure Native. Migrate. Outputs. Avs Estimated External Storage Response> - Estimated External Storage for Assessment.
- Avs
Estimated List<Pulumi.Networks Azure Native. Migrate. Outputs. Avs Estimated Network Response> - Estimated External Storage for Assessment.
- Avs
Estimated List<Pulumi.Nodes Azure Native. Migrate. Outputs. Avs Estimated Node Response> - Estimated AVS SKU for Assessment.
- Azure
Api stringVersion - The Azure API version of the resource.
- Confidence
Rating doubleIn Percentage - Confidence Rating in Percentage.
- Cost
Components List<Pulumi.Azure Native. Migrate. Outputs. Cost Component Response> - collection of cost components.
- Cpu
Utilization double - Predicted CPU utilization.
- Created
Timestamp string - Date and Time when assessment was created.
- Group
Type string - Gets the group type for the assessment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Limiting
Factor string - Limiting factor.
- Name string
- The name of the resource
- Number
Of intMachines - Number of machines part of the assessment.
- Number
Of intNodes - Recommended number of nodes.
- Prices
Timestamp string - Time when the Azure Prices were queried. Date-Time represented in ISO-8601 format.
- Ram
Utilization double - Predicted RAM utilization.
- 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.
- Storage
Utilization double - Predicted storage utilization.
- Suitability string
- Gets or sets the Assessment cloud suitability.
- Suitability
Explanation string - Gets or sets the Assessment suitability explanation.
- Suitability
Summary Dictionary<string, int> - Cloud suitability summary for all the machines in the assessment.
- System
Data Pulumi.Azure Native. Migrate. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Total
Cpu doubleCores - Predicted total CPU cores used.
- Total
Monthly doubleCost - Total monthly cost.
- Total
Ram doubleIn GB - Predicted total RAM used in GB.
- Total
Storage doubleIn GB - Predicted total Storage used in GB.
- 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.
- Assessment
Error map[string]intSummary - Gets the assessment error summary. This is the number of machines affected by each type of error in this assessment.
- Assessment
Type string - Assessment type of the assessment.
- Avs
Estimated []AvsExternal Storages Estimated External Storage Response - Estimated External Storage for Assessment.
- Avs
Estimated []AvsNetworks Estimated Network Response - Estimated External Storage for Assessment.
- Avs
Estimated []AvsNodes Estimated Node Response - Estimated AVS SKU for Assessment.
- Azure
Api stringVersion - The Azure API version of the resource.
- Confidence
Rating float64In Percentage - Confidence Rating in Percentage.
- Cost
Components []CostComponent Response - collection of cost components.
- Cpu
Utilization float64 - Predicted CPU utilization.
- Created
Timestamp string - Date and Time when assessment was created.
- Group
Type string - Gets the group type for the assessment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Limiting
Factor string - Limiting factor.
- Name string
- The name of the resource
- Number
Of intMachines - Number of machines part of the assessment.
- Number
Of intNodes - Recommended number of nodes.
- Prices
Timestamp string - Time when the Azure Prices were queried. Date-Time represented in ISO-8601 format.
- Ram
Utilization float64 - Predicted RAM utilization.
- 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.
- Storage
Utilization float64 - Predicted storage utilization.
- Suitability string
- Gets or sets the Assessment cloud suitability.
- Suitability
Explanation string - Gets or sets the Assessment suitability explanation.
- Suitability
Summary map[string]int - Cloud suitability summary for all the machines in the assessment.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Total
Cpu float64Cores - Predicted total CPU cores used.
- Total
Monthly float64Cost - Total monthly cost.
- Total
Ram float64In GB - Predicted total RAM used in GB.
- Total
Storage float64In GB - Predicted total Storage used in GB.
- 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.
- assessment
Error Map<String,Integer>Summary - Gets the assessment error summary. This is the number of machines affected by each type of error in this assessment.
- assessment
Type String - Assessment type of the assessment.
- avs
Estimated List<AvsExternal Storages Estimated External Storage Response> - Estimated External Storage for Assessment.
- avs
Estimated List<AvsNetworks Estimated Network Response> - Estimated External Storage for Assessment.
- avs
Estimated List<AvsNodes Estimated Node Response> - Estimated AVS SKU for Assessment.
- azure
Api StringVersion - The Azure API version of the resource.
- confidence
Rating DoubleIn Percentage - Confidence Rating in Percentage.
- cost
Components List<CostComponent Response> - collection of cost components.
- cpu
Utilization Double - Predicted CPU utilization.
- created
Timestamp String - Date and Time when assessment was created.
- group
Type String - Gets the group type for the assessment.
- id String
- The provider-assigned unique ID for this managed resource.
- limiting
Factor String - Limiting factor.
- name String
- The name of the resource
- number
Of IntegerMachines - Number of machines part of the assessment.
- number
Of IntegerNodes - Recommended number of nodes.
- prices
Timestamp String - Time when the Azure Prices were queried. Date-Time represented in ISO-8601 format.
- ram
Utilization Double - Predicted RAM utilization.
- 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.
- storage
Utilization Double - Predicted storage utilization.
- suitability String
- Gets or sets the Assessment cloud suitability.
- suitability
Explanation String - Gets or sets the Assessment suitability explanation.
- suitability
Summary Map<String,Integer> - Cloud suitability summary for all the machines in the assessment.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total
Cpu DoubleCores - Predicted total CPU cores used.
- total
Monthly DoubleCost - Total monthly cost.
- total
Ram DoubleIn GB - Predicted total RAM used in GB.
- total
Storage DoubleIn GB - Predicted total Storage used in GB.
- 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.
- assessment
Error {[key: string]: number}Summary - Gets the assessment error summary. This is the number of machines affected by each type of error in this assessment.
- assessment
Type string - Assessment type of the assessment.
- avs
Estimated AvsExternal Storages Estimated External Storage Response[] - Estimated External Storage for Assessment.
- avs
Estimated AvsNetworks Estimated Network Response[] - Estimated External Storage for Assessment.
- avs
Estimated AvsNodes Estimated Node Response[] - Estimated AVS SKU for Assessment.
- azure
Api stringVersion - The Azure API version of the resource.
- confidence
Rating numberIn Percentage - Confidence Rating in Percentage.
- cost
Components CostComponent Response[] - collection of cost components.
- cpu
Utilization number - Predicted CPU utilization.
- created
Timestamp string - Date and Time when assessment was created.
- group
Type string - Gets the group type for the assessment.
- id string
- The provider-assigned unique ID for this managed resource.
- limiting
Factor string - Limiting factor.
- name string
- The name of the resource
- number
Of numberMachines - Number of machines part of the assessment.
- number
Of numberNodes - Recommended number of nodes.
- prices
Timestamp string - Time when the Azure Prices were queried. Date-Time represented in ISO-8601 format.
- ram
Utilization number - Predicted RAM utilization.
- 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.
- storage
Utilization number - Predicted storage utilization.
- suitability string
- Gets or sets the Assessment cloud suitability.
- suitability
Explanation string - Gets or sets the Assessment suitability explanation.
- suitability
Summary {[key: string]: number} - Cloud suitability summary for all the machines in the assessment.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total
Cpu numberCores - Predicted total CPU cores used.
- total
Monthly numberCost - Total monthly cost.
- total
Ram numberIn GB - Predicted total RAM used in GB.
- total
Storage numberIn GB - Predicted total Storage used in GB.
- 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.
- assessment_
error_ Mapping[str, int]summary - Gets the assessment error summary. This is the number of machines affected by each type of error in this assessment.
- assessment_
type str - Assessment type of the assessment.
- avs_
estimated_ Sequence[Avsexternal_ storages Estimated External Storage Response] - Estimated External Storage for Assessment.
- avs_
estimated_ Sequence[Avsnetworks Estimated Network Response] - Estimated External Storage for Assessment.
- avs_
estimated_ Sequence[Avsnodes Estimated Node Response] - Estimated AVS SKU for Assessment.
- azure_
api_ strversion - The Azure API version of the resource.
- confidence_
rating_ floatin_ percentage - Confidence Rating in Percentage.
- cost_
components Sequence[CostComponent Response] - collection of cost components.
- cpu_
utilization float - Predicted CPU utilization.
- created_
timestamp str - Date and Time when assessment was created.
- group_
type str - Gets the group type for the assessment.
- id str
- The provider-assigned unique ID for this managed resource.
- limiting_
factor str - Limiting factor.
- name str
- The name of the resource
- number_
of_ intmachines - Number of machines part of the assessment.
- number_
of_ intnodes - Recommended number of nodes.
- prices_
timestamp str - Time when the Azure Prices were queried. Date-Time represented in ISO-8601 format.
- ram_
utilization float - Predicted RAM utilization.
- 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.
- storage_
utilization float - Predicted storage utilization.
- suitability str
- Gets or sets the Assessment cloud suitability.
- suitability_
explanation str - Gets or sets the Assessment suitability explanation.
- suitability_
summary Mapping[str, int] - Cloud suitability summary for all the machines in the assessment.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total_
cpu_ floatcores - Predicted total CPU cores used.
- total_
monthly_ floatcost - Total monthly cost.
- total_
ram_ floatin_ gb - Predicted total RAM used in GB.
- total_
storage_ floatin_ gb - Predicted total Storage used in GB.
- 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.
- assessment
Error Map<Number>Summary - Gets the assessment error summary. This is the number of machines affected by each type of error in this assessment.
- assessment
Type String - Assessment type of the assessment.
- avs
Estimated List<Property Map>External Storages - Estimated External Storage for Assessment.
- avs
Estimated List<Property Map>Networks - Estimated External Storage for Assessment.
- avs
Estimated List<Property Map>Nodes - Estimated AVS SKU for Assessment.
- azure
Api StringVersion - The Azure API version of the resource.
- confidence
Rating NumberIn Percentage - Confidence Rating in Percentage.
- cost
Components List<Property Map> - collection of cost components.
- cpu
Utilization Number - Predicted CPU utilization.
- created
Timestamp String - Date and Time when assessment was created.
- group
Type String - Gets the group type for the assessment.
- id String
- The provider-assigned unique ID for this managed resource.
- limiting
Factor String - Limiting factor.
- name String
- The name of the resource
- number
Of NumberMachines - Number of machines part of the assessment.
- number
Of NumberNodes - Recommended number of nodes.
- prices
Timestamp String - Time when the Azure Prices were queried. Date-Time represented in ISO-8601 format.
- ram
Utilization Number - Predicted RAM utilization.
- 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.
- storage
Utilization Number - Predicted storage utilization.
- suitability String
- Gets or sets the Assessment cloud suitability.
- suitability
Explanation String - Gets or sets the Assessment suitability explanation.
- suitability
Summary Map<Number> - Cloud suitability summary for all the machines in the assessment.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total
Cpu NumberCores - Predicted total CPU cores used.
- total
Monthly NumberCost - Total monthly cost.
- total
Ram NumberIn GB - Predicted total RAM used in GB.
- total
Storage NumberIn GB - Predicted total Storage used in GB.
- 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.
AvsAssessmentScenario, AvsAssessmentScenarioArgs
- Unknown
- UnknownUnknown assessment scenario
- New
Avs Sddc - NewAvsSddcCreate Assessment for new Avs Sddc
- Avs
Sddc Expansion - AvsSddcExpansionCreate Assessment for existing Avs Sddc
- Avs
Assessment Scenario Unknown - UnknownUnknown assessment scenario
- Avs
Assessment Scenario New Avs Sddc - NewAvsSddcCreate Assessment for new Avs Sddc
- Avs
Assessment Scenario Avs Sddc Expansion - AvsSddcExpansionCreate Assessment for existing Avs Sddc
- Unknown
- UnknownUnknown assessment scenario
- New
Avs Sddc - NewAvsSddcCreate Assessment for new Avs Sddc
- Avs
Sddc Expansion - AvsSddcExpansionCreate Assessment for existing Avs Sddc
- Unknown
- UnknownUnknown assessment scenario
- New
Avs Sddc - NewAvsSddcCreate Assessment for new Avs Sddc
- Avs
Sddc Expansion - AvsSddcExpansionCreate Assessment for existing Avs Sddc
- UNKNOWN
- UnknownUnknown assessment scenario
- NEW_AVS_SDDC
- NewAvsSddcCreate Assessment for new Avs Sddc
- AVS_SDDC_EXPANSION
- AvsSddcExpansionCreate Assessment for existing Avs Sddc
- "Unknown"
- UnknownUnknown assessment scenario
- "New
Avs Sddc" - NewAvsSddcCreate Assessment for new Avs Sddc
- "Avs
Sddc Expansion" - AvsSddcExpansionCreate Assessment for existing Avs Sddc
AvsEstimatedExternalStorageResponse, AvsEstimatedExternalStorageResponseArgs
- Monthly
Price double - Total monthly cost for type of storage.
- Storage
Type string - Recommended External Storage.
- Storage
Utilization double - Predicted storage utilization.
- Total
Storage doubleIn GB - Predicted total Storage used in GB.
- Monthly
Price float64 - Total monthly cost for type of storage.
- Storage
Type string - Recommended External Storage.
- Storage
Utilization float64 - Predicted storage utilization.
- Total
Storage float64In GB - Predicted total Storage used in GB.
- monthly
Price Double - Total monthly cost for type of storage.
- storage
Type String - Recommended External Storage.
- storage
Utilization Double - Predicted storage utilization.
- total
Storage DoubleIn GB - Predicted total Storage used in GB.
- monthly
Price number - Total monthly cost for type of storage.
- storage
Type string - Recommended External Storage.
- storage
Utilization number - Predicted storage utilization.
- total
Storage numberIn GB - Predicted total Storage used in GB.
- monthly_
price float - Total monthly cost for type of storage.
- storage_
type str - Recommended External Storage.
- storage_
utilization float - Predicted storage utilization.
- total_
storage_ floatin_ gb - Predicted total Storage used in GB.
- monthly
Price Number - Total monthly cost for type of storage.
- storage
Type String - Recommended External Storage.
- storage
Utilization Number - Predicted storage utilization.
- total
Storage NumberIn GB - Predicted total Storage used in GB.
AvsEstimatedNetworkResponse, AvsEstimatedNetworkResponseArgs
- Monthly
Price double - Monthly cost for network type.
- Network
Type string - Recommended Network Sku.
- Monthly
Price float64 - Monthly cost for network type.
- Network
Type string - Recommended Network Sku.
- monthly
Price Double - Monthly cost for network type.
- network
Type String - Recommended Network Sku.
- monthly
Price number - Monthly cost for network type.
- network
Type string - Recommended Network Sku.
- monthly_
price float - Monthly cost for network type.
- network_
type str - Recommended Network Sku.
- monthly
Price Number - Monthly cost for network type.
- network
Type String - Recommended Network Sku.
AvsEstimatedNodeResponse, AvsEstimatedNodeResponseArgs
- Cpu
Utilization double - Predicted CPU utilization.
- Ftt
Raid stringLevel - FttRaidLevel recommended for Node.
- Monthly
Price double - Total monthly cost for type and number of nodes.
- Node
Number int - Number of nodes that will be needed.
- Node
Type string - Recommended SKU.
- Pricing
Model string - Pricing model indicates what hour multiplier to use while estimating the Nodes cost.
- Ram
Utilization double - Predicted RAM utilization.
- Storage
Utilization double - Predicted storage utilization.
- Total
Cpu double - Predicted total CPU cores across the set of nodes.
- Total
Ram double - Predicted total RAM used in GB.
- Total
Storage double - Predicted total Storage used in GB.
- Cpu
Utilization float64 - Predicted CPU utilization.
- Ftt
Raid stringLevel - FttRaidLevel recommended for Node.
- Monthly
Price float64 - Total monthly cost for type and number of nodes.
- Node
Number int - Number of nodes that will be needed.
- Node
Type string - Recommended SKU.
- Pricing
Model string - Pricing model indicates what hour multiplier to use while estimating the Nodes cost.
- Ram
Utilization float64 - Predicted RAM utilization.
- Storage
Utilization float64 - Predicted storage utilization.
- Total
Cpu float64 - Predicted total CPU cores across the set of nodes.
- Total
Ram float64 - Predicted total RAM used in GB.
- Total
Storage float64 - Predicted total Storage used in GB.
- cpu
Utilization Double - Predicted CPU utilization.
- ftt
Raid StringLevel - FttRaidLevel recommended for Node.
- monthly
Price Double - Total monthly cost for type and number of nodes.
- node
Number Integer - Number of nodes that will be needed.
- node
Type String - Recommended SKU.
- pricing
Model String - Pricing model indicates what hour multiplier to use while estimating the Nodes cost.
- ram
Utilization Double - Predicted RAM utilization.
- storage
Utilization Double - Predicted storage utilization.
- total
Cpu Double - Predicted total CPU cores across the set of nodes.
- total
Ram Double - Predicted total RAM used in GB.
- total
Storage Double - Predicted total Storage used in GB.
- cpu
Utilization number - Predicted CPU utilization.
- ftt
Raid stringLevel - FttRaidLevel recommended for Node.
- monthly
Price number - Total monthly cost for type and number of nodes.
- node
Number number - Number of nodes that will be needed.
- node
Type string - Recommended SKU.
- pricing
Model string - Pricing model indicates what hour multiplier to use while estimating the Nodes cost.
- ram
Utilization number - Predicted RAM utilization.
- storage
Utilization number - Predicted storage utilization.
- total
Cpu number - Predicted total CPU cores across the set of nodes.
- total
Ram number - Predicted total RAM used in GB.
- total
Storage number - Predicted total Storage used in GB.
- cpu_
utilization float - Predicted CPU utilization.
- ftt_
raid_ strlevel - FttRaidLevel recommended for Node.
- monthly_
price float - Total monthly cost for type and number of nodes.
- node_
number int - Number of nodes that will be needed.
- node_
type str - Recommended SKU.
- pricing_
model str - Pricing model indicates what hour multiplier to use while estimating the Nodes cost.
- ram_
utilization float - Predicted RAM utilization.
- storage_
utilization float - Predicted storage utilization.
- total_
cpu float - Predicted total CPU cores across the set of nodes.
- total_
ram float - Predicted total RAM used in GB.
- total_
storage float - Predicted total Storage used in GB.
- cpu
Utilization Number - Predicted CPU utilization.
- ftt
Raid StringLevel - FttRaidLevel recommended for Node.
- monthly
Price Number - Total monthly cost for type and number of nodes.
- node
Number Number - Number of nodes that will be needed.
- node
Type String - Recommended SKU.
- pricing
Model String - Pricing model indicates what hour multiplier to use while estimating the Nodes cost.
- ram
Utilization Number - Predicted RAM utilization.
- storage
Utilization Number - Predicted storage utilization.
- total
Cpu Number - Predicted total CPU cores across the set of nodes.
- total
Ram Number - Predicted total RAM used in GB.
- total
Storage Number - Predicted total Storage used in GB.
AzureAvsNodeType, AzureAvsNodeTypeArgs
- Unknown
- UnknownUnknown Node type
- AV36
- AV36AVS36 Node type
- AV36P
- AV36PAV36P Node type
- AV52
- AV52AV52 Node type
- AV64
- AV64AV64 Node type
- Azure
Avs Node Type Unknown - UnknownUnknown Node type
- Azure
Avs Node Type AV36 - AV36AVS36 Node type
- Azure
Avs Node Type AV36P - AV36PAV36P Node type
- Azure
Avs Node Type AV52 - AV52AV52 Node type
- Azure
Avs Node Type AV64 - AV64AV64 Node type
- Unknown
- UnknownUnknown Node type
- AV36
- AV36AVS36 Node type
- AV36P
- AV36PAV36P Node type
- AV52
- AV52AV52 Node type
- AV64
- AV64AV64 Node type
- Unknown
- UnknownUnknown Node type
- AV36
- AV36AVS36 Node type
- AV36P
- AV36PAV36P Node type
- AV52
- AV52AV52 Node type
- AV64
- AV64AV64 Node type
- UNKNOWN
- UnknownUnknown Node type
- AV36
- AV36AVS36 Node type
- AV36_P
- AV36PAV36P Node type
- AV52
- AV52AV52 Node type
- AV64
- AV64AV64 Node type
- "Unknown"
- UnknownUnknown Node type
- "AV36"
- AV36AVS36 Node type
- "AV36P"
- AV36PAV36P Node type
- "AV52"
- AV52AV52 Node type
- "AV64"
- AV64AV64 Node type
AzureCurrency, AzureCurrencyArgs
- Unknown
- UnknownUnknown Currency for Azure
- USD
- USDUSD Currency for Azure
- DKK
- DKKDKK Currency for Azure
- CAD
- CADCAD Currency for Azure
- IDR
- IDRIDR Currency for Azure
- JPY
- JPYJPY Currency for Azure
- KRW
- KRWKRW Currency for Azure
- NZD
- NZDNZD Currency for Azure
- NOK
- NOKNOK Currency for Azure
- RUB
- RUBRUB Currency for Azure
- SAR
- SARSAR Currency for Azure
- ZAR
- ZARZAR Currency for Azure
- SEK
- SEKSEK Currency for Azure
- TRY
- TRYTRY Currency for Azure
- GBP
- GBPGBP Currency for Azure
- MXN
- MXNMXN Currency for Azure
- MYR
- MYRMYR Currency for Azure
- INR
- INRINR Currency for Azure
- HKD
- HKDHKD Currency for Azure
- BRL
- BRLBRL Currency for Azure
- TWD
- TWDTWD Currency for Azure
- EUR
- EUREUR Currency for Azure
- CHF
- CHFCHF Currency for Azure
- ARS
- ARSARS Currency for Azure
- AUD
- AUDAUD Currency for Azure
- CNY
- CNYCNY Currency for Azure
- Azure
Currency Unknown - UnknownUnknown Currency for Azure
- Azure
Currency USD - USDUSD Currency for Azure
- Azure
Currency DKK - DKKDKK Currency for Azure
- Azure
Currency CAD - CADCAD Currency for Azure
- Azure
Currency IDR - IDRIDR Currency for Azure
- Azure
Currency JPY - JPYJPY Currency for Azure
- Azure
Currency KRW - KRWKRW Currency for Azure
- Azure
Currency NZD - NZDNZD Currency for Azure
- Azure
Currency NOK - NOKNOK Currency for Azure
- Azure
Currency RUB - RUBRUB Currency for Azure
- Azure
Currency SAR - SARSAR Currency for Azure
- Azure
Currency ZAR - ZARZAR Currency for Azure
- Azure
Currency SEK - SEKSEK Currency for Azure
- Azure
Currency TRY - TRYTRY Currency for Azure
- Azure
Currency GBP - GBPGBP Currency for Azure
- Azure
Currency MXN - MXNMXN Currency for Azure
- Azure
Currency MYR - MYRMYR Currency for Azure
- Azure
Currency INR - INRINR Currency for Azure
- Azure
Currency HKD - HKDHKD Currency for Azure
- Azure
Currency BRL - BRLBRL Currency for Azure
- Azure
Currency TWD - TWDTWD Currency for Azure
- Azure
Currency EUR - EUREUR Currency for Azure
- Azure
Currency CHF - CHFCHF Currency for Azure
- Azure
Currency ARS - ARSARS Currency for Azure
- Azure
Currency AUD - AUDAUD Currency for Azure
- Azure
Currency CNY - CNYCNY Currency for Azure
- Unknown
- UnknownUnknown Currency for Azure
- USD
- USDUSD Currency for Azure
- DKK
- DKKDKK Currency for Azure
- CAD
- CADCAD Currency for Azure
- IDR
- IDRIDR Currency for Azure
- JPY
- JPYJPY Currency for Azure
- KRW
- KRWKRW Currency for Azure
- NZD
- NZDNZD Currency for Azure
- NOK
- NOKNOK Currency for Azure
- RUB
- RUBRUB Currency for Azure
- SAR
- SARSAR Currency for Azure
- ZAR
- ZARZAR Currency for Azure
- SEK
- SEKSEK Currency for Azure
- TRY
- TRYTRY Currency for Azure
- GBP
- GBPGBP Currency for Azure
- MXN
- MXNMXN Currency for Azure
- MYR
- MYRMYR Currency for Azure
- INR
- INRINR Currency for Azure
- HKD
- HKDHKD Currency for Azure
- BRL
- BRLBRL Currency for Azure
- TWD
- TWDTWD Currency for Azure
- EUR
- EUREUR Currency for Azure
- CHF
- CHFCHF Currency for Azure
- ARS
- ARSARS Currency for Azure
- AUD
- AUDAUD Currency for Azure
- CNY
- CNYCNY Currency for Azure
- Unknown
- UnknownUnknown Currency for Azure
- USD
- USDUSD Currency for Azure
- DKK
- DKKDKK Currency for Azure
- CAD
- CADCAD Currency for Azure
- IDR
- IDRIDR Currency for Azure
- JPY
- JPYJPY Currency for Azure
- KRW
- KRWKRW Currency for Azure
- NZD
- NZDNZD Currency for Azure
- NOK
- NOKNOK Currency for Azure
- RUB
- RUBRUB Currency for Azure
- SAR
- SARSAR Currency for Azure
- ZAR
- ZARZAR Currency for Azure
- SEK
- SEKSEK Currency for Azure
- TRY
- TRYTRY Currency for Azure
- GBP
- GBPGBP Currency for Azure
- MXN
- MXNMXN Currency for Azure
- MYR
- MYRMYR Currency for Azure
- INR
- INRINR Currency for Azure
- HKD
- HKDHKD Currency for Azure
- BRL
- BRLBRL Currency for Azure
- TWD
- TWDTWD Currency for Azure
- EUR
- EUREUR Currency for Azure
- CHF
- CHFCHF Currency for Azure
- ARS
- ARSARS Currency for Azure
- AUD
- AUDAUD Currency for Azure
- CNY
- CNYCNY Currency for Azure
- UNKNOWN
- UnknownUnknown Currency for Azure
- USD
- USDUSD Currency for Azure
- DKK
- DKKDKK Currency for Azure
- CAD
- CADCAD Currency for Azure
- IDR
- IDRIDR Currency for Azure
- JPY
- JPYJPY Currency for Azure
- KRW
- KRWKRW Currency for Azure
- NZD
- NZDNZD Currency for Azure
- NOK
- NOKNOK Currency for Azure
- RUB
- RUBRUB Currency for Azure
- SAR
- SARSAR Currency for Azure
- ZAR
- ZARZAR Currency for Azure
- SEK
- SEKSEK Currency for Azure
- TRY_
- TRYTRY Currency for Azure
- GBP
- GBPGBP Currency for Azure
- MXN
- MXNMXN Currency for Azure
- MYR
- MYRMYR Currency for Azure
- INR
- INRINR Currency for Azure
- HKD
- HKDHKD Currency for Azure
- BRL
- BRLBRL Currency for Azure
- TWD
- TWDTWD Currency for Azure
- EUR
- EUREUR Currency for Azure
- CHF
- CHFCHF Currency for Azure
- ARS
- ARSARS Currency for Azure
- AUD
- AUDAUD Currency for Azure
- CNY
- CNYCNY Currency for Azure
- "Unknown"
- UnknownUnknown Currency for Azure
- "USD"
- USDUSD Currency for Azure
- "DKK"
- DKKDKK Currency for Azure
- "CAD"
- CADCAD Currency for Azure
- "IDR"
- IDRIDR Currency for Azure
- "JPY"
- JPYJPY Currency for Azure
- "KRW"
- KRWKRW Currency for Azure
- "NZD"
- NZDNZD Currency for Azure
- "NOK"
- NOKNOK Currency for Azure
- "RUB"
- RUBRUB Currency for Azure
- "SAR"
- SARSAR Currency for Azure
- "ZAR"
- ZARZAR Currency for Azure
- "SEK"
- SEKSEK Currency for Azure
- "TRY"
- TRYTRY Currency for Azure
- "GBP"
- GBPGBP Currency for Azure
- "MXN"
- MXNMXN Currency for Azure
- "MYR"
- MYRMYR Currency for Azure
- "INR"
- INRINR Currency for Azure
- "HKD"
- HKDHKD Currency for Azure
- "BRL"
- BRLBRL Currency for Azure
- "TWD"
- TWDTWD Currency for Azure
- "EUR"
- EUREUR Currency for Azure
- "CHF"
- CHFCHF Currency for Azure
- "ARS"
- ARSARS Currency for Azure
- "AUD"
- AUDAUD Currency for Azure
- "CNY"
- CNYCNY Currency for Azure
AzureLocation, AzureLocationArgs
- Unknown
- UnknownUnknown Location for Azure
- East
Asia - EastAsiaEastAsia Location for Azure
- Southeast
Asia - SoutheastAsiaSoutheastAsia Location for Azure
- Australia
East - AustraliaEastAustraliaEast Location for Azure
- Australia
Southeast - AustraliaSoutheastAustraliaSoutheast Location for Azure
- Brazil
South - BrazilSouthBrazilSouth Location for Azure
- Canada
Central - CanadaCentralCanadaCentral Location for Azure
- Canada
East - CanadaEastCanadaEast Location for Azure
- West
Europe - WestEuropeWestEurope Location for Azure
- North
Europe - NorthEuropeNorthEurope Location for Azure
- Central
India - CentralIndiaCentralIndia Location for Azure
- South
India - SouthIndiaSouthIndia Location for Azure
- West
India - WestIndiaWestIndia Location for Azure
- Japan
East - JapanEastJapanEast Location for Azure
- Japan
West - JapanWestJapanWest Location for Azure
- Korea
Central - KoreaCentralKoreaCentral Location for Azure
- Korea
South - KoreaSouthKoreaSouth Location for Azure
- Uk
West - UkWestUkWest Location for Azure
- Uk
South - UkSouthUkSouth Location for Azure
- North
Central Us - NorthCentralUsNorthCentralUs Location for Azure
- East
Us - EastUsEastUs Location for Azure
- West
Us2 - WestUs2WestUs2 Location for Azure
- South
Central Us - SouthCentralUsSouthCentralUs Location for Azure
- Central
Us - CentralUsCentralUs Location for Azure
- East
Us2 - EastUs2EastUs2 Location for Azure
- West
Us - WestUsWestUs Location for Azure
- West
Central Us - WestCentralUsWestCentralUs Location for Azure
- Germany
Central - GermanyCentralGermanyCentral Location for Azure
- Germany
Northeast - GermanyNortheastGermanyNortheast Location for Azure
- China
North - ChinaNorthChinaNorth Location for Azure
- China
East - ChinaEastChinaEast Location for Azure
- USGov
Arizona - USGovArizonaUSGovArizona Location for Azure
- USGov
Texas - USGovTexasUSGovTexas Location for Azure
- USGov
Iowa - USGovIowaUSGovIowa Location for Azure
- USGov
Virginia - USGovVirginiaUSGovVirginia Location for Azure
- USDo
DCentral - USDoDCentralUSDoDCentral Location for Azure
- USDo
DEast - USDoDEastUSDoDEast Location for Azure
- France
Central - FranceCentralFranceCentral Location for Azure
- Australia
Central - AustraliaCentralAustraliaCentral Location for Azure
- South
Africa North - SouthAfricaNorthSouthAfricaNorth Location for Azure
- France
South - FranceSouthFranceSouth Location for Azure
- Australia
Central2 - AustraliaCentral2AustraliaCentral2 Location for Azure
- South
Africa West - SouthAfricaWestSouthAfricaWest Location for Azure
- Germany
North - GermanyNorthGermanyNorth Location for Azure
- Germany
West Central - GermanyWestCentralGermanyWestCentral Location for Azure
- Norway
East - NorwayEastNorwayEast Location for Azure
- Norway
West - NorwayWestNorwayWest Location for Azure
- China
East2 - ChinaEast2ChinaEast2 Location for Azure
- China
North2 - ChinaNorth2ChinaNorth2 Location for Azure
- Switzerland
North - SwitzerlandNorthSwitzerlandNorth Location for Azure
- Switzerland
West - SwitzerlandWestSwitzerlandWest Location for Azure
- UAENorth
- UAENorthUAENorth Location for Azure
- UAECentral
- UAECentralUAECentral Location for Azure
- Us
Nat East - UsNatEastUsNatEast Location for Azure
- Us
Nat West - UsNatWestUsNatWest Location for Azure
- Us
Sec East - UsSecEastUsSecEast Location for Azure
- Us
Sec Central - UsSecCentralUsSecCentral Location for Azure
- Us
Sec West - UsSecWestUsSecWest Location for Azure
- Sweden
Central - SwedenCentralSwedenCentral Location for Azure
- Qatar
Central - QatarCentralQatarCentral Location for Azure
- Jio
India West - JioIndiaWestJioIndiaWest Location for Azure
- Italy
North - ItalyNorthItalyNorth Location for Azure
- Poland
Central - PolandCentralPolandCentral Location for Azure
- Israel
Central - IsraelCentralIsraelCentral Location for Azure
- Mexico
Central - MexicoCentralMexicoCentral Location for Azure
- New
Zealand North - NewZealandNorthNewZealandNorth Location for Azure
- Spain
Central - SpainCentralSpainCentral Location for Azure
- Azure
Location Unknown - UnknownUnknown Location for Azure
- Azure
Location East Asia - EastAsiaEastAsia Location for Azure
- Azure
Location Southeast Asia - SoutheastAsiaSoutheastAsia Location for Azure
- Azure
Location Australia East - AustraliaEastAustraliaEast Location for Azure
- Azure
Location Australia Southeast - AustraliaSoutheastAustraliaSoutheast Location for Azure
- Azure
Location Brazil South - BrazilSouthBrazilSouth Location for Azure
- Azure
Location Canada Central - CanadaCentralCanadaCentral Location for Azure
- Azure
Location Canada East - CanadaEastCanadaEast Location for Azure
- Azure
Location West Europe - WestEuropeWestEurope Location for Azure
- Azure
Location North Europe - NorthEuropeNorthEurope Location for Azure
- Azure
Location Central India - CentralIndiaCentralIndia Location for Azure
- Azure
Location South India - SouthIndiaSouthIndia Location for Azure
- Azure
Location West India - WestIndiaWestIndia Location for Azure
- Azure
Location Japan East - JapanEastJapanEast Location for Azure
- Azure
Location Japan West - JapanWestJapanWest Location for Azure
- Azure
Location Korea Central - KoreaCentralKoreaCentral Location for Azure
- Azure
Location Korea South - KoreaSouthKoreaSouth Location for Azure
- Azure
Location Uk West - UkWestUkWest Location for Azure
- Azure
Location Uk South - UkSouthUkSouth Location for Azure
- Azure
Location North Central Us - NorthCentralUsNorthCentralUs Location for Azure
- Azure
Location East Us - EastUsEastUs Location for Azure
- Azure
Location West Us2 - WestUs2WestUs2 Location for Azure
- Azure
Location South Central Us - SouthCentralUsSouthCentralUs Location for Azure
- Azure
Location Central Us - CentralUsCentralUs Location for Azure
- Azure
Location East Us2 - EastUs2EastUs2 Location for Azure
- Azure
Location West Us - WestUsWestUs Location for Azure
- Azure
Location West Central Us - WestCentralUsWestCentralUs Location for Azure
- Azure
Location Germany Central - GermanyCentralGermanyCentral Location for Azure
- Azure
Location Germany Northeast - GermanyNortheastGermanyNortheast Location for Azure
- Azure
Location China North - ChinaNorthChinaNorth Location for Azure
- Azure
Location China East - ChinaEastChinaEast Location for Azure
- Azure
Location USGov Arizona - USGovArizonaUSGovArizona Location for Azure
- Azure
Location USGov Texas - USGovTexasUSGovTexas Location for Azure
- Azure
Location USGov Iowa - USGovIowaUSGovIowa Location for Azure
- Azure
Location USGov Virginia - USGovVirginiaUSGovVirginia Location for Azure
- Azure
Location USDo DCentral - USDoDCentralUSDoDCentral Location for Azure
- Azure
Location USDo DEast - USDoDEastUSDoDEast Location for Azure
- Azure
Location France Central - FranceCentralFranceCentral Location for Azure
- Azure
Location Australia Central - AustraliaCentralAustraliaCentral Location for Azure
- Azure
Location South Africa North - SouthAfricaNorthSouthAfricaNorth Location for Azure
- Azure
Location France South - FranceSouthFranceSouth Location for Azure
- Azure
Location Australia Central2 - AustraliaCentral2AustraliaCentral2 Location for Azure
- Azure
Location South Africa West - SouthAfricaWestSouthAfricaWest Location for Azure
- Azure
Location Germany North - GermanyNorthGermanyNorth Location for Azure
- Azure
Location Germany West Central - GermanyWestCentralGermanyWestCentral Location for Azure
- Azure
Location Norway East - NorwayEastNorwayEast Location for Azure
- Azure
Location Norway West - NorwayWestNorwayWest Location for Azure
- Azure
Location China East2 - ChinaEast2ChinaEast2 Location for Azure
- Azure
Location China North2 - ChinaNorth2ChinaNorth2 Location for Azure
- Azure
Location Switzerland North - SwitzerlandNorthSwitzerlandNorth Location for Azure
- Azure
Location Switzerland West - SwitzerlandWestSwitzerlandWest Location for Azure
- Azure
Location UAENorth - UAENorthUAENorth Location for Azure
- Azure
Location UAECentral - UAECentralUAECentral Location for Azure
- Azure
Location Us Nat East - UsNatEastUsNatEast Location for Azure
- Azure
Location Us Nat West - UsNatWestUsNatWest Location for Azure
- Azure
Location Us Sec East - UsSecEastUsSecEast Location for Azure
- Azure
Location Us Sec Central - UsSecCentralUsSecCentral Location for Azure
- Azure
Location Us Sec West - UsSecWestUsSecWest Location for Azure
- Azure
Location Sweden Central - SwedenCentralSwedenCentral Location for Azure
- Azure
Location Qatar Central - QatarCentralQatarCentral Location for Azure
- Azure
Location Jio India West - JioIndiaWestJioIndiaWest Location for Azure
- Azure
Location Italy North - ItalyNorthItalyNorth Location for Azure
- Azure
Location Poland Central - PolandCentralPolandCentral Location for Azure
- Azure
Location Israel Central - IsraelCentralIsraelCentral Location for Azure
- Azure
Location Mexico Central - MexicoCentralMexicoCentral Location for Azure
- Azure
Location New Zealand North - NewZealandNorthNewZealandNorth Location for Azure
- Azure
Location Spain Central - SpainCentralSpainCentral Location for Azure
- Unknown
- UnknownUnknown Location for Azure
- East
Asia - EastAsiaEastAsia Location for Azure
- Southeast
Asia - SoutheastAsiaSoutheastAsia Location for Azure
- Australia
East - AustraliaEastAustraliaEast Location for Azure
- Australia
Southeast - AustraliaSoutheastAustraliaSoutheast Location for Azure
- Brazil
South - BrazilSouthBrazilSouth Location for Azure
- Canada
Central - CanadaCentralCanadaCentral Location for Azure
- Canada
East - CanadaEastCanadaEast Location for Azure
- West
Europe - WestEuropeWestEurope Location for Azure
- North
Europe - NorthEuropeNorthEurope Location for Azure
- Central
India - CentralIndiaCentralIndia Location for Azure
- South
India - SouthIndiaSouthIndia Location for Azure
- West
India - WestIndiaWestIndia Location for Azure
- Japan
East - JapanEastJapanEast Location for Azure
- Japan
West - JapanWestJapanWest Location for Azure
- Korea
Central - KoreaCentralKoreaCentral Location for Azure
- Korea
South - KoreaSouthKoreaSouth Location for Azure
- Uk
West - UkWestUkWest Location for Azure
- Uk
South - UkSouthUkSouth Location for Azure
- North
Central Us - NorthCentralUsNorthCentralUs Location for Azure
- East
Us - EastUsEastUs Location for Azure
- West
Us2 - WestUs2WestUs2 Location for Azure
- South
Central Us - SouthCentralUsSouthCentralUs Location for Azure
- Central
Us - CentralUsCentralUs Location for Azure
- East
Us2 - EastUs2EastUs2 Location for Azure
- West
Us - WestUsWestUs Location for Azure
- West
Central Us - WestCentralUsWestCentralUs Location for Azure
- Germany
Central - GermanyCentralGermanyCentral Location for Azure
- Germany
Northeast - GermanyNortheastGermanyNortheast Location for Azure
- China
North - ChinaNorthChinaNorth Location for Azure
- China
East - ChinaEastChinaEast Location for Azure
- USGov
Arizona - USGovArizonaUSGovArizona Location for Azure
- USGov
Texas - USGovTexasUSGovTexas Location for Azure
- USGov
Iowa - USGovIowaUSGovIowa Location for Azure
- USGov
Virginia - USGovVirginiaUSGovVirginia Location for Azure
- USDo
DCentral - USDoDCentralUSDoDCentral Location for Azure
- USDo
DEast - USDoDEastUSDoDEast Location for Azure
- France
Central - FranceCentralFranceCentral Location for Azure
- Australia
Central - AustraliaCentralAustraliaCentral Location for Azure
- South
Africa North - SouthAfricaNorthSouthAfricaNorth Location for Azure
- France
South - FranceSouthFranceSouth Location for Azure
- Australia
Central2 - AustraliaCentral2AustraliaCentral2 Location for Azure
- South
Africa West - SouthAfricaWestSouthAfricaWest Location for Azure
- Germany
North - GermanyNorthGermanyNorth Location for Azure
- Germany
West Central - GermanyWestCentralGermanyWestCentral Location for Azure
- Norway
East - NorwayEastNorwayEast Location for Azure
- Norway
West - NorwayWestNorwayWest Location for Azure
- China
East2 - ChinaEast2ChinaEast2 Location for Azure
- China
North2 - ChinaNorth2ChinaNorth2 Location for Azure
- Switzerland
North - SwitzerlandNorthSwitzerlandNorth Location for Azure
- Switzerland
West - SwitzerlandWestSwitzerlandWest Location for Azure
- UAENorth
- UAENorthUAENorth Location for Azure
- UAECentral
- UAECentralUAECentral Location for Azure
- Us
Nat East - UsNatEastUsNatEast Location for Azure
- Us
Nat West - UsNatWestUsNatWest Location for Azure
- Us
Sec East - UsSecEastUsSecEast Location for Azure
- Us
Sec Central - UsSecCentralUsSecCentral Location for Azure
- Us
Sec West - UsSecWestUsSecWest Location for Azure
- Sweden
Central - SwedenCentralSwedenCentral Location for Azure
- Qatar
Central - QatarCentralQatarCentral Location for Azure
- Jio
India West - JioIndiaWestJioIndiaWest Location for Azure
- Italy
North - ItalyNorthItalyNorth Location for Azure
- Poland
Central - PolandCentralPolandCentral Location for Azure
- Israel
Central - IsraelCentralIsraelCentral Location for Azure
- Mexico
Central - MexicoCentralMexicoCentral Location for Azure
- New
Zealand North - NewZealandNorthNewZealandNorth Location for Azure
- Spain
Central - SpainCentralSpainCentral Location for Azure
- Unknown
- UnknownUnknown Location for Azure
- East
Asia - EastAsiaEastAsia Location for Azure
- Southeast
Asia - SoutheastAsiaSoutheastAsia Location for Azure
- Australia
East - AustraliaEastAustraliaEast Location for Azure
- Australia
Southeast - AustraliaSoutheastAustraliaSoutheast Location for Azure
- Brazil
South - BrazilSouthBrazilSouth Location for Azure
- Canada
Central - CanadaCentralCanadaCentral Location for Azure
- Canada
East - CanadaEastCanadaEast Location for Azure
- West
Europe - WestEuropeWestEurope Location for Azure
- North
Europe - NorthEuropeNorthEurope Location for Azure
- Central
India - CentralIndiaCentralIndia Location for Azure
- South
India - SouthIndiaSouthIndia Location for Azure
- West
India - WestIndiaWestIndia Location for Azure
- Japan
East - JapanEastJapanEast Location for Azure
- Japan
West - JapanWestJapanWest Location for Azure
- Korea
Central - KoreaCentralKoreaCentral Location for Azure
- Korea
South - KoreaSouthKoreaSouth Location for Azure
- Uk
West - UkWestUkWest Location for Azure
- Uk
South - UkSouthUkSouth Location for Azure
- North
Central Us - NorthCentralUsNorthCentralUs Location for Azure
- East
Us - EastUsEastUs Location for Azure
- West
Us2 - WestUs2WestUs2 Location for Azure
- South
Central Us - SouthCentralUsSouthCentralUs Location for Azure
- Central
Us - CentralUsCentralUs Location for Azure
- East
Us2 - EastUs2EastUs2 Location for Azure
- West
Us - WestUsWestUs Location for Azure
- West
Central Us - WestCentralUsWestCentralUs Location for Azure
- Germany
Central - GermanyCentralGermanyCentral Location for Azure
- Germany
Northeast - GermanyNortheastGermanyNortheast Location for Azure
- China
North - ChinaNorthChinaNorth Location for Azure
- China
East - ChinaEastChinaEast Location for Azure
- USGov
Arizona - USGovArizonaUSGovArizona Location for Azure
- USGov
Texas - USGovTexasUSGovTexas Location for Azure
- USGov
Iowa - USGovIowaUSGovIowa Location for Azure
- USGov
Virginia - USGovVirginiaUSGovVirginia Location for Azure
- USDo
DCentral - USDoDCentralUSDoDCentral Location for Azure
- USDo
DEast - USDoDEastUSDoDEast Location for Azure
- France
Central - FranceCentralFranceCentral Location for Azure
- Australia
Central - AustraliaCentralAustraliaCentral Location for Azure
- South
Africa North - SouthAfricaNorthSouthAfricaNorth Location for Azure
- France
South - FranceSouthFranceSouth Location for Azure
- Australia
Central2 - AustraliaCentral2AustraliaCentral2 Location for Azure
- South
Africa West - SouthAfricaWestSouthAfricaWest Location for Azure
- Germany
North - GermanyNorthGermanyNorth Location for Azure
- Germany
West Central - GermanyWestCentralGermanyWestCentral Location for Azure
- Norway
East - NorwayEastNorwayEast Location for Azure
- Norway
West - NorwayWestNorwayWest Location for Azure
- China
East2 - ChinaEast2ChinaEast2 Location for Azure
- China
North2 - ChinaNorth2ChinaNorth2 Location for Azure
- Switzerland
North - SwitzerlandNorthSwitzerlandNorth Location for Azure
- Switzerland
West - SwitzerlandWestSwitzerlandWest Location for Azure
- UAENorth
- UAENorthUAENorth Location for Azure
- UAECentral
- UAECentralUAECentral Location for Azure
- Us
Nat East - UsNatEastUsNatEast Location for Azure
- Us
Nat West - UsNatWestUsNatWest Location for Azure
- Us
Sec East - UsSecEastUsSecEast Location for Azure
- Us
Sec Central - UsSecCentralUsSecCentral Location for Azure
- Us
Sec West - UsSecWestUsSecWest Location for Azure
- Sweden
Central - SwedenCentralSwedenCentral Location for Azure
- Qatar
Central - QatarCentralQatarCentral Location for Azure
- Jio
India West - JioIndiaWestJioIndiaWest Location for Azure
- Italy
North - ItalyNorthItalyNorth Location for Azure
- Poland
Central - PolandCentralPolandCentral Location for Azure
- Israel
Central - IsraelCentralIsraelCentral Location for Azure
- Mexico
Central - MexicoCentralMexicoCentral Location for Azure
- New
Zealand North - NewZealandNorthNewZealandNorth Location for Azure
- Spain
Central - SpainCentralSpainCentral Location for Azure
- UNKNOWN
- UnknownUnknown Location for Azure
- EAST_ASIA
- EastAsiaEastAsia Location for Azure
- SOUTHEAST_ASIA
- SoutheastAsiaSoutheastAsia Location for Azure
- AUSTRALIA_EAST
- AustraliaEastAustraliaEast Location for Azure
- AUSTRALIA_SOUTHEAST
- AustraliaSoutheastAustraliaSoutheast Location for Azure
- BRAZIL_SOUTH
- BrazilSouthBrazilSouth Location for Azure
- CANADA_CENTRAL
- CanadaCentralCanadaCentral Location for Azure
- CANADA_EAST
- CanadaEastCanadaEast Location for Azure
- WEST_EUROPE
- WestEuropeWestEurope Location for Azure
- NORTH_EUROPE
- NorthEuropeNorthEurope Location for Azure
- CENTRAL_INDIA
- CentralIndiaCentralIndia Location for Azure
- SOUTH_INDIA
- SouthIndiaSouthIndia Location for Azure
- WEST_INDIA
- WestIndiaWestIndia Location for Azure
- JAPAN_EAST
- JapanEastJapanEast Location for Azure
- JAPAN_WEST
- JapanWestJapanWest Location for Azure
- KOREA_CENTRAL
- KoreaCentralKoreaCentral Location for Azure
- KOREA_SOUTH
- KoreaSouthKoreaSouth Location for Azure
- UK_WEST
- UkWestUkWest Location for Azure
- UK_SOUTH
- UkSouthUkSouth Location for Azure
- NORTH_CENTRAL_US
- NorthCentralUsNorthCentralUs Location for Azure
- EAST_US
- EastUsEastUs Location for Azure
- WEST_US2
- WestUs2WestUs2 Location for Azure
- SOUTH_CENTRAL_US
- SouthCentralUsSouthCentralUs Location for Azure
- CENTRAL_US
- CentralUsCentralUs Location for Azure
- EAST_US2
- EastUs2EastUs2 Location for Azure
- WEST_US
- WestUsWestUs Location for Azure
- WEST_CENTRAL_US
- WestCentralUsWestCentralUs Location for Azure
- GERMANY_CENTRAL
- GermanyCentralGermanyCentral Location for Azure
- GERMANY_NORTHEAST
- GermanyNortheastGermanyNortheast Location for Azure
- CHINA_NORTH
- ChinaNorthChinaNorth Location for Azure
- CHINA_EAST
- ChinaEastChinaEast Location for Azure
- US_GOV_ARIZONA
- USGovArizonaUSGovArizona Location for Azure
- US_GOV_TEXAS
- USGovTexasUSGovTexas Location for Azure
- US_GOV_IOWA
- USGovIowaUSGovIowa Location for Azure
- US_GOV_VIRGINIA
- USGovVirginiaUSGovVirginia Location for Azure
- US_DO_D_CENTRAL
- USDoDCentralUSDoDCentral Location for Azure
- US_DO_D_EAST
- USDoDEastUSDoDEast Location for Azure
- FRANCE_CENTRAL
- FranceCentralFranceCentral Location for Azure
- AUSTRALIA_CENTRAL
- AustraliaCentralAustraliaCentral Location for Azure
- SOUTH_AFRICA_NORTH
- SouthAfricaNorthSouthAfricaNorth Location for Azure
- FRANCE_SOUTH
- FranceSouthFranceSouth Location for Azure
- AUSTRALIA_CENTRAL2
- AustraliaCentral2AustraliaCentral2 Location for Azure
- SOUTH_AFRICA_WEST
- SouthAfricaWestSouthAfricaWest Location for Azure
- GERMANY_NORTH
- GermanyNorthGermanyNorth Location for Azure
- GERMANY_WEST_CENTRAL
- GermanyWestCentralGermanyWestCentral Location for Azure
- NORWAY_EAST
- NorwayEastNorwayEast Location for Azure
- NORWAY_WEST
- NorwayWestNorwayWest Location for Azure
- CHINA_EAST2
- ChinaEast2ChinaEast2 Location for Azure
- CHINA_NORTH2
- ChinaNorth2ChinaNorth2 Location for Azure
- SWITZERLAND_NORTH
- SwitzerlandNorthSwitzerlandNorth Location for Azure
- SWITZERLAND_WEST
- SwitzerlandWestSwitzerlandWest Location for Azure
- UAE_NORTH
- UAENorthUAENorth Location for Azure
- UAE_CENTRAL
- UAECentralUAECentral Location for Azure
- US_NAT_EAST
- UsNatEastUsNatEast Location for Azure
- US_NAT_WEST
- UsNatWestUsNatWest Location for Azure
- US_SEC_EAST
- UsSecEastUsSecEast Location for Azure
- US_SEC_CENTRAL
- UsSecCentralUsSecCentral Location for Azure
- US_SEC_WEST
- UsSecWestUsSecWest Location for Azure
- SWEDEN_CENTRAL
- SwedenCentralSwedenCentral Location for Azure
- QATAR_CENTRAL
- QatarCentralQatarCentral Location for Azure
- JIO_INDIA_WEST
- JioIndiaWestJioIndiaWest Location for Azure
- ITALY_NORTH
- ItalyNorthItalyNorth Location for Azure
- POLAND_CENTRAL
- PolandCentralPolandCentral Location for Azure
- ISRAEL_CENTRAL
- IsraelCentralIsraelCentral Location for Azure
- MEXICO_CENTRAL
- MexicoCentralMexicoCentral Location for Azure
- NEW_ZEALAND_NORTH
- NewZealandNorthNewZealandNorth Location for Azure
- SPAIN_CENTRAL
- SpainCentralSpainCentral Location for Azure
- "Unknown"
- UnknownUnknown Location for Azure
- "East
Asia" - EastAsiaEastAsia Location for Azure
- "Southeast
Asia" - SoutheastAsiaSoutheastAsia Location for Azure
- "Australia
East" - AustraliaEastAustraliaEast Location for Azure
- "Australia
Southeast" - AustraliaSoutheastAustraliaSoutheast Location for Azure
- "Brazil
South" - BrazilSouthBrazilSouth Location for Azure
- "Canada
Central" - CanadaCentralCanadaCentral Location for Azure
- "Canada
East" - CanadaEastCanadaEast Location for Azure
- "West
Europe" - WestEuropeWestEurope Location for Azure
- "North
Europe" - NorthEuropeNorthEurope Location for Azure
- "Central
India" - CentralIndiaCentralIndia Location for Azure
- "South
India" - SouthIndiaSouthIndia Location for Azure
- "West
India" - WestIndiaWestIndia Location for Azure
- "Japan
East" - JapanEastJapanEast Location for Azure
- "Japan
West" - JapanWestJapanWest Location for Azure
- "Korea
Central" - KoreaCentralKoreaCentral Location for Azure
- "Korea
South" - KoreaSouthKoreaSouth Location for Azure
- "Uk
West" - UkWestUkWest Location for Azure
- "Uk
South" - UkSouthUkSouth Location for Azure
- "North
Central Us" - NorthCentralUsNorthCentralUs Location for Azure
- "East
Us" - EastUsEastUs Location for Azure
- "West
Us2" - WestUs2WestUs2 Location for Azure
- "South
Central Us" - SouthCentralUsSouthCentralUs Location for Azure
- "Central
Us" - CentralUsCentralUs Location for Azure
- "East
Us2" - EastUs2EastUs2 Location for Azure
- "West
Us" - WestUsWestUs Location for Azure
- "West
Central Us" - WestCentralUsWestCentralUs Location for Azure
- "Germany
Central" - GermanyCentralGermanyCentral Location for Azure
- "Germany
Northeast" - GermanyNortheastGermanyNortheast Location for Azure
- "China
North" - ChinaNorthChinaNorth Location for Azure
- "China
East" - ChinaEastChinaEast Location for Azure
- "USGov
Arizona" - USGovArizonaUSGovArizona Location for Azure
- "USGov
Texas" - USGovTexasUSGovTexas Location for Azure
- "USGov
Iowa" - USGovIowaUSGovIowa Location for Azure
- "USGov
Virginia" - USGovVirginiaUSGovVirginia Location for Azure
- "USDo
DCentral" - USDoDCentralUSDoDCentral Location for Azure
- "USDo
DEast" - USDoDEastUSDoDEast Location for Azure
- "France
Central" - FranceCentralFranceCentral Location for Azure
- "Australia
Central" - AustraliaCentralAustraliaCentral Location for Azure
- "South
Africa North" - SouthAfricaNorthSouthAfricaNorth Location for Azure
- "France
South" - FranceSouthFranceSouth Location for Azure
- "Australia
Central2" - AustraliaCentral2AustraliaCentral2 Location for Azure
- "South
Africa West" - SouthAfricaWestSouthAfricaWest Location for Azure
- "Germany
North" - GermanyNorthGermanyNorth Location for Azure
- "Germany
West Central" - GermanyWestCentralGermanyWestCentral Location for Azure
- "Norway
East" - NorwayEastNorwayEast Location for Azure
- "Norway
West" - NorwayWestNorwayWest Location for Azure
- "China
East2" - ChinaEast2ChinaEast2 Location for Azure
- "China
North2" - ChinaNorth2ChinaNorth2 Location for Azure
- "Switzerland
North" - SwitzerlandNorthSwitzerlandNorth Location for Azure
- "Switzerland
West" - SwitzerlandWestSwitzerlandWest Location for Azure
- "UAENorth"
- UAENorthUAENorth Location for Azure
- "UAECentral"
- UAECentralUAECentral Location for Azure
- "Us
Nat East" - UsNatEastUsNatEast Location for Azure
- "Us
Nat West" - UsNatWestUsNatWest Location for Azure
- "Us
Sec East" - UsSecEastUsSecEast Location for Azure
- "Us
Sec Central" - UsSecCentralUsSecCentral Location for Azure
- "Us
Sec West" - UsSecWestUsSecWest Location for Azure
- "Sweden
Central" - SwedenCentralSwedenCentral Location for Azure
- "Qatar
Central" - QatarCentralQatarCentral Location for Azure
- "Jio
India West" - JioIndiaWestJioIndiaWest Location for Azure
- "Italy
North" - ItalyNorthItalyNorth Location for Azure
- "Poland
Central" - PolandCentralPolandCentral Location for Azure
- "Israel
Central" - IsraelCentralIsraelCentral Location for Azure
- "Mexico
Central" - MexicoCentralMexicoCentral Location for Azure
- "New
Zealand North" - NewZealandNorthNewZealandNorth Location for Azure
- "Spain
Central" - SpainCentralSpainCentral Location for Azure
AzureOfferCode, AzureOfferCodeArgs
- Unknown
- Unknown
- Msazr0003P
- MSAZR0003P
- Msazr0044P
- MSAZR0044P
- Msazr0059P
- MSAZR0059P
- Msazr0060P
- MSAZR0060P
- Msazr0062P
- MSAZR0062P
- Msazr0063P
- MSAZR0063P
- Msazr0064P
- MSAZR0064P
- Msazr0029P
- MSAZR0029P
- Msazr0022P
- MSAZR0022P
- Msazr0023P
- MSAZR0023P
- Msazr0148P
- MSAZR0148P
- Msazr0025P
- MSAZR0025P
- Msazr0036P
- MSAZR0036P
- Msazr0120P
- MSAZR0120P
- Msazr0121P
- MSAZR0121P
- Msazr0122P
- MSAZR0122P
- Msazr0123P
- MSAZR0123P
- Msazr0124P
- MSAZR0124P
- Msazr0125P
- MSAZR0125P
- Msazr0126P
- MSAZR0126P
- Msazr0127P
- MSAZR0127P
- Msazr0128P
- MSAZR0128P
- Msazr0129P
- MSAZR0129P
- Msazr0130P
- MSAZR0130P
- Msazr0111P
- MSAZR0111P
- Msazr0144P
- MSAZR0144P
- Msazr0149P
- MSAZR0149P
- Msmcazr0044P
- MSMCAZR0044P
- Msmcazr0059P
- MSMCAZR0059P
- Msmcazr0060P
- MSMCAZR0060P
- Msmcazr0063P
- MSMCAZR0063P
- Msmcazr0120P
- MSMCAZR0120P
- Msmcazr0121P
- MSMCAZR0121P
- Msmcazr0125P
- MSMCAZR0125P
- Msmcazr0128P
- MSMCAZR0128P
- Msazrde0003P
- MSAZRDE0003P
- Msazrde0044P
- MSAZRDE0044P
- Msazrusgov0003P
- MSAZRUSGOV0003P
- EA
- EA
- Msazr0243P
- MSAZR0243P
- 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
CostComponentResponse, CostComponentResponseArgs
- Name string
- Gets the name of the component.
- Description string
- The textual description of the component.
- Value double
- The value of the component.
- Name string
- Gets the name of the component.
- Description string
- The textual description of the component.
- Value float64
- The value of the component.
- name String
- Gets the name of the component.
- description String
- The textual description of the component.
- value Double
- The value of the component.
- name string
- Gets the name of the component.
- description string
- The textual description of the component.
- value number
- The value of the component.
- name str
- Gets the name of the component.
- description str
- The textual description of the component.
- value float
- The value of the component.
- name String
- Gets the name of the component.
- description String
- The textual description of the component.
- value Number
- The value of the component.
ExternalStorageType, ExternalStorageTypeArgs
- Unknown
- UnknownIndicates un-supported external storage.
- None
- NoneIndicates No external storage.
- Anf
Standard - AnfStandardANF external storage with Standard SKU.
- Anf
Premium - AnfPremiumANF external storage with Premium SKU.
- Anf
Ultra - AnfUltraANF external storage with Ultra SKU.
- External
Storage Type Unknown - UnknownIndicates un-supported external storage.
- External
Storage Type None - NoneIndicates No external storage.
- External
Storage Type Anf Standard - AnfStandardANF external storage with Standard SKU.
- External
Storage Type Anf Premium - AnfPremiumANF external storage with Premium SKU.
- External
Storage Type Anf Ultra - AnfUltraANF external storage with Ultra SKU.
- Unknown
- UnknownIndicates un-supported external storage.
- None
- NoneIndicates No external storage.
- Anf
Standard - AnfStandardANF external storage with Standard SKU.
- Anf
Premium - AnfPremiumANF external storage with Premium SKU.
- Anf
Ultra - AnfUltraANF external storage with Ultra SKU.
- Unknown
- UnknownIndicates un-supported external storage.
- None
- NoneIndicates No external storage.
- Anf
Standard - AnfStandardANF external storage with Standard SKU.
- Anf
Premium - AnfPremiumANF external storage with Premium SKU.
- Anf
Ultra - AnfUltraANF external storage with Ultra SKU.
- UNKNOWN
- UnknownIndicates un-supported external storage.
- NONE
- NoneIndicates No external storage.
- ANF_STANDARD
- AnfStandardANF external storage with Standard SKU.
- ANF_PREMIUM
- AnfPremiumANF external storage with Premium SKU.
- ANF_ULTRA
- AnfUltraANF external storage with Ultra SKU.
- "Unknown"
- UnknownIndicates un-supported external storage.
- "None"
- NoneIndicates No external storage.
- "Anf
Standard" - AnfStandardANF external storage with Standard SKU.
- "Anf
Premium" - AnfPremiumANF external storage with Premium SKU.
- "Anf
Ultra" - AnfUltraANF external storage with Ultra SKU.
FttAndRaidLevel, FttAndRaidLevelArgs
- Unknown
- UnknownUnknown FTT and RAID Level.
- Ftt1Raid1
- Ftt1Raid1FTT 1 and RAID Level 1.
- Ftt1Raid5
- Ftt1Raid5FTT 1 and RAID Level 5.
- Ftt2Raid1
- Ftt2Raid1FTT 2 and RAID Level 1.
- Ftt2Raid6
- Ftt2Raid6FTT 2 and RAID Level 6.
- Ftt3Raid1
- Ftt3Raid1FTT 3 and RAID Level 1.
- Ftt
And Raid Level Unknown - UnknownUnknown FTT and RAID Level.
- Ftt
And Raid Level Ftt1Raid1 - Ftt1Raid1FTT 1 and RAID Level 1.
- Ftt
And Raid Level Ftt1Raid5 - Ftt1Raid5FTT 1 and RAID Level 5.
- Ftt
And Raid Level Ftt2Raid1 - Ftt2Raid1FTT 2 and RAID Level 1.
- Ftt
And Raid Level Ftt2Raid6 - Ftt2Raid6FTT 2 and RAID Level 6.
- Ftt
And Raid Level Ftt3Raid1 - Ftt3Raid1FTT 3 and RAID Level 1.
- Unknown
- UnknownUnknown FTT and RAID Level.
- Ftt1Raid1
- Ftt1Raid1FTT 1 and RAID Level 1.
- Ftt1Raid5
- Ftt1Raid5FTT 1 and RAID Level 5.
- Ftt2Raid1
- Ftt2Raid1FTT 2 and RAID Level 1.
- Ftt2Raid6
- Ftt2Raid6FTT 2 and RAID Level 6.
- Ftt3Raid1
- Ftt3Raid1FTT 3 and RAID Level 1.
- Unknown
- UnknownUnknown FTT and RAID Level.
- Ftt1Raid1
- Ftt1Raid1FTT 1 and RAID Level 1.
- Ftt1Raid5
- Ftt1Raid5FTT 1 and RAID Level 5.
- Ftt2Raid1
- Ftt2Raid1FTT 2 and RAID Level 1.
- Ftt2Raid6
- Ftt2Raid6FTT 2 and RAID Level 6.
- Ftt3Raid1
- Ftt3Raid1FTT 3 and RAID Level 1.
- UNKNOWN
- UnknownUnknown FTT and RAID Level.
- FTT1_RAID1
- Ftt1Raid1FTT 1 and RAID Level 1.
- FTT1_RAID5
- Ftt1Raid5FTT 1 and RAID Level 5.
- FTT2_RAID1
- Ftt2Raid1FTT 2 and RAID Level 1.
- FTT2_RAID6
- Ftt2Raid6FTT 2 and RAID Level 6.
- FTT3_RAID1
- Ftt3Raid1FTT 3 and RAID Level 1.
- "Unknown"
- UnknownUnknown FTT and RAID Level.
- "Ftt1Raid1"
- Ftt1Raid1FTT 1 and RAID Level 1.
- "Ftt1Raid5"
- Ftt1Raid5FTT 1 and RAID Level 5.
- "Ftt2Raid1"
- Ftt2Raid1FTT 2 and RAID Level 1.
- "Ftt2Raid6"
- Ftt2Raid6FTT 2 and RAID Level 6.
- "Ftt3Raid1"
- Ftt3Raid1FTT 3 and RAID Level 1.
Percentile, PercentileArgs
- Percentile50
- Percentile50Percentile 50.
- Percentile90
- Percentile90Percentile 90.
- Percentile95
- Percentile95Percentile 95.
- Percentile99
- Percentile99Percentile 99.
- Percentile
Unknown - PercentileUnknownPercentile unknown.
- Percentile
Percentile50 - Percentile50Percentile 50.
- Percentile
Percentile90 - Percentile90Percentile 90.
- Percentile
Percentile95 - Percentile95Percentile 95.
- Percentile
Percentile99 - Percentile99Percentile 99.
- Percentile
Percentile Unknown - PercentileUnknownPercentile unknown.
- Percentile50
- Percentile50Percentile 50.
- Percentile90
- Percentile90Percentile 90.
- Percentile95
- Percentile95Percentile 95.
- Percentile99
- Percentile99Percentile 99.
- Percentile
Unknown - PercentileUnknownPercentile unknown.
- Percentile50
- Percentile50Percentile 50.
- Percentile90
- Percentile90Percentile 90.
- Percentile95
- Percentile95Percentile 95.
- Percentile99
- Percentile99Percentile 99.
- Percentile
Unknown - PercentileUnknownPercentile unknown.
- PERCENTILE50
- Percentile50Percentile 50.
- PERCENTILE90
- Percentile90Percentile 90.
- PERCENTILE95
- Percentile95Percentile 95.
- PERCENTILE99
- Percentile99Percentile 99.
- PERCENTILE_UNKNOWN
- PercentileUnknownPercentile unknown.
- "Percentile50"
- Percentile50Percentile 50.
- "Percentile90"
- Percentile90Percentile 90.
- "Percentile95"
- Percentile95Percentile 95.
- "Percentile99"
- Percentile99Percentile 99.
- "Percentile
Unknown" - PercentileUnknownPercentile unknown.
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.
SystemDataResponse, SystemDataResponseArgs
- 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:AvsAssessmentsOperation asm2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/groups/{groupName}/avsAssessments/{assessmentName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0