import * as pulumi from "@pulumi/pulumi"; import * as types from "./types"; /** * Get a single private link association * * Uses Azure REST API version 2020-05-01. */ export declare function getPrivateLinkAssociation(args: GetPrivateLinkAssociationArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetPrivateLinkAssociationArgs { /** * The management group ID. */ groupId: string; /** * The ID of the PLA */ plaId: string; } export interface GetPrivateLinkAssociationResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The plaResourceID. */ readonly id: string; /** * The pla name. */ readonly name: string; /** * The private link association properties. */ readonly properties: types.outputs.PrivateLinkAssociationPropertiesExpandedResponse; /** * The operation type. */ readonly type: string; } /** * Get a single private link association * * Uses Azure REST API version 2020-05-01. */ export declare function getPrivateLinkAssociationOutput(args: GetPrivateLinkAssociationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetPrivateLinkAssociationOutputArgs { /** * The management group ID. */ groupId: pulumi.Input; /** * The ID of the PLA */ plaId: pulumi.Input; }