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

47 lines (46 loc) 1.36 kB
import * as pulumi from "@pulumi/pulumi"; /** * The set of available keys for this server. * * Uses Azure REST API version 2022-06-01. */ export declare function listFluidRelayServerKeys(args: ListFluidRelayServerKeysArgs, opts?: pulumi.InvokeOptions): Promise<ListFluidRelayServerKeysResult>; export interface ListFluidRelayServerKeysArgs { /** * The Fluid Relay server resource name. */ fluidRelayServerName: string; /** * The resource group containing the resource. */ resourceGroup: string; } /** * The set of available keys for this server. */ export interface ListFluidRelayServerKeysResult { /** * The primary key for this server */ readonly key1: string; /** * The secondary key for this server */ readonly key2: string; } /** * The set of available keys for this server. * * Uses Azure REST API version 2022-06-01. */ export declare function listFluidRelayServerKeysOutput(args: ListFluidRelayServerKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListFluidRelayServerKeysResult>; export interface ListFluidRelayServerKeysOutputArgs { /** * The Fluid Relay server resource name. */ fluidRelayServerName: pulumi.Input<string>; /** * The resource group containing the resource. */ resourceGroup: pulumi.Input<string>; }