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

80 lines (79 loc) 3.21 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the specified private endpoint connection associated with the configuration store. * * Uses Azure REST API version 2024-05-01. * * Other available API versions: 2023-03-01, 2023-08-01-preview, 2023-09-01-preview, 2024-06-01, 2024-06-15-preview, 2025-02-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native appconfiguration [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getPrivateEndpointConnection(args: GetPrivateEndpointConnectionArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateEndpointConnectionResult>; export interface GetPrivateEndpointConnectionArgs { /** * The name of the configuration store. */ configStoreName: string; /** * Private endpoint connection name */ privateEndpointConnectionName: string; /** * The name of the resource group to which the container registry belongs. */ resourceGroupName: string; } /** * A private endpoint connection */ export interface GetPrivateEndpointConnectionResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The resource ID. */ readonly id: string; /** * The name of the resource. */ readonly name: string; /** * The resource of private endpoint. */ readonly privateEndpoint?: outputs.appconfiguration.PrivateEndpointResponse; /** * A collection of information about the state of the connection between service consumer and provider. */ readonly privateLinkServiceConnectionState: outputs.appconfiguration.PrivateLinkServiceConnectionStateResponse; /** * The provisioning status of the private endpoint connection. */ readonly provisioningState: string; /** * The type of the resource. */ readonly type: string; } /** * Gets the specified private endpoint connection associated with the configuration store. * * Uses Azure REST API version 2024-05-01. * * Other available API versions: 2023-03-01, 2023-08-01-preview, 2023-09-01-preview, 2024-06-01, 2024-06-15-preview, 2025-02-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native appconfiguration [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getPrivateEndpointConnectionOutput(args: GetPrivateEndpointConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateEndpointConnectionResult>; export interface GetPrivateEndpointConnectionOutputArgs { /** * The name of the configuration store. */ configStoreName: pulumi.Input<string>; /** * Private endpoint connection name */ privateEndpointConnectionName: pulumi.Input<string>; /** * The name of the resource group to which the container registry belongs. */ resourceGroupName: pulumi.Input<string>; }