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

52 lines (51 loc) 2.4 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Operation to list the RegistrationTokens associated with the HostPool * * Uses Azure REST API version 2024-04-03. * * Other available API versions: 2024-04-08-preview, 2024-08-08-preview, 2024-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native desktopvirtualization [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listHostPoolRegistrationTokens(args: ListHostPoolRegistrationTokensArgs, opts?: pulumi.InvokeOptions): Promise<ListHostPoolRegistrationTokensResult>; export interface ListHostPoolRegistrationTokensArgs { /** * The name of the host pool within the specified resource group */ hostPoolName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * List of RegistrationToken definitions. */ export interface ListHostPoolRegistrationTokensResult { /** * Link to the next page of results. */ readonly nextLink: string; /** * List of RegistrationToken definitions. */ readonly value?: outputs.desktopvirtualization.RegistrationTokenMinimalResponse[]; } /** * Operation to list the RegistrationTokens associated with the HostPool * * Uses Azure REST API version 2024-04-03. * * Other available API versions: 2024-04-08-preview, 2024-08-08-preview, 2024-11-01-preview, 2025-03-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native desktopvirtualization [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listHostPoolRegistrationTokensOutput(args: ListHostPoolRegistrationTokensOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListHostPoolRegistrationTokensResult>; export interface ListHostPoolRegistrationTokensOutputArgs { /** * The name of the host pool within the specified resource group */ hostPoolName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }