import * as pulumi from "@pulumi/pulumi"; /** * Creates a new group. * Auto-naming is currently not supported for this resource. */ export declare class Group extends pulumi.CustomResource { /** * Get an existing Group 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): Group; /** * Returns true if the given object is an instance of Group. 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 Group; /** * A user-assigned name for this group, used only for display purposes. */ readonly displayName: pulumi.Output; /** * The filter used to determine which monitored resources belong to this group. */ readonly filter: pulumi.Output; /** * If true, the members of this group are considered to be a cluster. The system can perform additional analysis on groups that are clusters. */ readonly isCluster: pulumi.Output; /** * The name of this group. The format is: projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID] When creating a group, this field is ignored and a new name is created consisting of the project specified in the call to CreateGroup and a unique [GROUP_ID] that is generated automatically. */ readonly name: pulumi.Output; /** * The name of the group's parent, if it has one. The format is: projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID] For groups with no parent, parent_name is the empty string, "". */ readonly parentName: pulumi.Output; readonly project: pulumi.Output; /** * Create a Group 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?: GroupArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Group resource. */ export interface GroupArgs { /** * A user-assigned name for this group, used only for display purposes. */ displayName?: pulumi.Input; /** * The filter used to determine which monitored resources belong to this group. */ filter?: pulumi.Input; /** * If true, the members of this group are considered to be a cluster. The system can perform additional analysis on groups that are clusters. */ isCluster?: pulumi.Input; /** * The name of the group's parent, if it has one. The format is: projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID] For groups with no parent, parent_name is the empty string, "". */ parentName?: pulumi.Input; project?: pulumi.Input; }