UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

108 lines (107 loc) 3.44 kB
import * as pulumi from "@pulumi/pulumi"; import * as enums from "../types/enums"; /** * Gets the sizing recommendations. * * Uses Azure REST API version 2024-09-01. */ export declare function getSapVirtualInstanceInvokeSizingRecommendations(args: GetSapVirtualInstanceInvokeSizingRecommendationsArgs, opts?: pulumi.InvokeOptions): Promise<GetSapVirtualInstanceInvokeSizingRecommendationsResult>; export interface GetSapVirtualInstanceInvokeSizingRecommendationsArgs { /** * 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 the 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 GetSapVirtualInstanceInvokeSizingRecommendationsResult { /** * The deployment type. Eg: SingleServer/ThreeTier */ readonly deploymentType: string; } /** * Gets the sizing recommendations. * * Uses Azure REST API version 2024-09-01. */ export declare function getSapVirtualInstanceInvokeSizingRecommendationsOutput(args: GetSapVirtualInstanceInvokeSizingRecommendationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSapVirtualInstanceInvokeSizingRecommendationsResult>; export interface GetSapVirtualInstanceInvokeSizingRecommendationsOutputArgs { /** * 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 the 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>; }