@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 10.3 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Web app Assessment REST resource.
*
* Uses Azure REST API version 2024-01-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-04-01-preview.
*
* Other available API versions: 2023-04-01-preview, 2023-05-01-preview, 2023-09-09-preview, 2024-01-15. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native migrate [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare class WebAppAssessmentV2Operation extends pulumi.CustomResource {
/**
* Get an existing WebAppAssessmentV2Operation resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): WebAppAssessmentV2Operation;
/**
* Returns true if the given object is an instance of WebAppAssessmentV2Operation. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is WebAppAssessmentV2Operation;
/**
* Gets or sets user configurable app service container database settings.
*/
readonly appSvcContainerSettings: pulumi.Output<outputs.migrate.AppSvcContainerSettingsResponse | undefined>;
/**
* Gets or sets user configurable app service native settings.
*/
readonly appSvcNativeSettings: pulumi.Output<outputs.migrate.AppSvcNativeSettingsResponse | undefined>;
/**
* Assessment type of the assessment.
*/
readonly assessmentType: pulumi.Output<string | undefined>;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: pulumi.Output<string>;
/**
* Azure Location or Azure region where to which the machines will be migrated.
*/
readonly azureLocation: pulumi.Output<string | undefined>;
/**
* Azure Offer Code.
*/
readonly azureOfferCode: pulumi.Output<string | undefined>;
/**
* Gets or sets a value indicating azure security offering type.
*/
readonly azureSecurityOfferingType: pulumi.Output<string | undefined>;
/**
* Confidence Rating in Percentage.
*/
readonly confidenceRatingInPercentage: pulumi.Output<number | undefined>;
/**
* Date and Time when assessment was created.
*/
readonly createdTimestamp: pulumi.Output<string>;
/**
* Currency in which prices should be reported.
*/
readonly currency: pulumi.Output<string | undefined>;
/**
* Custom discount percentage.
*/
readonly discountPercentage: pulumi.Output<number | undefined>;
/**
* Gets or sets user configurable discovered entity settings.
*/
readonly discoveredEntityLightSummary: pulumi.Output<outputs.migrate.DiscoveredEntityLightSummaryResponse | undefined>;
/**
* Gets or sets the Enterprise agreement subscription id.
*/
readonly eaSubscriptionId: pulumi.Output<string | undefined>;
/**
* Gets or sets the duration for which the entity (Web app, VMs) are up in the
* on-premises environment.
*/
readonly entityUptime: pulumi.Output<outputs.migrate.EntityUptimeResponse | undefined>;
/**
* Gets or sets user configurable setting to display the environment type.
*/
readonly environmentType: pulumi.Output<string | undefined>;
/**
* Gets the group type for the assessment.
*/
readonly groupType: pulumi.Output<string | undefined>;
/**
* The name of the resource
*/
readonly name: pulumi.Output<string>;
/**
* Percentile of the utilization data values to be considered while assessing
* machines.
*/
readonly percentile: pulumi.Output<string | undefined>;
/**
* Gets or sets the end time to consider performance data for assessment.
*/
readonly perfDataEndTime: pulumi.Output<string | undefined>;
/**
* Gets or sets the start time to consider performance data for assessment.
*/
readonly perfDataStartTime: pulumi.Output<string | undefined>;
/**
* Last time when rates were queried.
*/
readonly pricesTimestamp: pulumi.Output<string>;
/**
* The status of the last operation.
*/
readonly provisioningState: pulumi.Output<string>;
/**
* Reserved instance.
*/
readonly reservedInstance: pulumi.Output<string | undefined>;
/**
* Percentage of buffer that user wants on performance metrics when recommending
* Azure sizes.
*/
readonly scalingFactor: pulumi.Output<number | undefined>;
/**
* Schema version.
*/
readonly schemaVersion: pulumi.Output<string>;
/**
* Assessment sizing criterion.
*/
readonly sizingCriterion: pulumi.Output<string | undefined>;
/**
* User configurable setting to display the Stage of Assessment.
*/
readonly stage: pulumi.Output<string>;
/**
* Whether assessment is in valid state and all machines have been assessed.
*/
readonly status: pulumi.Output<string>;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: pulumi.Output<outputs.migrate.SystemDataResponse>;
/**
* Time Range for which the historic utilization data should be considered for
* assessment.
*/
readonly timeRange: pulumi.Output<string | undefined>;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: pulumi.Output<string>;
/**
* Date and Time when assessment was last updated.
*/
readonly updatedTimestamp: pulumi.Output<string>;
/**
* Create a WebAppAssessmentV2Operation resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: WebAppAssessmentV2OperationArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a WebAppAssessmentV2Operation resource.
*/
export interface WebAppAssessmentV2OperationArgs {
/**
* Gets or sets user configurable app service container database settings.
*/
appSvcContainerSettings?: pulumi.Input<inputs.migrate.AppSvcContainerSettingsArgs>;
/**
* Gets or sets user configurable app service native settings.
*/
appSvcNativeSettings?: pulumi.Input<inputs.migrate.AppSvcNativeSettingsArgs>;
/**
* Web app Assessment arm name.
*/
assessmentName?: pulumi.Input<string>;
/**
* Assessment type of the assessment.
*/
assessmentType?: pulumi.Input<string | enums.migrate.AssessmentType>;
/**
* Azure Location or Azure region where to which the machines will be migrated.
*/
azureLocation?: pulumi.Input<string>;
/**
* Azure Offer Code.
*/
azureOfferCode?: pulumi.Input<string | enums.migrate.AzureOfferCode>;
/**
* Gets or sets a value indicating azure security offering type.
*/
azureSecurityOfferingType?: pulumi.Input<string | enums.migrate.AzureSecurityOfferingType>;
/**
* Confidence Rating in Percentage.
*/
confidenceRatingInPercentage?: pulumi.Input<number>;
/**
* Currency in which prices should be reported.
*/
currency?: pulumi.Input<string | enums.migrate.AzureCurrency>;
/**
* Custom discount percentage.
*/
discountPercentage?: pulumi.Input<number>;
/**
* Gets or sets user configurable discovered entity settings.
*/
discoveredEntityLightSummary?: pulumi.Input<inputs.migrate.DiscoveredEntityLightSummaryArgs>;
/**
* Gets or sets the Enterprise agreement subscription id.
*/
eaSubscriptionId?: pulumi.Input<string>;
/**
* Gets or sets the duration for which the entity (Web app, VMs) are up in the
* on-premises environment.
*/
entityUptime?: pulumi.Input<inputs.migrate.EntityUptimeArgs>;
/**
* Gets or sets user configurable setting to display the environment type.
*/
environmentType?: pulumi.Input<string | enums.migrate.EnvironmentType>;
/**
* Group ARM name
*/
groupName: pulumi.Input<string>;
/**
* Gets the group type for the assessment.
*/
groupType?: pulumi.Input<string | enums.migrate.GroupType>;
/**
* Percentile of the utilization data values to be considered while assessing
* machines.
*/
percentile?: pulumi.Input<string | enums.migrate.Percentile>;
/**
* Gets or sets the end time to consider performance data for assessment.
*/
perfDataEndTime?: pulumi.Input<string>;
/**
* Gets or sets the start time to consider performance data for assessment.
*/
perfDataStartTime?: pulumi.Input<string>;
/**
* Assessment Project Name
*/
projectName: pulumi.Input<string>;
/**
* Reserved instance.
*/
reservedInstance?: pulumi.Input<string | enums.migrate.AzureReservedInstance>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Percentage of buffer that user wants on performance metrics when recommending
* Azure sizes.
*/
scalingFactor?: pulumi.Input<number>;
/**
* Assessment sizing criterion.
*/
sizingCriterion?: pulumi.Input<string | enums.migrate.AssessmentSizingCriterion>;
/**
* Time Range for which the historic utilization data should be considered for
* assessment.
*/
timeRange?: pulumi.Input<string | enums.migrate.TimeRange>;
}