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

89 lines (88 loc) 3.38 kB
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 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 getSAPSupportedSku(args: GetSAPSupportedSkuArgs, opts?: pulumi.InvokeOptions): Promise<GetSAPSupportedSkuResult>; export interface GetSAPSupportedSkuArgs { /** * 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 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 GetSAPSupportedSkuResult { /** * 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 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 getSAPSupportedSkuOutput(args: GetSAPSupportedSkuOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSAPSupportedSkuResult>; export interface GetSAPSupportedSkuOutputArgs { /** * 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 Azure region. */ location: pulumi.Input<string>; /** * Defines the SAP Product type. */ sapProduct: pulumi.Input<string | enums.workloads.SAPProductType>; }