UNPKG

@kengachu-pulumi/azure-native-apimanagement

Version:

Pulumi Azure Native package for apimanagement

53 lines (52 loc) 1.61 kB
import * as pulumi from "@pulumi/pulumi"; /** * Gets the secret of the named value specified by its identifier. * Azure REST API version: 2022-08-01. * * Other available API versions: 2022-09-01-preview, 2023-03-01-preview. */ export declare function listNamedValue(args: ListNamedValueArgs, opts?: pulumi.InvokeOptions): Promise<ListNamedValueResult>; export interface ListNamedValueArgs { /** * Identifier of the NamedValue. */ namedValueId: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * The name of the API Management service. */ serviceName: string; } /** * Client or app secret used in IdentityProviders, Aad, OpenID or OAuth. */ export interface ListNamedValueResult { /** * This is secret value of the NamedValue entity. */ readonly value?: string; } /** * Gets the secret of the named value specified by its identifier. * Azure REST API version: 2022-08-01. * * Other available API versions: 2022-09-01-preview, 2023-03-01-preview. */ export declare function listNamedValueOutput(args: ListNamedValueOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<ListNamedValueResult>; export interface ListNamedValueOutputArgs { /** * Identifier of the NamedValue. */ namedValueId: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * The name of the API Management service. */ serviceName: pulumi.Input<string>; }