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

77 lines (76 loc) 2.34 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get a specific private endpoint connection for Power BI by private endpoint name. * * Uses Azure REST API version 2020-06-01. */ export declare function getPrivateEndpointConnection(args: GetPrivateEndpointConnectionArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateEndpointConnectionResult>; export interface GetPrivateEndpointConnectionArgs { /** * The name of the Azure resource. */ azureResourceName: string; /** * The name of the private endpoint. */ privateEndpointName: string; /** * The name of the resource group. */ resourceGroupName: string; } export interface GetPrivateEndpointConnectionResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Specifies the id of the resource. */ readonly id: string; /** * Specifies the name of the resource. */ readonly name: string; /** * Specifies the private endpoint. */ readonly privateEndpoint?: outputs.powerbi.PrivateEndpointResponse; /** * Specifies the connection state. */ readonly privateLinkServiceConnectionState?: outputs.powerbi.ConnectionStateResponse; /** * Provisioning state of the Private Endpoint Connection. */ readonly provisioningState?: string; /** * The system meta data relating to this resource. */ readonly systemData: outputs.powerbi.SystemDataResponse; /** * Specifies the type of the resource. */ readonly type: string; } /** * Get a specific private endpoint connection for Power BI by private endpoint name. * * Uses Azure REST API version 2020-06-01. */ export declare function getPrivateEndpointConnectionOutput(args: GetPrivateEndpointConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateEndpointConnectionResult>; export interface GetPrivateEndpointConnectionOutputArgs { /** * The name of the Azure resource. */ azureResourceName: pulumi.Input<string>; /** * The name of the private endpoint. */ privateEndpointName: pulumi.Input<string>; /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; }