@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 4.01 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as enums from "../types/enums";
/**
* Get SAP sizing recommendations by providing input SAPS for application tier and memory required for database tier
*
* Uses Azure REST API version 2023-10-01-preview.
*
* Other available API versions: 2023-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native workloads [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getSAPSizingRecommendations(args: GetSAPSizingRecommendationsArgs, opts?: pulumi.InvokeOptions): Promise<GetSAPSizingRecommendationsResult>;
export interface GetSAPSizingRecommendationsArgs {
/**
* The geo-location where the resource is to be created.
*/
appLocation: string;
/**
* The database type.
*/
databaseType: string | enums.workloads.SAPDatabaseType;
/**
* The database memory configuration.
*/
dbMemory: number;
/**
* The DB scale method.
*/
dbScaleMethod?: string | enums.workloads.SAPDatabaseScaleMethod;
/**
* The deployment type. Eg: SingleServer/ThreeTier
*/
deploymentType: string | enums.workloads.SAPDeploymentType;
/**
* Defines the environment type - Production/Non Production.
*/
environment: string | enums.workloads.SAPEnvironmentType;
/**
* The high availability type.
*/
highAvailabilityType?: string | enums.workloads.SAPHighAvailabilityType;
/**
* The name of Azure region.
*/
location: string;
/**
* Defines the SAP Product type.
*/
sapProduct: string | enums.workloads.SAPProductType;
/**
* The SAP Application Performance Standard measurement.
*/
saps: number;
}
/**
* The SAP sizing recommendation result.
*/
export interface GetSAPSizingRecommendationsResult {
/**
* The type of SAP deployment, single server or Three tier.
*/
readonly deploymentType: string;
}
/**
* Get SAP sizing recommendations by providing input SAPS for application tier and memory required for database tier
*
* Uses Azure REST API version 2023-10-01-preview.
*
* Other available API versions: 2023-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native workloads [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getSAPSizingRecommendationsOutput(args: GetSAPSizingRecommendationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSAPSizingRecommendationsResult>;
export interface GetSAPSizingRecommendationsOutputArgs {
/**
* The geo-location where the resource is to be created.
*/
appLocation: pulumi.Input<string>;
/**
* The database type.
*/
databaseType: pulumi.Input<string | enums.workloads.SAPDatabaseType>;
/**
* The database memory configuration.
*/
dbMemory: pulumi.Input<number>;
/**
* The DB scale method.
*/
dbScaleMethod?: pulumi.Input<string | enums.workloads.SAPDatabaseScaleMethod>;
/**
* The deployment type. Eg: SingleServer/ThreeTier
*/
deploymentType: pulumi.Input<string | enums.workloads.SAPDeploymentType>;
/**
* Defines the environment type - Production/Non Production.
*/
environment: pulumi.Input<string | enums.workloads.SAPEnvironmentType>;
/**
* The high availability type.
*/
highAvailabilityType?: pulumi.Input<string | enums.workloads.SAPHighAvailabilityType>;
/**
* The name of Azure region.
*/
location: pulumi.Input<string>;
/**
* Defines the SAP Product type.
*/
sapProduct: pulumi.Input<string | enums.workloads.SAPProductType>;
/**
* The SAP Application Performance Standard measurement.
*/
saps: pulumi.Input<number>;
}