import * as pulumi from "@pulumi/pulumi"; /** * Creates a new environment group. */ export declare class Envgroup extends pulumi.CustomResource { /** * Get an existing Envgroup 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): Envgroup; /** * Returns true if the given object is an instance of Envgroup. 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 Envgroup; /** * The time at which the environment group was created as milliseconds since epoch. */ readonly createdAt: pulumi.Output; /** * Host names for this environment group. */ readonly hostnames: pulumi.Output; /** * The time at which the environment group was last updated as milliseconds since epoch. */ readonly lastModifiedAt: pulumi.Output; /** * ID of the environment group. Overrides any ID in the environment_group resource. */ readonly name: pulumi.Output; readonly organizationId: pulumi.Output; /** * State of the environment group. Values other than ACTIVE means the resource is not ready to use. */ readonly state: pulumi.Output; /** * Create a Envgroup 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: EnvgroupArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Envgroup resource. */ export interface EnvgroupArgs { /** * Host names for this environment group. */ hostnames: pulumi.Input[]>; /** * ID of the environment group. */ name?: pulumi.Input; organizationId: pulumi.Input; }