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

55 lines (54 loc) 2.18 kB
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>; }