@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.64 kB
TypeScript
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>;
}