import * as pulumi from "@pulumi/pulumi"; /** * Data source for retrieving a chaos infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.getChaosInfrastructure({ * identifier: "identifier", * orgId: "org_id", * projectId: "project_id", * environmentId: "env_id", * }); * ``` */ export declare function getChaosInfrastructure(args: GetChaosInfrastructureArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getChaosInfrastructure. */ export interface GetChaosInfrastructureArgs { /** * Environment identifier of the chaos infrastructure. */ environmentId: string; /** * Identifier of the chaos infrastructure. */ identifier: string; /** * Identifier of the organization in which the chaos infrastructure is configured. */ orgId: string; /** * Identifier of the project in which the chaos infrastructure is configured. */ projectId: string; } /** * A collection of values returned by getChaosInfrastructure. */ export interface GetChaosInfrastructureResult { /** * Environment identifier of the chaos infrastructure. */ readonly environmentId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Identifier of the chaos infrastructure. */ readonly identifier: string; /** * Identifier of the organization in which the chaos infrastructure is configured. */ readonly orgId: string; /** * Identifier of the project in which the chaos infrastructure is configured. */ readonly projectId: string; } /** * Data source for retrieving a chaos infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.getChaosInfrastructure({ * identifier: "identifier", * orgId: "org_id", * projectId: "project_id", * environmentId: "env_id", * }); * ``` */ export declare function getChaosInfrastructureOutput(args: GetChaosInfrastructureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getChaosInfrastructure. */ export interface GetChaosInfrastructureOutputArgs { /** * Environment identifier of the chaos infrastructure. */ environmentId: pulumi.Input; /** * Identifier of the chaos infrastructure. */ identifier: pulumi.Input; /** * Identifier of the organization in which the chaos infrastructure is configured. */ orgId: pulumi.Input; /** * Identifier of the project in which the chaos infrastructure is configured. */ projectId: pulumi.Input; } //# sourceMappingURL=getChaosInfrastructure.d.ts.map