import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access endpoint connection information about an existing Private Link Service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.privatelink.getServiceEndpointConnections({ * serviceId: exampleAzurermPrivateLinkService.id, * resourceGroupName: exampleAzurermResourceGroup.name, * }); * export const privateEndpointStatus = example.then(example => example.privateEndpointConnections?.[0]?.status); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 */ export declare function getServiceEndpointConnections(args: GetServiceEndpointConnectionsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getServiceEndpointConnections. */ export interface GetServiceEndpointConnectionsArgs { /** * The name of the resource group in which the private link service resides. */ resourceGroupName: string; /** * The resource ID of the private link service. */ serviceId: string; } /** * A collection of values returned by getServiceEndpointConnections. */ export interface GetServiceEndpointConnectionsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly location: string; readonly privateEndpointConnections: outputs.privatelink.GetServiceEndpointConnectionsPrivateEndpointConnection[]; readonly resourceGroupName: string; readonly serviceId: string; /** * The name of the private link service. */ readonly serviceName: string; } /** * Use this data source to access endpoint connection information about an existing Private Link Service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.privatelink.getServiceEndpointConnections({ * serviceId: exampleAzurermPrivateLinkService.id, * resourceGroupName: exampleAzurermResourceGroup.name, * }); * export const privateEndpointStatus = example.then(example => example.privateEndpointConnections?.[0]?.status); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 */ export declare function getServiceEndpointConnectionsOutput(args: GetServiceEndpointConnectionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getServiceEndpointConnections. */ export interface GetServiceEndpointConnectionsOutputArgs { /** * The name of the resource group in which the private link service resides. */ resourceGroupName: pulumi.Input; /** * The resource ID of the private link service. */ serviceId: pulumi.Input; }