@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.18 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Gets the gateway settings for the specified cluster.
*
* Uses Azure REST API version 2024-08-01-preview.
*
* Other available API versions: 2021-06-01, 2023-04-15-preview, 2023-08-15-preview, 2025-01-15-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hdinsight [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getClusterGatewaySettings(args: GetClusterGatewaySettingsArgs, opts?: pulumi.InvokeOptions): Promise<GetClusterGatewaySettingsResult>;
export interface GetClusterGatewaySettingsArgs {
/**
* The name of the cluster.
*/
clusterName: string;
/**
* The name of the resource group.
*/
resourceGroupName: string;
}
/**
* Gateway settings.
*/
export interface GetClusterGatewaySettingsResult {
/**
* Indicates whether or not the gateway settings based authorization is enabled.
*/
readonly isCredentialEnabled: string;
/**
* The gateway settings user password.
*/
readonly password: string;
/**
* The gateway settings user name.
*/
readonly userName: string;
}
/**
* Gets the gateway settings for the specified cluster.
*
* Uses Azure REST API version 2024-08-01-preview.
*
* Other available API versions: 2021-06-01, 2023-04-15-preview, 2023-08-15-preview, 2025-01-15-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hdinsight [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getClusterGatewaySettingsOutput(args: GetClusterGatewaySettingsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetClusterGatewaySettingsResult>;
export interface GetClusterGatewaySettingsOutputArgs {
/**
* The name of the cluster.
*/
clusterName: pulumi.Input<string>;
/**
* The name of the resource group.
*/
resourceGroupName: pulumi.Input<string>;
}