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.64 kB
import * as pulumi from "@pulumi/pulumi"; /** * Returns the symmetric encrypted public encryption key of the manager. * * Uses Azure REST API version 2017-06-01. */ export declare function listManagerPublicEncryptionKey(args: ListManagerPublicEncryptionKeyArgs, opts?: pulumi.InvokeOptions): Promise<ListManagerPublicEncryptionKeyResult>; export interface ListManagerPublicEncryptionKeyArgs { /** * The manager name */ managerName: string; /** * The resource group name */ resourceGroupName: string; } /** * Represents the secrets encrypted using Symmetric Encryption Key. */ export interface ListManagerPublicEncryptionKeyResult { /** * The algorithm used to encrypt the "Value". */ readonly encryptionAlgorithm: string; /** * The value of the secret itself. If the secret is in plaintext or null then EncryptionAlgorithm will be none. */ readonly value: string; /** * The thumbprint of the cert that was used to encrypt "Value". */ readonly valueCertificateThumbprint?: string; } /** * Returns the symmetric encrypted public encryption key of the manager. * * Uses Azure REST API version 2017-06-01. */ export declare function listManagerPublicEncryptionKeyOutput(args: ListManagerPublicEncryptionKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListManagerPublicEncryptionKeyResult>; export interface ListManagerPublicEncryptionKeyOutputArgs { /** * The manager name */ managerName: pulumi.Input<string>; /** * The resource group name */ resourceGroupName: pulumi.Input<string>; }