import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * A maximum of 10,000 entry groups may be created per organization across all locations. Users should enable the Data Catalog API in the project identified by the `parent` parameter (see [Data Catalog Resource Project] (https://cloud.google.com/data-catalog/docs/concepts/resource-project) for more information). */ export declare class EntryGroup extends pulumi.CustomResource { /** * Get an existing EntryGroup resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): EntryGroup; /** * Returns true if the given object is an instance of EntryGroup. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is EntryGroup; /** * Timestamps about this EntryGroup. Default value is empty timestamps. */ readonly dataCatalogTimestamps: pulumi.Output; /** * Entry group description, which can consist of several sentences or paragraphs that describe entry group contents. Default value is an empty string. */ readonly description: pulumi.Output; /** * A short name to identify the entry group, for example, "analytics data - jan 2011". Default value is an empty string. */ readonly displayName: pulumi.Output; /** * Required. The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters. */ readonly entryGroupId: pulumi.Output; readonly location: pulumi.Output; /** * 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: pulumi.Output; readonly project: pulumi.Output; /** * Create a EntryGroup resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: EntryGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a EntryGroup resource. */ export interface EntryGroupArgs { /** * Entry group description, which can consist of several sentences or paragraphs that describe entry group contents. Default value is an empty string. */ description?: pulumi.Input; /** * A short name to identify the entry group, for example, "analytics data - jan 2011". Default value is an empty string. */ displayName?: pulumi.Input; /** * Required. The id of the entry group to create. The id must begin with a letter or underscore, contain only English letters, numbers and underscores, and be at most 64 characters. */ entryGroupId: pulumi.Input; location?: pulumi.Input; /** * 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. */ name?: pulumi.Input; project?: pulumi.Input; }