import * as pulumi from "@pulumi/pulumi"; import * as types from "./types"; /** * Get a resource management private link(resource-level). * * Uses Azure REST API version 2020-05-01. */ export declare function getResourceManagementPrivateLink(args: GetResourceManagementPrivateLinkArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetResourceManagementPrivateLinkArgs { /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * The name of the resource management private link. */ rmplName: string; } export interface GetResourceManagementPrivateLinkResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The rmplResourceID. */ readonly id: string; /** * the region of the rmpl */ readonly location?: string; /** * The rmpl Name. */ readonly name: string; readonly properties: types.outputs.ResourceManagementPrivateLinkEndpointConnectionsResponse; /** * The operation type. */ readonly type: string; } /** * Get a resource management private link(resource-level). * * Uses Azure REST API version 2020-05-01. */ export declare function getResourceManagementPrivateLinkOutput(args: GetResourceManagementPrivateLinkOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetResourceManagementPrivateLinkOutputArgs { /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input; /** * The name of the resource management private link. */ rmplName: pulumi.Input; }