import * as pulumi from "@pulumi/pulumi"; /** * Data source for Harness environment service overrides. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const test = harness.platform.getEnvironmentServiceOverrides({ * orgId: "orgIdentifier", * projectId: "projectIdentifier", * envId: "environmentIdentifier", * serviceId: "serviceIdentifier", * }); * ``` */ export declare function getEnvironmentServiceOverrides(args: GetEnvironmentServiceOverridesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEnvironmentServiceOverrides. */ export interface GetEnvironmentServiceOverridesArgs { /** * The env ID to which the overrides associated. */ envId: string; /** * identifier of the service overrides. */ identifier?: string; /** * Unique identifier of the organization. */ orgId?: string; /** * Unique identifier of the project. */ projectId?: string; /** * The service ID to which the overrides applies. */ serviceId?: string; } /** * A collection of values returned by getEnvironmentServiceOverrides. */ export interface GetEnvironmentServiceOverridesResult { /** * The env ID to which the overrides associated. */ readonly envId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * identifier of the service overrides. */ readonly identifier: string; /** * Unique identifier of the organization. */ readonly orgId?: string; /** * Unique identifier of the project. */ readonly projectId?: string; /** * The service ID to which the overrides applies. */ readonly serviceId?: string; /** * Environment Service Overrides YAML */ readonly yaml: string; } /** * Data source for Harness environment service overrides. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const test = harness.platform.getEnvironmentServiceOverrides({ * orgId: "orgIdentifier", * projectId: "projectIdentifier", * envId: "environmentIdentifier", * serviceId: "serviceIdentifier", * }); * ``` */ export declare function getEnvironmentServiceOverridesOutput(args: GetEnvironmentServiceOverridesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEnvironmentServiceOverrides. */ export interface GetEnvironmentServiceOverridesOutputArgs { /** * The env ID to which the overrides associated. */ envId: pulumi.Input; /** * identifier of the service overrides. */ identifier?: pulumi.Input; /** * Unique identifier of the organization. */ orgId?: pulumi.Input; /** * Unique identifier of the project. */ projectId?: pulumi.Input; /** * The service ID to which the overrides applies. */ serviceId?: pulumi.Input; } //# sourceMappingURL=getEnvironmentServiceOverrides.d.ts.map