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