azure-native.migrate.AksAssessmentOperation
Explore with Pulumi AI
ARM model of AKS Assessment. Azure REST API version: 2023-04-01-preview.
Other available API versions: 2023-05-01-preview, 2023-09-09-preview.
Example Usage
AksAssessmentOperations_Create_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var aksAssessmentOperation = new AzureNative.Migrate.AksAssessmentOperation("aksAssessmentOperation", new()
{
AssessmentName = "testaksassessment",
ProjectName = "testproject",
ResourceGroupName = "rgaksswagger",
Scope = new AzureNative.Migrate.Inputs.AssessmentScopeParametersArgs
{
ServerGroupId = "/subscriptions/D6F60DF4-CE70-4E39-8217-B8FBE7CA85AA/resourceGroups/rgaksswagger/providers/Microsoft.Migrate/assessmentProjects/testproject/groups/testgrp",
},
Settings = new AzureNative.Migrate.Inputs.AKSAssessmentSettingsArgs
{
AzureLocation = "Unknown",
Category = AzureNative.Migrate.AzureVmCategory.All,
Consolidation = AzureNative.Migrate.ConsolidationType.Full,
Currency = AzureNative.Migrate.AzureCurrency.Unknown,
DiscountPercentage = 15,
EnvironmentType = AzureNative.Migrate.AzureEnvironmentType.Unknown,
LicensingProgram = AzureNative.Migrate.LicensingProgram.Default,
PerformanceData = new AzureNative.Migrate.Inputs.PerfDataSettingsArgs
{
Percentile = AzureNative.Migrate.Percentile.Percentile50,
PerfDataEndTime = "2023-11-07T06:51:24.320Z",
PerfDataStartTime = "2023-11-07T06:51:24.320Z",
TimeRange = AzureNative.Migrate.TimeRange.Day,
},
PricingTier = AzureNative.Migrate.PricingTier.Standard,
SavingsOptions = AzureNative.Migrate.SavingsOptions.None,
ScalingFactor = 3,
SizingCriteria = AzureNative.Migrate.AssessmentSizingCriterion.PerformanceBased,
},
});
});
package main
import (
migrate "github.com/pulumi/pulumi-azure-native-sdk/migrate/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := migrate.NewAksAssessmentOperation(ctx, "aksAssessmentOperation", &migrate.AksAssessmentOperationArgs{
AssessmentName: pulumi.String("testaksassessment"),
ProjectName: pulumi.String("testproject"),
ResourceGroupName: pulumi.String("rgaksswagger"),
Scope: &migrate.AssessmentScopeParametersArgs{
ServerGroupId: pulumi.String("/subscriptions/D6F60DF4-CE70-4E39-8217-B8FBE7CA85AA/resourceGroups/rgaksswagger/providers/Microsoft.Migrate/assessmentProjects/testproject/groups/testgrp"),
},
Settings: &migrate.AKSAssessmentSettingsArgs{
AzureLocation: pulumi.String("Unknown"),
Category: pulumi.String(migrate.AzureVmCategoryAll),
Consolidation: pulumi.String(migrate.ConsolidationTypeFull),
Currency: pulumi.String(migrate.AzureCurrencyUnknown),
DiscountPercentage: pulumi.Float64(15),
EnvironmentType: pulumi.String(migrate.AzureEnvironmentTypeUnknown),
LicensingProgram: pulumi.String(migrate.LicensingProgramDefault),
PerformanceData: &migrate.PerfDataSettingsArgs{
Percentile: pulumi.String(migrate.PercentilePercentile50),
PerfDataEndTime: pulumi.String("2023-11-07T06:51:24.320Z"),
PerfDataStartTime: pulumi.String("2023-11-07T06:51:24.320Z"),
TimeRange: pulumi.String(migrate.TimeRangeDay),
},
PricingTier: pulumi.String(migrate.PricingTierStandard),
SavingsOptions: pulumi.String(migrate.SavingsOptionsNone),
ScalingFactor: pulumi.Float64(3),
SizingCriteria: pulumi.String(migrate.AssessmentSizingCriterionPerformanceBased),
},
})
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.AksAssessmentOperation;
import com.pulumi.azurenative.migrate.AksAssessmentOperationArgs;
import com.pulumi.azurenative.migrate.inputs.AssessmentScopeParametersArgs;
import com.pulumi.azurenative.migrate.inputs.AKSAssessmentSettingsArgs;
import com.pulumi.azurenative.migrate.inputs.PerfDataSettingsArgs;
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 aksAssessmentOperation = new AksAssessmentOperation("aksAssessmentOperation", AksAssessmentOperationArgs.builder()
.assessmentName("testaksassessment")
.projectName("testproject")
.resourceGroupName("rgaksswagger")
.scope(AssessmentScopeParametersArgs.builder()
.serverGroupId("/subscriptions/D6F60DF4-CE70-4E39-8217-B8FBE7CA85AA/resourceGroups/rgaksswagger/providers/Microsoft.Migrate/assessmentProjects/testproject/groups/testgrp")
.build())
.settings(AKSAssessmentSettingsArgs.builder()
.azureLocation("Unknown")
.category("All")
.consolidation("Full")
.currency("Unknown")
.discountPercentage(15)
.environmentType("Unknown")
.licensingProgram("Default")
.performanceData(PerfDataSettingsArgs.builder()
.percentile("Percentile50")
.perfDataEndTime("2023-11-07T06:51:24.320Z")
.perfDataStartTime("2023-11-07T06:51:24.320Z")
.timeRange("Day")
.build())
.pricingTier("Standard")
.savingsOptions("None")
.scalingFactor(3)
.sizingCriteria("PerformanceBased")
.build())
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
aks_assessment_operation = azure_native.migrate.AksAssessmentOperation("aksAssessmentOperation",
assessment_name="testaksassessment",
project_name="testproject",
resource_group_name="rgaksswagger",
scope={
"server_group_id": "/subscriptions/D6F60DF4-CE70-4E39-8217-B8FBE7CA85AA/resourceGroups/rgaksswagger/providers/Microsoft.Migrate/assessmentProjects/testproject/groups/testgrp",
},
settings={
"azure_location": "Unknown",
"category": azure_native.migrate.AzureVmCategory.ALL,
"consolidation": azure_native.migrate.ConsolidationType.FULL,
"currency": azure_native.migrate.AzureCurrency.UNKNOWN,
"discount_percentage": 15,
"environment_type": azure_native.migrate.AzureEnvironmentType.UNKNOWN,
"licensing_program": azure_native.migrate.LicensingProgram.DEFAULT,
"performance_data": {
"percentile": azure_native.migrate.Percentile.PERCENTILE50,
"perf_data_end_time": "2023-11-07T06:51:24.320Z",
"perf_data_start_time": "2023-11-07T06:51:24.320Z",
"time_range": azure_native.migrate.TimeRange.DAY,
},
"pricing_tier": azure_native.migrate.PricingTier.STANDARD,
"savings_options": azure_native.migrate.SavingsOptions.NONE,
"scaling_factor": 3,
"sizing_criteria": azure_native.migrate.AssessmentSizingCriterion.PERFORMANCE_BASED,
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const aksAssessmentOperation = new azure_native.migrate.AksAssessmentOperation("aksAssessmentOperation", {
assessmentName: "testaksassessment",
projectName: "testproject",
resourceGroupName: "rgaksswagger",
scope: {
serverGroupId: "/subscriptions/D6F60DF4-CE70-4E39-8217-B8FBE7CA85AA/resourceGroups/rgaksswagger/providers/Microsoft.Migrate/assessmentProjects/testproject/groups/testgrp",
},
settings: {
azureLocation: "Unknown",
category: azure_native.migrate.AzureVmCategory.All,
consolidation: azure_native.migrate.ConsolidationType.Full,
currency: azure_native.migrate.AzureCurrency.Unknown,
discountPercentage: 15,
environmentType: azure_native.migrate.AzureEnvironmentType.Unknown,
licensingProgram: azure_native.migrate.LicensingProgram.Default,
performanceData: {
percentile: azure_native.migrate.Percentile.Percentile50,
perfDataEndTime: "2023-11-07T06:51:24.320Z",
perfDataStartTime: "2023-11-07T06:51:24.320Z",
timeRange: azure_native.migrate.TimeRange.Day,
},
pricingTier: azure_native.migrate.PricingTier.Standard,
savingsOptions: azure_native.migrate.SavingsOptions.None,
scalingFactor: 3,
sizingCriteria: azure_native.migrate.AssessmentSizingCriterion.PerformanceBased,
},
});
resources:
aksAssessmentOperation:
type: azure-native:migrate:AksAssessmentOperation
properties:
assessmentName: testaksassessment
projectName: testproject
resourceGroupName: rgaksswagger
scope:
serverGroupId: /subscriptions/D6F60DF4-CE70-4E39-8217-B8FBE7CA85AA/resourceGroups/rgaksswagger/providers/Microsoft.Migrate/assessmentProjects/testproject/groups/testgrp
settings:
azureLocation: Unknown
category: All
consolidation: Full
currency: Unknown
discountPercentage: 15
environmentType: Unknown
licensingProgram: Default
performanceData:
percentile: Percentile50
perfDataEndTime: 2023-11-07T06:51:24.320Z
perfDataStartTime: 2023-11-07T06:51:24.320Z
timeRange: Day
pricingTier: Standard
savingsOptions: None
scalingFactor: 3
sizingCriteria: PerformanceBased
Create AksAssessmentOperation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AksAssessmentOperation(name: string, args: AksAssessmentOperationArgs, opts?: CustomResourceOptions);
@overload
def AksAssessmentOperation(resource_name: str,
args: AksAssessmentOperationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AksAssessmentOperation(resource_name: str,
opts: Optional[ResourceOptions] = None,
project_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
settings: Optional[AKSAssessmentSettingsArgs] = None,
assessment_name: Optional[str] = None,
scope: Optional[AssessmentScopeParametersArgs] = None)
func NewAksAssessmentOperation(ctx *Context, name string, args AksAssessmentOperationArgs, opts ...ResourceOption) (*AksAssessmentOperation, error)
public AksAssessmentOperation(string name, AksAssessmentOperationArgs args, CustomResourceOptions? opts = null)
public AksAssessmentOperation(String name, AksAssessmentOperationArgs args)
public AksAssessmentOperation(String name, AksAssessmentOperationArgs args, CustomResourceOptions options)
type: azure-native:migrate:AksAssessmentOperation
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 AksAssessmentOperationArgs
- 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 AksAssessmentOperationArgs
- 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 AksAssessmentOperationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AksAssessmentOperationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AksAssessmentOperationArgs
- 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 aksAssessmentOperationResource = new AzureNative.Migrate.AksAssessmentOperation("aksAssessmentOperationResource", new()
{
ProjectName = "string",
ResourceGroupName = "string",
Settings = new AzureNative.Migrate.Inputs.AKSAssessmentSettingsArgs
{
AzureLocation = "string",
Category = "string",
Consolidation = "string",
Currency = "string",
EnvironmentType = "string",
LicensingProgram = "string",
PricingTier = "string",
SavingsOptions = "string",
SizingCriteria = "string",
DiscountPercentage = 0,
PerformanceData = new AzureNative.Migrate.Inputs.PerfDataSettingsArgs
{
Percentile = "string",
TimeRange = "string",
PerfDataEndTime = "string",
PerfDataStartTime = "string",
},
ScalingFactor = 0,
},
AssessmentName = "string",
Scope = new AzureNative.Migrate.Inputs.AssessmentScopeParametersArgs
{
ServerGroupId = "string",
},
});
example, err := migrate.NewAksAssessmentOperation(ctx, "aksAssessmentOperationResource", &migrate.AksAssessmentOperationArgs{
ProjectName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Settings: &migrate.AKSAssessmentSettingsArgs{
AzureLocation: pulumi.String("string"),
Category: pulumi.String("string"),
Consolidation: pulumi.String("string"),
Currency: pulumi.String("string"),
EnvironmentType: pulumi.String("string"),
LicensingProgram: pulumi.String("string"),
PricingTier: pulumi.String("string"),
SavingsOptions: pulumi.String("string"),
SizingCriteria: pulumi.String("string"),
DiscountPercentage: pulumi.Float64(0),
PerformanceData: &migrate.PerfDataSettingsArgs{
Percentile: pulumi.String("string"),
TimeRange: pulumi.String("string"),
PerfDataEndTime: pulumi.String("string"),
PerfDataStartTime: pulumi.String("string"),
},
ScalingFactor: pulumi.Float64(0),
},
AssessmentName: pulumi.String("string"),
Scope: &migrate.AssessmentScopeParametersArgs{
ServerGroupId: pulumi.String("string"),
},
})
var aksAssessmentOperationResource = new AksAssessmentOperation("aksAssessmentOperationResource", AksAssessmentOperationArgs.builder()
.projectName("string")
.resourceGroupName("string")
.settings(AKSAssessmentSettingsArgs.builder()
.azureLocation("string")
.category("string")
.consolidation("string")
.currency("string")
.environmentType("string")
.licensingProgram("string")
.pricingTier("string")
.savingsOptions("string")
.sizingCriteria("string")
.discountPercentage(0)
.performanceData(PerfDataSettingsArgs.builder()
.percentile("string")
.timeRange("string")
.perfDataEndTime("string")
.perfDataStartTime("string")
.build())
.scalingFactor(0)
.build())
.assessmentName("string")
.scope(AssessmentScopeParametersArgs.builder()
.serverGroupId("string")
.build())
.build());
aks_assessment_operation_resource = azure_native.migrate.AksAssessmentOperation("aksAssessmentOperationResource",
project_name="string",
resource_group_name="string",
settings={
"azure_location": "string",
"category": "string",
"consolidation": "string",
"currency": "string",
"environment_type": "string",
"licensing_program": "string",
"pricing_tier": "string",
"savings_options": "string",
"sizing_criteria": "string",
"discount_percentage": 0,
"performance_data": {
"percentile": "string",
"time_range": "string",
"perf_data_end_time": "string",
"perf_data_start_time": "string",
},
"scaling_factor": 0,
},
assessment_name="string",
scope={
"server_group_id": "string",
})
const aksAssessmentOperationResource = new azure_native.migrate.AksAssessmentOperation("aksAssessmentOperationResource", {
projectName: "string",
resourceGroupName: "string",
settings: {
azureLocation: "string",
category: "string",
consolidation: "string",
currency: "string",
environmentType: "string",
licensingProgram: "string",
pricingTier: "string",
savingsOptions: "string",
sizingCriteria: "string",
discountPercentage: 0,
performanceData: {
percentile: "string",
timeRange: "string",
perfDataEndTime: "string",
perfDataStartTime: "string",
},
scalingFactor: 0,
},
assessmentName: "string",
scope: {
serverGroupId: "string",
},
});
type: azure-native:migrate:AksAssessmentOperation
properties:
assessmentName: string
projectName: string
resourceGroupName: string
scope:
serverGroupId: string
settings:
azureLocation: string
category: string
consolidation: string
currency: string
discountPercentage: 0
environmentType: string
licensingProgram: string
performanceData:
percentile: string
perfDataEndTime: string
perfDataStartTime: string
timeRange: string
pricingTier: string
savingsOptions: string
scalingFactor: 0
sizingCriteria: string
AksAssessmentOperation 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 AksAssessmentOperation resource accepts the following input properties:
- Project
Name string - Assessment Project Name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Settings
Pulumi.
Azure Native. Migrate. Inputs. AKSAssessment Settings - Gets or sets AKS Assessment Settings.
- Assessment
Name string - AKS Assessment Name.
- Scope
Pulumi.
Azure Native. Migrate. Inputs. Assessment Scope Parameters - Gets or sets scope parameters to identify inventory items for assessment.
- Project
Name string - Assessment Project Name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Settings
AKSAssessment
Settings Args - Gets or sets AKS Assessment Settings.
- Assessment
Name string - AKS Assessment Name.
- Scope
Assessment
Scope Parameters Args - Gets or sets scope parameters to identify inventory items for assessment.
- project
Name String - Assessment Project Name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- settings
AKSAssessment
Settings - Gets or sets AKS Assessment Settings.
- assessment
Name String - AKS Assessment Name.
- scope
Assessment
Scope Parameters - Gets or sets scope parameters to identify inventory items for assessment.
- project
Name string - Assessment Project Name
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- settings
AKSAssessment
Settings - Gets or sets AKS Assessment Settings.
- assessment
Name string - AKS Assessment Name.
- scope
Assessment
Scope Parameters - Gets or sets scope parameters to identify inventory items for assessment.
- project_
name str - Assessment Project Name
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- settings
AKSAssessment
Settings Args - Gets or sets AKS Assessment Settings.
- assessment_
name str - AKS Assessment Name.
- scope
Assessment
Scope Parameters Args - Gets or sets scope parameters to identify inventory items for assessment.
- project
Name String - Assessment Project Name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- settings Property Map
- Gets or sets AKS Assessment Settings.
- assessment
Name String - AKS Assessment Name.
- scope Property Map
- Gets or sets scope parameters to identify inventory items for assessment.
Outputs
All input properties are implicitly available as output properties. Additionally, the AksAssessmentOperation resource produces the following output properties:
- Details
Pulumi.
Azure Native. Migrate. Outputs. AKSAssessment Details Response - Gets AKS Assessment Details.
- ETag string
- If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Gets the provisioning state.
- System
Data Pulumi.Azure Native. Migrate. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Details
AKSAssessment
Details Response - Gets AKS Assessment Details.
- ETag string
- If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Gets the provisioning state.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- details
AKSAssessment
Details Response - Gets AKS Assessment Details.
- e
Tag String - If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Gets the provisioning state.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- details
AKSAssessment
Details Response - Gets AKS Assessment Details.
- e
Tag string - If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - Gets the provisioning state.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- details
AKSAssessment
Details Response - Gets AKS Assessment Details.
- e_
tag str - If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - Gets the provisioning state.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- details Property Map
- Gets AKS Assessment Details.
- e
Tag String - If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Gets the provisioning state.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AKSAssessmentDetailsResponse, AKSAssessmentDetailsResponseArgs
- Confidence
Rating doubleIn Percentage - Gets Confidence score.
- Created
Timestamp string - Gets date and time when assessment was created.
- Machine
Count int - Gets the number of machines.
- Prices
Timestamp string - Gets last time when rates were queried.
- Status string
- Gets assessment status.
- Total
Monthly doubleCost - Gets the total monthly cost.
- Updated
Timestamp string - Gets date and time when assessment was last updated.
- Web
App intCount - Gets the number of web apps.
- Web
Server intCount - Gets the number of web servers.
- Confidence
Rating float64In Percentage - Gets Confidence score.
- Created
Timestamp string - Gets date and time when assessment was created.
- Machine
Count int - Gets the number of machines.
- Prices
Timestamp string - Gets last time when rates were queried.
- Status string
- Gets assessment status.
- Total
Monthly float64Cost - Gets the total monthly cost.
- Updated
Timestamp string - Gets date and time when assessment was last updated.
- Web
App intCount - Gets the number of web apps.
- Web
Server intCount - Gets the number of web servers.
- confidence
Rating DoubleIn Percentage - Gets Confidence score.
- created
Timestamp String - Gets date and time when assessment was created.
- machine
Count Integer - Gets the number of machines.
- prices
Timestamp String - Gets last time when rates were queried.
- status String
- Gets assessment status.
- total
Monthly DoubleCost - Gets the total monthly cost.
- updated
Timestamp String - Gets date and time when assessment was last updated.
- web
App IntegerCount - Gets the number of web apps.
- web
Server IntegerCount - Gets the number of web servers.
- confidence
Rating numberIn Percentage - Gets Confidence score.
- created
Timestamp string - Gets date and time when assessment was created.
- machine
Count number - Gets the number of machines.
- prices
Timestamp string - Gets last time when rates were queried.
- status string
- Gets assessment status.
- total
Monthly numberCost - Gets the total monthly cost.
- updated
Timestamp string - Gets date and time when assessment was last updated.
- web
App numberCount - Gets the number of web apps.
- web
Server numberCount - Gets the number of web servers.
- confidence_
rating_ floatin_ percentage - Gets Confidence score.
- created_
timestamp str - Gets date and time when assessment was created.
- machine_
count int - Gets the number of machines.
- prices_
timestamp str - Gets last time when rates were queried.
- status str
- Gets assessment status.
- total_
monthly_ floatcost - Gets the total monthly cost.
- updated_
timestamp str - Gets date and time when assessment was last updated.
- web_
app_ intcount - Gets the number of web apps.
- web_
server_ intcount - Gets the number of web servers.
- confidence
Rating NumberIn Percentage - Gets Confidence score.
- created
Timestamp String - Gets date and time when assessment was created.
- machine
Count Number - Gets the number of machines.
- prices
Timestamp String - Gets last time when rates were queried.
- status String
- Gets assessment status.
- total
Monthly NumberCost - Gets the total monthly cost.
- updated
Timestamp String - Gets date and time when assessment was last updated.
- web
App NumberCount - Gets the number of web apps.
- web
Server NumberCount - Gets the number of web servers.
AKSAssessmentSettings, AKSAssessmentSettingsArgs
- Azure
Location string - Gets or sets azure location.
- Category
string | Pulumi.
Azure Native. Migrate. Azure Vm Category - Gets or sets azure VM category.
- Consolidation
string | Pulumi.
Azure Native. Migrate. Consolidation Type - Gets or sets consolidation type.
- Currency
string | Pulumi.
Azure Native. Migrate. Azure Currency - Gets or sets currency.
- Environment
Type string | Pulumi.Azure Native. Migrate. Azure Environment Type - Gets or sets environment type.
- Licensing
Program string | Pulumi.Azure Native. Migrate. Licensing Program - Gets or sets licensing program.
- Pricing
Tier string | Pulumi.Azure Native. Migrate. Pricing Tier - Gets or sets pricing tier.
- Savings
Options string | Pulumi.Azure Native. Migrate. Savings Options - Gets or sets savings options.
- Sizing
Criteria string | Pulumi.Azure Native. Migrate. Assessment Sizing Criterion - Gets or sets sizing criteria.
- Discount
Percentage double - Gets or sets discount percentage.
- Performance
Data Pulumi.Azure Native. Migrate. Inputs. Perf Data Settings - Gets or sets performance data settings.
- Scaling
Factor double - Gets or sets scaling factor.
- Azure
Location string - Gets or sets azure location.
- Category
string | Azure
Vm Category - Gets or sets azure VM category.
- Consolidation
string | Consolidation
Type - Gets or sets consolidation type.
- Currency
string | Azure
Currency - Gets or sets currency.
- Environment
Type string | AzureEnvironment Type - Gets or sets environment type.
- Licensing
Program string | LicensingProgram - Gets or sets licensing program.
- Pricing
Tier string | PricingTier - Gets or sets pricing tier.
- Savings
Options string | SavingsOptions - Gets or sets savings options.
- Sizing
Criteria string | AssessmentSizing Criterion - Gets or sets sizing criteria.
- Discount
Percentage float64 - Gets or sets discount percentage.
- Performance
Data PerfData Settings - Gets or sets performance data settings.
- Scaling
Factor float64 - Gets or sets scaling factor.
- azure
Location String - Gets or sets azure location.
- category
String | Azure
Vm Category - Gets or sets azure VM category.
- consolidation
String | Consolidation
Type - Gets or sets consolidation type.
- currency
String | Azure
Currency - Gets or sets currency.
- environment
Type String | AzureEnvironment Type - Gets or sets environment type.
- licensing
Program String | LicensingProgram - Gets or sets licensing program.
- pricing
Tier String | PricingTier - Gets or sets pricing tier.
- savings
Options String | SavingsOptions - Gets or sets savings options.
- sizing
Criteria String | AssessmentSizing Criterion - Gets or sets sizing criteria.
- discount
Percentage Double - Gets or sets discount percentage.
- performance
Data PerfData Settings - Gets or sets performance data settings.
- scaling
Factor Double - Gets or sets scaling factor.
- azure
Location string - Gets or sets azure location.
- category
string | Azure
Vm Category - Gets or sets azure VM category.
- consolidation
string | Consolidation
Type - Gets or sets consolidation type.
- currency
string | Azure
Currency - Gets or sets currency.
- environment
Type string | AzureEnvironment Type - Gets or sets environment type.
- licensing
Program string | LicensingProgram - Gets or sets licensing program.
- pricing
Tier string | PricingTier - Gets or sets pricing tier.
- savings
Options string | SavingsOptions - Gets or sets savings options.
- sizing
Criteria string | AssessmentSizing Criterion - Gets or sets sizing criteria.
- discount
Percentage number - Gets or sets discount percentage.
- performance
Data PerfData Settings - Gets or sets performance data settings.
- scaling
Factor number - Gets or sets scaling factor.
- azure_
location str - Gets or sets azure location.
- category
str | Azure
Vm Category - Gets or sets azure VM category.
- consolidation
str | Consolidation
Type - Gets or sets consolidation type.
- currency
str | Azure
Currency - Gets or sets currency.
- environment_
type str | AzureEnvironment Type - Gets or sets environment type.
- licensing_
program str | LicensingProgram - Gets or sets licensing program.
- pricing_
tier str | PricingTier - Gets or sets pricing tier.
- savings_
options str | SavingsOptions - Gets or sets savings options.
- sizing_
criteria str | AssessmentSizing Criterion - Gets or sets sizing criteria.
- discount_
percentage float - Gets or sets discount percentage.
- performance_
data PerfData Settings - Gets or sets performance data settings.
- scaling_
factor float - Gets or sets scaling factor.
- azure
Location String - Gets or sets azure location.
- category
String | "All" | "Compute
Optimized" | "General Purpose" | "Gpu Optimized" | "High Performance Compute" | "Memory Optimized" | "Storage Optimized" | "Isolated" - Gets or sets azure VM category.
- consolidation
String | "Full" | "As
On Source" - Gets or sets consolidation type.
- 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"
- Gets or sets currency.
- environment
Type String | "Unknown" | "DevTest" | "Production" - Gets or sets environment type.
- licensing
Program String | "Default" | "EA" - Gets or sets licensing program.
- pricing
Tier String | "Standard" | "Free" - Gets or sets pricing tier.
- savings
Options String | "None" | "OneYear Savings" | "Three Years Savings" | "One Year Reserved" | "Three Years Reserved" - Gets or sets savings options.
- sizing
Criteria String | "PerformanceBased" | "As On Premises" - Gets or sets sizing criteria.
- discount
Percentage Number - Gets or sets discount percentage.
- performance
Data Property Map - Gets or sets performance data settings.
- scaling
Factor Number - Gets or sets scaling factor.
AKSAssessmentSettingsResponse, AKSAssessmentSettingsResponseArgs
- Azure
Location string - Gets or sets azure location.
- Category string
- Gets or sets azure VM category.
- Consolidation string
- Gets or sets consolidation type.
- Currency string
- Gets or sets currency.
- Environment
Type string - Gets or sets environment type.
- Licensing
Program string - Gets or sets licensing program.
- Pricing
Tier string - Gets or sets pricing tier.
- Savings
Options string - Gets or sets savings options.
- Sizing
Criteria string - Gets or sets sizing criteria.
- Discount
Percentage double - Gets or sets discount percentage.
- Performance
Data Pulumi.Azure Native. Migrate. Inputs. Perf Data Settings Response - Gets or sets performance data settings.
- Scaling
Factor double - Gets or sets scaling factor.
- Azure
Location string - Gets or sets azure location.
- Category string
- Gets or sets azure VM category.
- Consolidation string
- Gets or sets consolidation type.
- Currency string
- Gets or sets currency.
- Environment
Type string - Gets or sets environment type.
- Licensing
Program string - Gets or sets licensing program.
- Pricing
Tier string - Gets or sets pricing tier.
- Savings
Options string - Gets or sets savings options.
- Sizing
Criteria string - Gets or sets sizing criteria.
- Discount
Percentage float64 - Gets or sets discount percentage.
- Performance
Data PerfData Settings Response - Gets or sets performance data settings.
- Scaling
Factor float64 - Gets or sets scaling factor.
- azure
Location String - Gets or sets azure location.
- category String
- Gets or sets azure VM category.
- consolidation String
- Gets or sets consolidation type.
- currency String
- Gets or sets currency.
- environment
Type String - Gets or sets environment type.
- licensing
Program String - Gets or sets licensing program.
- pricing
Tier String - Gets or sets pricing tier.
- savings
Options String - Gets or sets savings options.
- sizing
Criteria String - Gets or sets sizing criteria.
- discount
Percentage Double - Gets or sets discount percentage.
- performance
Data PerfData Settings Response - Gets or sets performance data settings.
- scaling
Factor Double - Gets or sets scaling factor.
- azure
Location string - Gets or sets azure location.
- category string
- Gets or sets azure VM category.
- consolidation string
- Gets or sets consolidation type.
- currency string
- Gets or sets currency.
- environment
Type string - Gets or sets environment type.
- licensing
Program string - Gets or sets licensing program.
- pricing
Tier string - Gets or sets pricing tier.
- savings
Options string - Gets or sets savings options.
- sizing
Criteria string - Gets or sets sizing criteria.
- discount
Percentage number - Gets or sets discount percentage.
- performance
Data PerfData Settings Response - Gets or sets performance data settings.
- scaling
Factor number - Gets or sets scaling factor.
- azure_
location str - Gets or sets azure location.
- category str
- Gets or sets azure VM category.
- consolidation str
- Gets or sets consolidation type.
- currency str
- Gets or sets currency.
- environment_
type str - Gets or sets environment type.
- licensing_
program str - Gets or sets licensing program.
- pricing_
tier str - Gets or sets pricing tier.
- savings_
options str - Gets or sets savings options.
- sizing_
criteria str - Gets or sets sizing criteria.
- discount_
percentage float - Gets or sets discount percentage.
- performance_
data PerfData Settings Response - Gets or sets performance data settings.
- scaling_
factor float - Gets or sets scaling factor.
- azure
Location String - Gets or sets azure location.
- category String
- Gets or sets azure VM category.
- consolidation String
- Gets or sets consolidation type.
- currency String
- Gets or sets currency.
- environment
Type String - Gets or sets environment type.
- licensing
Program String - Gets or sets licensing program.
- pricing
Tier String - Gets or sets pricing tier.
- savings
Options String - Gets or sets savings options.
- sizing
Criteria String - Gets or sets sizing criteria.
- discount
Percentage Number - Gets or sets discount percentage.
- performance
Data Property Map - Gets or sets performance data settings.
- scaling
Factor Number - Gets or sets scaling factor.
AssessmentScopeParameters, AssessmentScopeParametersArgs
- Server
Group stringId - Gets or sets the server group id.
- Server
Group stringId - Gets or sets the server group id.
- server
Group StringId - Gets or sets the server group id.
- server
Group stringId - Gets or sets the server group id.
- server_
group_ strid - Gets or sets the server group id.
- server
Group StringId - Gets or sets the server group id.
AssessmentScopeParametersResponse, AssessmentScopeParametersResponseArgs
- Server
Group stringId - Gets or sets the server group id.
- Server
Group stringId - Gets or sets the server group id.
- server
Group StringId - Gets or sets the server group id.
- server
Group stringId - Gets or sets the server group id.
- server_
group_ strid - Gets or sets the server group id.
- server
Group StringId - Gets or sets the server group id.
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.
AzureCurrency, AzureCurrencyArgs
- Unknown
- Unknown
- USD
- USD
- DKK
- DKK
- CAD
- CAD
- IDR
- IDR
- JPY
- JPY
- KRW
- KRW
- NZD
- NZD
- NOK
- NOK
- RUB
- RUB
- SAR
- SAR
- ZAR
- ZAR
- SEK
- SEK
- TRY
- TRY
- GBP
- GBP
- MXN
- MXN
- MYR
- MYR
- INR
- INR
- HKD
- HKD
- BRL
- BRL
- TWD
- TWD
- EUR
- EUR
- CHF
- CHF
- ARS
- ARS
- AUD
- AUD
- CNY
- CNY
- Azure
Currency Unknown - Unknown
- Azure
Currency USD - USD
- Azure
Currency DKK - DKK
- Azure
Currency CAD - CAD
- Azure
Currency IDR - IDR
- Azure
Currency JPY - JPY
- Azure
Currency KRW - KRW
- Azure
Currency NZD - NZD
- Azure
Currency NOK - NOK
- Azure
Currency RUB - RUB
- Azure
Currency SAR - SAR
- Azure
Currency ZAR - ZAR
- Azure
Currency SEK - SEK
- Azure
Currency TRY - TRY
- Azure
Currency GBP - GBP
- Azure
Currency MXN - MXN
- Azure
Currency MYR - MYR
- Azure
Currency INR - INR
- Azure
Currency HKD - HKD
- Azure
Currency BRL - BRL
- Azure
Currency TWD - TWD
- Azure
Currency EUR - EUR
- Azure
Currency CHF - CHF
- Azure
Currency ARS - ARS
- Azure
Currency AUD - AUD
- Azure
Currency CNY - CNY
- Unknown
- Unknown
- USD
- USD
- DKK
- DKK
- CAD
- CAD
- IDR
- IDR
- JPY
- JPY
- KRW
- KRW
- NZD
- NZD
- NOK
- NOK
- RUB
- RUB
- SAR
- SAR
- ZAR
- ZAR
- SEK
- SEK
- TRY
- TRY
- GBP
- GBP
- MXN
- MXN
- MYR
- MYR
- INR
- INR
- HKD
- HKD
- BRL
- BRL
- TWD
- TWD
- EUR
- EUR
- CHF
- CHF
- ARS
- ARS
- AUD
- AUD
- CNY
- CNY
- Unknown
- Unknown
- USD
- USD
- DKK
- DKK
- CAD
- CAD
- IDR
- IDR
- JPY
- JPY
- KRW
- KRW
- NZD
- NZD
- NOK
- NOK
- RUB
- RUB
- SAR
- SAR
- ZAR
- ZAR
- SEK
- SEK
- TRY
- TRY
- GBP
- GBP
- MXN
- MXN
- MYR
- MYR
- INR
- INR
- HKD
- HKD
- BRL
- BRL
- TWD
- TWD
- EUR
- EUR
- CHF
- CHF
- ARS
- ARS
- AUD
- AUD
- CNY
- CNY
- UNKNOWN
- Unknown
- USD
- USD
- DKK
- DKK
- CAD
- CAD
- IDR
- IDR
- JPY
- JPY
- KRW
- KRW
- NZD
- NZD
- NOK
- NOK
- RUB
- RUB
- SAR
- SAR
- ZAR
- ZAR
- SEK
- SEK
- TRY_
- TRY
- GBP
- GBP
- MXN
- MXN
- MYR
- MYR
- INR
- INR
- HKD
- HKD
- BRL
- BRL
- TWD
- TWD
- EUR
- EUR
- CHF
- CHF
- ARS
- ARS
- AUD
- AUD
- CNY
- CNY
- "Unknown"
- Unknown
- "USD"
- USD
- "DKK"
- DKK
- "CAD"
- CAD
- "IDR"
- IDR
- "JPY"
- JPY
- "KRW"
- KRW
- "NZD"
- NZD
- "NOK"
- NOK
- "RUB"
- RUB
- "SAR"
- SAR
- "ZAR"
- ZAR
- "SEK"
- SEK
- "TRY"
- TRY
- "GBP"
- GBP
- "MXN"
- MXN
- "MYR"
- MYR
- "INR"
- INR
- "HKD"
- HKD
- "BRL"
- BRL
- "TWD"
- TWD
- "EUR"
- EUR
- "CHF"
- CHF
- "ARS"
- ARS
- "AUD"
- AUD
- "CNY"
- CNY
AzureEnvironmentType, AzureEnvironmentTypeArgs
- Unknown
- UnknownUnknown. Indicates missing data.
- Dev
Test - DevTestDevelopment or Test Environment.
- Production
- ProductionProduction Environment.
- Azure
Environment Type Unknown - UnknownUnknown. Indicates missing data.
- Azure
Environment Type Dev Test - DevTestDevelopment or Test Environment.
- Azure
Environment Type Production - ProductionProduction Environment.
- Unknown
- UnknownUnknown. Indicates missing data.
- Dev
Test - DevTestDevelopment or Test Environment.
- Production
- ProductionProduction Environment.
- Unknown
- UnknownUnknown. Indicates missing data.
- Dev
Test - DevTestDevelopment or Test Environment.
- Production
- ProductionProduction Environment.
- UNKNOWN
- UnknownUnknown. Indicates missing data.
- DEV_TEST
- DevTestDevelopment or Test Environment.
- PRODUCTION
- ProductionProduction Environment.
- "Unknown"
- UnknownUnknown. Indicates missing data.
- "Dev
Test" - DevTestDevelopment or Test Environment.
- "Production"
- ProductionProduction Environment.
AzureVmCategory, AzureVmCategoryArgs
- All
- AllIndicates All categories of VM.
- Compute
Optimized - ComputeOptimizedCompute Optimized.
- General
Purpose - GeneralPurposeGeneral Purpose.
- Gpu
Optimized - GpuOptimizedGPU Optimized.
- High
Performance Compute - HighPerformanceComputeHigh Performance Compute.
- Memory
Optimized - MemoryOptimizedMemory Optimized.
- Storage
Optimized - StorageOptimizedStorage Optimized.
- Isolated
- IsolatedIsolated VM.
- Azure
Vm Category All - AllIndicates All categories of VM.
- Azure
Vm Category Compute Optimized - ComputeOptimizedCompute Optimized.
- Azure
Vm Category General Purpose - GeneralPurposeGeneral Purpose.
- Azure
Vm Category Gpu Optimized - GpuOptimizedGPU Optimized.
- Azure
Vm Category High Performance Compute - HighPerformanceComputeHigh Performance Compute.
- Azure
Vm Category Memory Optimized - MemoryOptimizedMemory Optimized.
- Azure
Vm Category Storage Optimized - StorageOptimizedStorage Optimized.
- Azure
Vm Category Isolated - IsolatedIsolated VM.
- All
- AllIndicates All categories of VM.
- Compute
Optimized - ComputeOptimizedCompute Optimized.
- General
Purpose - GeneralPurposeGeneral Purpose.
- Gpu
Optimized - GpuOptimizedGPU Optimized.
- High
Performance Compute - HighPerformanceComputeHigh Performance Compute.
- Memory
Optimized - MemoryOptimizedMemory Optimized.
- Storage
Optimized - StorageOptimizedStorage Optimized.
- Isolated
- IsolatedIsolated VM.
- All
- AllIndicates All categories of VM.
- Compute
Optimized - ComputeOptimizedCompute Optimized.
- General
Purpose - GeneralPurposeGeneral Purpose.
- Gpu
Optimized - GpuOptimizedGPU Optimized.
- High
Performance Compute - HighPerformanceComputeHigh Performance Compute.
- Memory
Optimized - MemoryOptimizedMemory Optimized.
- Storage
Optimized - StorageOptimizedStorage Optimized.
- Isolated
- IsolatedIsolated VM.
- ALL
- AllIndicates All categories of VM.
- COMPUTE_OPTIMIZED
- ComputeOptimizedCompute Optimized.
- GENERAL_PURPOSE
- GeneralPurposeGeneral Purpose.
- GPU_OPTIMIZED
- GpuOptimizedGPU Optimized.
- HIGH_PERFORMANCE_COMPUTE
- HighPerformanceComputeHigh Performance Compute.
- MEMORY_OPTIMIZED
- MemoryOptimizedMemory Optimized.
- STORAGE_OPTIMIZED
- StorageOptimizedStorage Optimized.
- ISOLATED
- IsolatedIsolated VM.
- "All"
- AllIndicates All categories of VM.
- "Compute
Optimized" - ComputeOptimizedCompute Optimized.
- "General
Purpose" - GeneralPurposeGeneral Purpose.
- "Gpu
Optimized" - GpuOptimizedGPU Optimized.
- "High
Performance Compute" - HighPerformanceComputeHigh Performance Compute.
- "Memory
Optimized" - MemoryOptimizedMemory Optimized.
- "Storage
Optimized" - StorageOptimizedStorage Optimized.
- "Isolated"
- IsolatedIsolated VM.
ConsolidationType, ConsolidationTypeArgs
- Full
- FullFull Consolidation.
- As
On Source - AsOnSourceAs On Source or On Premises Consolidation.
- Consolidation
Type Full - FullFull Consolidation.
- Consolidation
Type As On Source - AsOnSourceAs On Source or On Premises Consolidation.
- Full
- FullFull Consolidation.
- As
On Source - AsOnSourceAs On Source or On Premises Consolidation.
- Full
- FullFull Consolidation.
- As
On Source - AsOnSourceAs On Source or On Premises Consolidation.
- FULL
- FullFull Consolidation.
- AS_ON_SOURCE
- AsOnSourceAs On Source or On Premises Consolidation.
- "Full"
- FullFull Consolidation.
- "As
On Source" - AsOnSourceAs On Source or On Premises Consolidation.
LicensingProgram, LicensingProgramArgs
- Default
- DefaultDefault value. Indicates Pay As You Go.
- EA
- EAEnterprise Agreement.
- Licensing
Program Default - DefaultDefault value. Indicates Pay As You Go.
- Licensing
Program EA - EAEnterprise Agreement.
- Default
- DefaultDefault value. Indicates Pay As You Go.
- EA
- EAEnterprise Agreement.
- Default
- DefaultDefault value. Indicates Pay As You Go.
- EA
- EAEnterprise Agreement.
- DEFAULT
- DefaultDefault value. Indicates Pay As You Go.
- EA
- EAEnterprise Agreement.
- "Default"
- DefaultDefault value. Indicates Pay As You Go.
- "EA"
- EAEnterprise Agreement.
Percentile, PercentileArgs
- Percentile50
- Percentile50Percentile 50.
- Percentile90
- Percentile90Percentile 90.
- Percentile95
- Percentile95Percentile 95.
- Percentile99
- Percentile99Percentile 99.
- Percentile
Percentile50 - Percentile50Percentile 50.
- Percentile
Percentile90 - Percentile90Percentile 90.
- Percentile
Percentile95 - Percentile95Percentile 95.
- Percentile
Percentile99 - Percentile99Percentile 99.
- Percentile50
- Percentile50Percentile 50.
- Percentile90
- Percentile90Percentile 90.
- Percentile95
- Percentile95Percentile 95.
- Percentile99
- Percentile99Percentile 99.
- Percentile50
- Percentile50Percentile 50.
- Percentile90
- Percentile90Percentile 90.
- Percentile95
- Percentile95Percentile 95.
- Percentile99
- Percentile99Percentile 99.
- PERCENTILE50
- Percentile50Percentile 50.
- PERCENTILE90
- Percentile90Percentile 90.
- PERCENTILE95
- Percentile95Percentile 95.
- PERCENTILE99
- Percentile99Percentile 99.
- "Percentile50"
- Percentile50Percentile 50.
- "Percentile90"
- Percentile90Percentile 90.
- "Percentile95"
- Percentile95Percentile 95.
- "Percentile99"
- Percentile99Percentile 99.
PerfDataSettings, PerfDataSettingsArgs
- Percentile
string | Pulumi.
Azure Native. Migrate. Percentile - Gets percentile utilization for performance data.
- Time
Range string | Pulumi.Azure Native. Migrate. Time Range - Gets perf data time range.
- Perf
Data stringEnd Time - Gets or sets perf data end time.
- Perf
Data stringStart Time - Gets or sets perf data start time.
- Percentile string | Percentile
- Gets percentile utilization for performance data.
- Time
Range string | TimeRange - Gets perf data time range.
- Perf
Data stringEnd Time - Gets or sets perf data end time.
- Perf
Data stringStart Time - Gets or sets perf data start time.
- percentile String | Percentile
- Gets percentile utilization for performance data.
- time
Range String | TimeRange - Gets perf data time range.
- perf
Data StringEnd Time - Gets or sets perf data end time.
- perf
Data StringStart Time - Gets or sets perf data start time.
- percentile string | Percentile
- Gets percentile utilization for performance data.
- time
Range string | TimeRange - Gets perf data time range.
- perf
Data stringEnd Time - Gets or sets perf data end time.
- perf
Data stringStart Time - Gets or sets perf data start time.
- percentile str | Percentile
- Gets percentile utilization for performance data.
- time_
range str | TimeRange - Gets perf data time range.
- perf_
data_ strend_ time - Gets or sets perf data end time.
- perf_
data_ strstart_ time - Gets or sets perf data start time.
- percentile String | "Percentile50" | "Percentile90" | "Percentile95" | "Percentile99"
- Gets percentile utilization for performance data.
- time
Range String | "Day" | "Week" | "Month" | "Custom" - Gets perf data time range.
- perf
Data StringEnd Time - Gets or sets perf data end time.
- perf
Data StringStart Time - Gets or sets perf data start time.
PerfDataSettingsResponse, PerfDataSettingsResponseArgs
- Percentile string
- Gets percentile utilization for performance data.
- Time
Range string - Gets perf data time range.
- Perf
Data stringEnd Time - Gets or sets perf data end time.
- Perf
Data stringStart Time - Gets or sets perf data start time.
- Percentile string
- Gets percentile utilization for performance data.
- Time
Range string - Gets perf data time range.
- Perf
Data stringEnd Time - Gets or sets perf data end time.
- Perf
Data stringStart Time - Gets or sets perf data start time.
- percentile String
- Gets percentile utilization for performance data.
- time
Range String - Gets perf data time range.
- perf
Data StringEnd Time - Gets or sets perf data end time.
- perf
Data StringStart Time - Gets or sets perf data start time.
- percentile string
- Gets percentile utilization for performance data.
- time
Range string - Gets perf data time range.
- perf
Data stringEnd Time - Gets or sets perf data end time.
- perf
Data stringStart Time - Gets or sets perf data start time.
- percentile str
- Gets percentile utilization for performance data.
- time_
range str - Gets perf data time range.
- perf_
data_ strend_ time - Gets or sets perf data end time.
- perf_
data_ strstart_ time - Gets or sets perf data start time.
- percentile String
- Gets percentile utilization for performance data.
- time
Range String - Gets perf data time range.
- perf
Data StringEnd Time - Gets or sets perf data end time.
- perf
Data StringStart Time - Gets or sets perf data start time.
PricingTier, PricingTierArgs
- Standard
- StandardStandard Pricing Tier.
- Free
- FreeFree Pricing Tier.
- Pricing
Tier Standard - StandardStandard Pricing Tier.
- Pricing
Tier Free - FreeFree Pricing Tier.
- Standard
- StandardStandard Pricing Tier.
- Free
- FreeFree Pricing Tier.
- Standard
- StandardStandard Pricing Tier.
- Free
- FreeFree Pricing Tier.
- STANDARD
- StandardStandard Pricing Tier.
- FREE
- FreeFree Pricing Tier.
- "Standard"
- StandardStandard Pricing Tier.
- "Free"
- FreeFree Pricing Tier.
SavingsOptions, SavingsOptionsArgs
- None
- NoneSavings Options is not applicable.
- One
Year Savings - OneYearSavingsOne Year Savings Plan.
- Three
Years Savings - ThreeYearsSavingsThree Years Savings Plan.
- One
Year Reserved - OneYearReservedOne Year Reserved Instances.
- Three
Years Reserved - ThreeYearsReservedThree Years Reserved Instances.
- Savings
Options None - NoneSavings Options is not applicable.
- Savings
Options One Year Savings - OneYearSavingsOne Year Savings Plan.
- Savings
Options Three Years Savings - ThreeYearsSavingsThree Years Savings Plan.
- Savings
Options One Year Reserved - OneYearReservedOne Year Reserved Instances.
- Savings
Options Three Years Reserved - ThreeYearsReservedThree Years Reserved Instances.
- None
- NoneSavings Options is not applicable.
- One
Year Savings - OneYearSavingsOne Year Savings Plan.
- Three
Years Savings - ThreeYearsSavingsThree Years Savings Plan.
- One
Year Reserved - OneYearReservedOne Year Reserved Instances.
- Three
Years Reserved - ThreeYearsReservedThree Years Reserved Instances.
- None
- NoneSavings Options is not applicable.
- One
Year Savings - OneYearSavingsOne Year Savings Plan.
- Three
Years Savings - ThreeYearsSavingsThree Years Savings Plan.
- One
Year Reserved - OneYearReservedOne Year Reserved Instances.
- Three
Years Reserved - ThreeYearsReservedThree Years Reserved Instances.
- NONE
- NoneSavings Options is not applicable.
- ONE_YEAR_SAVINGS
- OneYearSavingsOne Year Savings Plan.
- THREE_YEARS_SAVINGS
- ThreeYearsSavingsThree Years Savings Plan.
- ONE_YEAR_RESERVED
- OneYearReservedOne Year Reserved Instances.
- THREE_YEARS_RESERVED
- ThreeYearsReservedThree Years Reserved Instances.
- "None"
- NoneSavings Options is not applicable.
- "One
Year Savings" - OneYearSavingsOne Year Savings Plan.
- "Three
Years Savings" - ThreeYearsSavingsThree Years Savings Plan.
- "One
Year Reserved" - OneYearReservedOne Year Reserved Instances.
- "Three
Years Reserved" - ThreeYearsReservedThree Years Reserved Instances.
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:AksAssessmentOperation testaksassessment /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/aksAssessments/{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