import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Data source for retrieving a Harness service */ export declare function getEnvironment(args: GetEnvironmentArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEnvironment. */ export interface GetEnvironmentArgs { /** * The id of the application. */ appId: string; /** * The id of the environment. */ environmentId?: string; /** * The name of the environment. */ name?: string; /** * Override for a service variable */ variableOverrides?: inputs.GetEnvironmentVariableOverride[]; } /** * A collection of values returned by getEnvironment. */ export interface GetEnvironmentResult { /** * The id of the application. */ readonly appId: string; /** * The description of the environment. */ readonly description: string; /** * The id of the environment. */ readonly environmentId?: string; /** * The id of the environment. */ readonly id: string; /** * The name of the environment. */ readonly name?: string; /** * The type of the environment. Valid values are `PROD` and `NON_PROD` */ readonly type: string; /** * Override for a service variable */ readonly variableOverrides: outputs.GetEnvironmentVariableOverride[]; } /** * Data source for retrieving a Harness service */ export declare function getEnvironmentOutput(args: GetEnvironmentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEnvironment. */ export interface GetEnvironmentOutputArgs { /** * The id of the application. */ appId: pulumi.Input; /** * The id of the environment. */ environmentId?: pulumi.Input; /** * The name of the environment. */ name?: pulumi.Input; /** * Override for a service variable */ variableOverrides?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getEnvironment.d.ts.map