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

86 lines (85 loc) 2.99 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the specified managed HSM Pool. * * 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 getManagedHsm(args: GetManagedHsmArgs, opts?: pulumi.InvokeOptions): Promise<GetManagedHsmResult>; export interface GetManagedHsmArgs { /** * The name of the managed HSM Pool. */ name: string; /** * Name of the resource group that contains the managed HSM pool. */ resourceGroupName: string; } /** * Resource information with extended details. */ export interface GetManagedHsmResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The Azure Resource Manager resource ID for the managed HSM Pool. */ readonly id: string; /** * Managed service identity (system assigned and/or user assigned identities) */ readonly identity?: outputs.keyvault.ManagedServiceIdentityResponse; /** * The supported Azure location where the managed HSM Pool should be created. */ readonly location?: string; /** * The name of the managed HSM Pool. */ readonly name: string; /** * Properties of the managed HSM */ readonly properties: outputs.keyvault.ManagedHsmPropertiesResponse; /** * SKU details */ readonly sku?: outputs.keyvault.ManagedHsmSkuResponse; /** * Metadata pertaining to creation and last modification of the key vault resource. */ readonly systemData: outputs.keyvault.SystemDataResponse; /** * Resource tags */ readonly tags?: { [key: string]: string; }; /** * The resource type of the managed HSM Pool. */ readonly type: string; } /** * Gets the specified managed HSM Pool. * * 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 getManagedHsmOutput(args: GetManagedHsmOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetManagedHsmResult>; export interface GetManagedHsmOutputArgs { /** * The name of the managed HSM Pool. */ name: pulumi.Input<string>; /** * Name of the resource group that contains the managed HSM pool. */ resourceGroupName: pulumi.Input<string>; }