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

51 lines (50 loc) 1.65 kB
import * as pulumi from "@pulumi/pulumi"; /** * Lists the decrypted value of the specified named value of the secret resource. This is a privileged operation. * * Uses Azure REST API version 2018-09-01-preview. */ export declare function listSecretValue(args: ListSecretValueArgs, opts?: pulumi.InvokeOptions): Promise<ListSecretValueResult>; export interface ListSecretValueArgs { /** * Azure resource group name */ resourceGroupName: string; /** * The name of the secret resource. */ secretResourceName: string; /** * The name of the secret resource value which is typically the version identifier for the value. */ secretValueResourceName: string; } /** * This type represents the unencrypted value of the secret. */ export interface ListSecretValueResult { /** * The actual value of the secret. */ readonly value?: string; } /** * Lists the decrypted value of the specified named value of the secret resource. This is a privileged operation. * * Uses Azure REST API version 2018-09-01-preview. */ export declare function listSecretValueOutput(args: ListSecretValueOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListSecretValueResult>; export interface ListSecretValueOutputArgs { /** * Azure resource group name */ resourceGroupName: pulumi.Input<string>; /** * The name of the secret resource. */ secretResourceName: pulumi.Input<string>; /** * The name of the secret resource value which is typically the version identifier for the value. */ secretValueResourceName: pulumi.Input<string>; }