import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets an entry group. */ 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 of the entry group. Default value is empty. */ readonly dataCatalogTimestamps: outputs.datacatalog.v1.GoogleCloudDatacatalogV1SystemTimestampsResponse; /** * Entry group description. Can consist of several sentences or paragraphs that describe the 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. Note: The entry group itself and its child resources might not be stored in the location specified in its name. */ readonly name: string; } /** * Gets an entry group. */ 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; }