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

58 lines (57 loc) 1.81 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * 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<GetResourceManagementPrivateLinkResult>; 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: outputs.authorization.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<GetResourceManagementPrivateLinkResult>; export interface GetResourceManagementPrivateLinkOutputArgs { /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * The name of the resource management private link. */ rmplName: pulumi.Input<string>; }