import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets a single glossary entry by the given id. */ export declare function getGlossaryEntry(args: GetGlossaryEntryArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetGlossaryEntryArgs { glossaryEntryId: string; glossaryId: string; location: string; project?: string; } export interface GetGlossaryEntryResult { /** * Describes the glossary entry. */ readonly description: string; /** * The resource name of the entry. Format: "projects/*/locations/*/glossaries/*/glossaryEntries/*" */ readonly name: string; /** * Used for an unidirectional glossary. */ readonly termsPair: outputs.translate.v3.GlossaryTermsPairResponse; /** * Used for an equivalent term sets glossary. */ readonly termsSet: outputs.translate.v3.GlossaryTermsSetResponse; } /** * Gets a single glossary entry by the given id. */ export declare function getGlossaryEntryOutput(args: GetGlossaryEntryOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetGlossaryEntryOutputArgs { glossaryEntryId: pulumi.Input; glossaryId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }