import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getHelmReleaseHistory(args: GetHelmReleaseHistoryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHelmReleaseHistory. */ export interface GetHelmReleaseHistoryArgs { endpointId: number; id?: string; namespace?: string; releaseName: string; } /** * A collection of values returned by getHelmReleaseHistory. */ export interface GetHelmReleaseHistoryResult { readonly endpointId: number; readonly id: string; readonly namespace?: string; readonly releaseName: string; readonly revisions: outputs.GetHelmReleaseHistoryRevision[]; } export declare function getHelmReleaseHistoryOutput(args: GetHelmReleaseHistoryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHelmReleaseHistory. */ export interface GetHelmReleaseHistoryOutputArgs { endpointId: pulumi.Input; id?: pulumi.Input; namespace?: pulumi.Input; releaseName: pulumi.Input; } //# sourceMappingURL=getHelmReleaseHistory.d.ts.map