import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets a SynonymSet for a particular context. Throws a NOT_FOUND exception if the Synonymset does not exist */ export declare function getSynonymSet(args: GetSynonymSetArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetSynonymSetArgs { location: string; project?: string; synonymSetId: string; } export interface GetSynonymSetResult { /** * This is a freeform field. Example contexts can be "sales," "engineering," "real estate," "accounting," etc. The context can be supplied during search requests. */ readonly context: string; /** * The resource name of the SynonymSet This is mandatory for google.api.resource. Format: projects/{project_number}/locations/{location}/synonymSets/{context}. */ readonly name: string; /** * List of Synonyms for the context. */ readonly synonyms: outputs.contentwarehouse.v1.GoogleCloudContentwarehouseV1SynonymSetSynonymResponse[]; } /** * Gets a SynonymSet for a particular context. Throws a NOT_FOUND exception if the Synonymset does not exist */ export declare function getSynonymSetOutput(args: GetSynonymSetOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetSynonymSetOutputArgs { location: pulumi.Input; project?: pulumi.Input; synonymSetId: pulumi.Input; }