import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Creates an entry group. An entry group contains logically related entries together with [Cloud Identity and Access Management](/data-catalog/docs/concepts/iam) policies. These policies specify users who can create, edit, and view entries within entry groups. Data Catalog automatically creates entry groups with names that start with the `@` symbol for the following resources: * BigQuery entries (`@bigquery`) * Pub/Sub topics (`@pubsub`) * Dataproc Metastore services (`@dataproc_metastore_{SERVICE_NAME_HASH}`) You can create your own entry groups for Cloud Storage fileset entries and custom entries together with the corresponding IAM policies. User-created entry groups can't contain the `@` symbol, it is reserved for automatically created groups. Entry groups, like entries, can be searched. A maximum of 10,000 entry groups may be created per organization across all locations. You must enable the Data Catalog API in the project identified by the `parent` parameter. For more information, see [Data Catalog resource project](https://cloud.google.com/data-catalog/docs/concepts/resource-project). */ 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 of the entry group. Default value is empty. */ readonly dataCatalogTimestamps: pulumi.Output; /** * Entry group description. Can consist of several sentences or paragraphs that describe the 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 contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and must start with a letter or underscore. The maximum size is 64 bytes when encoded in UTF-8. */ readonly entryGroupId: pulumi.Output; readonly location: pulumi.Output; /** * 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: 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. Can consist of several sentences or paragraphs that describe the 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 contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and must start with a letter or underscore. The maximum size is 64 bytes when encoded in UTF-8. */ entryGroupId: pulumi.Input; location?: pulumi.Input; /** * 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. */ name?: pulumi.Input; project?: pulumi.Input; }