@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.25 kB
TypeScript
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>;
}