@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Get a list of SAP supported SKUs for ASCS, Application and Database tier.
*
* Uses Azure REST API version 2024-09-01.
*/
export declare function getSapVirtualInstanceInvokeSapSupportedSku(args: GetSapVirtualInstanceInvokeSapSupportedSkuArgs, opts?: pulumi.InvokeOptions): Promise<GetSapVirtualInstanceInvokeSapSupportedSkuResult>;
export interface GetSapVirtualInstanceInvokeSapSupportedSkuArgs {
/**
* The geo-location where the resource is to be created.
*/
appLocation: string;
/**
* The database type. Eg: HANA, DB2, etc
*/
databaseType: string | enums.workloads.SAPDatabaseType;
/**
* 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 list of supported SKUs for different resources which are part of SAP deployment.
*/
export interface GetSapVirtualInstanceInvokeSapSupportedSkuResult {
/**
* Gets the list of SAP supported SKUs.
*/
readonly supportedSkus?: outputs.workloads.SAPSupportedSkuResponse[];
}
/**
* Get a list of SAP supported SKUs for ASCS, Application and Database tier.
*
* Uses Azure REST API version 2024-09-01.
*/
export declare function getSapVirtualInstanceInvokeSapSupportedSkuOutput(args: GetSapVirtualInstanceInvokeSapSupportedSkuOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSapVirtualInstanceInvokeSapSupportedSkuResult>;
export interface GetSapVirtualInstanceInvokeSapSupportedSkuOutputArgs {
/**
* The geo-location where the resource is to be created.
*/
appLocation: pulumi.Input<string>;
/**
* The database type. Eg: HANA, DB2, etc
*/
databaseType: pulumi.Input<string | enums.workloads.SAPDatabaseType>;
/**
* 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>;
}