@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.64 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Get the recommended SAP Availability Zone Pair Details for your region.
*
* 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 getSAPAvailabilityZoneDetails(args: GetSAPAvailabilityZoneDetailsArgs, opts?: pulumi.InvokeOptions): Promise<GetSAPAvailabilityZoneDetailsResult>;
export interface GetSAPAvailabilityZoneDetailsArgs {
/**
* The geo-location where the SAP resources will be created.
*/
appLocation: string;
/**
* The database type. Eg: HANA, DB2, etc
*/
databaseType: string | enums.workloads.SAPDatabaseType;
/**
* The name of Azure region.
*/
location: string;
/**
* Defines the SAP Product type.
*/
sapProduct: string | enums.workloads.SAPProductType;
}
/**
* The list of supported availability zone pairs which are part of SAP HA deployment.
*/
export interface GetSAPAvailabilityZoneDetailsResult {
/**
* Gets the list of availability zone pairs.
*/
readonly availabilityZonePairs?: outputs.workloads.SAPAvailabilityZonePairResponse[];
}
/**
* Get the recommended SAP Availability Zone Pair Details for your region.
*
* 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 getSAPAvailabilityZoneDetailsOutput(args: GetSAPAvailabilityZoneDetailsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSAPAvailabilityZoneDetailsResult>;
export interface GetSAPAvailabilityZoneDetailsOutputArgs {
/**
* The geo-location where the SAP resources will be created.
*/
appLocation: pulumi.Input<string>;
/**
* The database type. Eg: HANA, DB2, etc
*/
databaseType: pulumi.Input<string | enums.workloads.SAPDatabaseType>;
/**
* The name of Azure region.
*/
location: pulumi.Input<string>;
/**
* Defines the SAP Product type.
*/
sapProduct: pulumi.Input<string | enums.workloads.SAPProductType>;
}