import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Data source for retrieving a Harness application */ export declare function getEncryptedText(args?: GetEncryptedTextArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEncryptedText. */ export interface GetEncryptedTextArgs { /** * Unique identifier of the encrypted secret */ id?: string; /** * The name of the encrypted secret */ name?: string; /** * This block is used for scoping the resource to a specific set of applications or environments. */ usageScopes?: inputs.GetEncryptedTextUsageScope[]; } /** * A collection of values returned by getEncryptedText. */ export interface GetEncryptedTextResult { /** * Unique identifier of the encrypted secret */ readonly id?: string; /** * The name of the encrypted secret */ readonly name?: string; /** * The id of the associated secret manager */ readonly secretManagerId: string; /** * This block is used for scoping the resource to a specific set of applications or environments. */ readonly usageScopes?: outputs.GetEncryptedTextUsageScope[]; } /** * Data source for retrieving a Harness application */ export declare function getEncryptedTextOutput(args?: GetEncryptedTextOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEncryptedText. */ export interface GetEncryptedTextOutputArgs { /** * Unique identifier of the encrypted secret */ id?: pulumi.Input; /** * The name of the encrypted secret */ name?: pulumi.Input; /** * This block is used for scoping the resource to a specific set of applications or environments. */ usageScopes?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getEncryptedText.d.ts.map