import * as pulumi from "@pulumi/pulumi"; /** * Gets an environment group. */ export declare function getEnvgroup(args: GetEnvgroupArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetEnvgroupArgs { envgroupId: string; organizationId: string; } export interface GetEnvgroupResult { /** * The time at which the environment group was created as milliseconds since epoch. */ readonly createdAt: string; /** * Host names for this environment group. */ readonly hostnames: string[]; /** * The time at which the environment group was last updated as milliseconds since epoch. */ readonly lastModifiedAt: string; /** * ID of the environment group. */ readonly name: string; /** * State of the environment group. Values other than ACTIVE means the resource is not ready to use. */ readonly state: string; } /** * Gets an environment group. */ export declare function getEnvgroupOutput(args: GetEnvgroupOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetEnvgroupOutputArgs { envgroupId: pulumi.Input; organizationId: pulumi.Input; }