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

72 lines (71 loc) 2.25 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get private endpoint connection properties for the given private endpoint. * * Uses Azure REST API version 2023-01-31. */ export declare function getPrivateEndpointConnection(args: GetPrivateEndpointConnectionArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateEndpointConnectionResult>; export interface GetPrivateEndpointConnectionArgs { /** * The name of the private endpoint connection. */ privateEndpointConnectionName: string; /** * The name of the resource group that contains the DigitalTwinsInstance. */ resourceGroupName: string; /** * The name of the DigitalTwinsInstance. */ resourceName: string; } /** * The private endpoint connection of a Digital Twin. */ export interface GetPrivateEndpointConnectionResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The resource identifier. */ readonly id: string; /** * The resource name. */ readonly name: string; /** * The connection properties. */ readonly properties: outputs.digitaltwins.ConnectionPropertiesResponse; /** * Metadata pertaining to creation and last modification of the private endpoint connection. */ readonly systemData: outputs.digitaltwins.SystemDataResponse; /** * The resource type. */ readonly type: string; } /** * Get private endpoint connection properties for the given private endpoint. * * Uses Azure REST API version 2023-01-31. */ export declare function getPrivateEndpointConnectionOutput(args: GetPrivateEndpointConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateEndpointConnectionResult>; export interface GetPrivateEndpointConnectionOutputArgs { /** * The name of the private endpoint connection. */ privateEndpointConnectionName: pulumi.Input<string>; /** * The name of the resource group that contains the DigitalTwinsInstance. */ resourceGroupName: pulumi.Input<string>; /** * The name of the DigitalTwinsInstance. */ resourceName: pulumi.Input<string>; }