import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getSecrets(args: GetSecretsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSecrets. */ export interface GetSecretsArgs { envSlug: string; folderPath: string; workspaceId?: string; } /** * A collection of values returned by getSecrets. */ export interface GetSecretsResult { readonly envSlug: string; readonly folderPath: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly secrets: { [key: string]: outputs.GetSecretsSecrets; }; readonly workspaceId: string; } export declare function getSecretsOutput(args: GetSecretsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSecrets. */ export interface GetSecretsOutputArgs { envSlug: pulumi.Input; folderPath: pulumi.Input; workspaceId?: pulumi.Input; } //# sourceMappingURL=getSecrets.d.ts.map