@kengachu-pulumi/azure-native-web
Version:
Pulumi Azure Native package for web
51 lines (50 loc) • 2.12 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Description for Get the RDP password for an IsCustomMode ServerFarm.
*
* Uses Azure REST API version 2025-03-01.
*
* Other available API versions: 2025-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native web [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getAppServicePlanServerFarmRdpPassword(args: GetAppServicePlanServerFarmRdpPasswordArgs, opts?: pulumi.InvokeOptions): Promise<GetAppServicePlanServerFarmRdpPasswordResult>;
export interface GetAppServicePlanServerFarmRdpPasswordArgs {
/**
* Name of the App Service plan.
*/
name: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Server Farm RDP connection details.
*/
export interface GetAppServicePlanServerFarmRdpPasswordResult {
/**
* The RDP password for the server farm.
*/
readonly rdpPassword?: string;
/**
* The RDP password expiry date.
*/
readonly rdpPasswordExpiry?: string;
}
/**
* Description for Get the RDP password for an IsCustomMode ServerFarm.
*
* Uses Azure REST API version 2025-03-01.
*
* Other available API versions: 2025-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native web [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getAppServicePlanServerFarmRdpPasswordOutput(args: GetAppServicePlanServerFarmRdpPasswordOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAppServicePlanServerFarmRdpPasswordResult>;
export interface GetAppServicePlanServerFarmRdpPasswordOutputArgs {
/**
* Name of the App Service plan.
*/
name: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}