@kengachu-pulumi/azure-native-apimanagement
Version:
Pulumi Azure Native package for apimanagement
47 lines (46 loc) • 1.38 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Gets the secret of the named value specified by its identifier.
*/
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.
*/
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>;
}