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

106 lines (105 loc) 4 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the specified private endpoint connection associated with the 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 getMHSMPrivateEndpointConnection(args: GetMHSMPrivateEndpointConnectionArgs, opts?: pulumi.InvokeOptions): Promise<GetMHSMPrivateEndpointConnectionResult>; export interface GetMHSMPrivateEndpointConnectionArgs { /** * Name of the managed HSM Pool */ name: string; /** * Name of the private endpoint connection associated with the managed hsm pool. */ privateEndpointConnectionName: string; /** * Name of the resource group that contains the managed HSM pool. */ resourceGroupName: string; } /** * Private endpoint connection resource. */ export interface GetMHSMPrivateEndpointConnectionResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Modified whenever there is a change in the state of private endpoint connection. */ readonly etag?: 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 private endpoint object. */ readonly privateEndpoint?: outputs.keyvault.MHSMPrivateEndpointResponse; /** * Approval state of the private link connection. */ readonly privateLinkServiceConnectionState?: outputs.keyvault.MHSMPrivateLinkServiceConnectionStateResponse; /** * Provisioning state of the private endpoint connection. */ readonly provisioningState: string; /** * 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 private endpoint connection associated with the 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 getMHSMPrivateEndpointConnectionOutput(args: GetMHSMPrivateEndpointConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMHSMPrivateEndpointConnectionResult>; export interface GetMHSMPrivateEndpointConnectionOutputArgs { /** * Name of the managed HSM Pool */ name: pulumi.Input<string>; /** * Name of the private endpoint connection associated with the managed hsm pool. */ privateEndpointConnectionName: pulumi.Input<string>; /** * Name of the resource group that contains the managed HSM pool. */ resourceGroupName: pulumi.Input<string>; }