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

111 lines (110 loc) 3.92 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the current version of the specified key from the specified key vault. * * Uses Azure REST API version 2024-11-01. * * Other available API versions: 2023-02-01, 2023-07-01, 2024-04-01-preview, 2024-12-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native keyvault [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getKey(args: GetKeyArgs, opts?: pulumi.InvokeOptions): Promise<GetKeyResult>; export interface GetKeyArgs { /** * The name of the key to be retrieved. */ keyName: string; /** * The name of the resource group which contains the specified key vault. */ resourceGroupName: string; /** * The name of the vault which contains the key to be retrieved. */ vaultName: string; } /** * The key resource. */ export interface GetKeyResult { /** * The attributes of the key. */ readonly attributes?: outputs.keyvault.KeyAttributesResponse; /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The elliptic curve name. For valid values, see JsonWebKeyCurveName. Default for EC and EC-HSM keys is P-256 */ readonly curveName?: string; /** * Fully qualified identifier of the key vault resource. */ readonly id: string; readonly keyOps?: string[]; /** * The key size in bits. For example: 2048, 3072, or 4096 for RSA. Default for RSA and RSA-HSM keys is 2048. Exception made for bring your own key (BYOK), key exchange keys default to 4096. */ readonly keySize?: number; /** * The URI to retrieve the current version of the key. */ readonly keyUri: string; /** * The URI to retrieve the specific version of the key. */ readonly keyUriWithVersion: string; /** * The type of the key. For valid values, see JsonWebKeyType. */ readonly kty?: string; /** * Azure location of the key vault resource. */ readonly location: string; /** * Name of the key vault resource. */ readonly name: string; /** * Key release policy in response. It will be used for both output and input. Omitted if empty */ readonly releasePolicy?: outputs.keyvault.KeyReleasePolicyResponse; /** * Key rotation policy in response. It will be used for both output and input. Omitted if empty */ readonly rotationPolicy?: outputs.keyvault.RotationPolicyResponse; /** * Tags assigned to the key vault resource. */ readonly tags: { [key: string]: string; }; /** * Resource type of the key vault resource. */ readonly type: string; } /** * Gets the current version of the specified key from the specified key vault. * * Uses Azure REST API version 2024-11-01. * * Other available API versions: 2023-02-01, 2023-07-01, 2024-04-01-preview, 2024-12-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native keyvault [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getKeyOutput(args: GetKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetKeyResult>; export interface GetKeyOutputArgs { /** * The name of the key to be retrieved. */ keyName: pulumi.Input<string>; /** * The name of the resource group which contains the specified key vault. */ resourceGroupName: pulumi.Input<string>; /** * The name of the vault which contains the key to be retrieved. */ vaultName: pulumi.Input<string>; }