import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets an EntryGroup. */ export declare function getEntryGroup(args: GetEntryGroupArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetEntryGroupArgs { entryGroupId: string; location: string; project?: string; readMask?: string; } export interface GetEntryGroupResult { /** * Timestamps about this EntryGroup. Default value is empty timestamps. */ readonly dataCatalogTimestamps: outputs.datacatalog.v1beta1.GoogleCloudDatacatalogV1beta1SystemTimestampsResponse; /** * Entry group description, which can consist of several sentences or paragraphs that describe entry group contents. Default value is an empty string. */ readonly description: string; /** * A short name to identify the entry group, for example, "analytics data - jan 2011". Default value is an empty string. */ readonly displayName: string; /** * The resource name of the entry group in URL format. Example: * projects/{project_id}/locations/{location}/entryGroups/{entry_group_id} Note that this EntryGroup and its child resources may not actually be stored in the location in this name. */ readonly name: string; } /** * Gets an EntryGroup. */ export declare function getEntryGroupOutput(args: GetEntryGroupOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetEntryGroupOutputArgs { entryGroupId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; readMask?: pulumi.Input; }