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