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

76 lines (75 loc) 3.14 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get private endpoint connection properties * * Uses Azure REST API version 2023-03-01-preview. * * Other available API versions: 2020-03-01, 2020-09-01-preview, 2021-10-15, 2022-02-05, 2022-12-12, 2025-02-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native deviceprovisioningservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getIotDpsResourcePrivateEndpointConnection(args: GetIotDpsResourcePrivateEndpointConnectionArgs, opts?: pulumi.InvokeOptions): Promise<GetIotDpsResourcePrivateEndpointConnectionResult>; export interface GetIotDpsResourcePrivateEndpointConnectionArgs { /** * The name of the private endpoint connection */ privateEndpointConnectionName: string; /** * The name of the resource group that contains the provisioning service. */ resourceGroupName: string; /** * The name of the provisioning service. */ resourceName: string; } /** * The private endpoint connection of a provisioning service */ export interface GetIotDpsResourcePrivateEndpointConnectionResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The resource identifier. */ readonly id: string; /** * The resource name. */ readonly name: string; /** * The properties of a private endpoint connection */ readonly properties: outputs.deviceprovisioningservices.PrivateEndpointConnectionPropertiesResponse; /** * Metadata pertaining to creation and last modification of the resource. */ readonly systemData: outputs.deviceprovisioningservices.SystemDataResponse; /** * The resource type. */ readonly type: string; } /** * Get private endpoint connection properties * * Uses Azure REST API version 2023-03-01-preview. * * Other available API versions: 2020-03-01, 2020-09-01-preview, 2021-10-15, 2022-02-05, 2022-12-12, 2025-02-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native deviceprovisioningservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getIotDpsResourcePrivateEndpointConnectionOutput(args: GetIotDpsResourcePrivateEndpointConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIotDpsResourcePrivateEndpointConnectionResult>; export interface GetIotDpsResourcePrivateEndpointConnectionOutputArgs { /** * The name of the private endpoint connection */ privateEndpointConnectionName: pulumi.Input<string>; /** * The name of the resource group that contains the provisioning service. */ resourceGroupName: pulumi.Input<string>; /** * The name of the provisioning service. */ resourceName: pulumi.Input<string>; }