import * as pulumi from "@pulumi/pulumi"; export declare class HelmRollback extends pulumi.CustomResource { /** * Get an existing HelmRollback resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: HelmRollbackState, opts?: pulumi.CustomResourceOptions): HelmRollback; /** * Returns true if the given object is an instance of HelmRollback. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is HelmRollback; /** * Environment (Endpoint) identifier */ readonly endpointId: pulumi.Output; /** * Force resource update through delete/recreate if needed */ readonly force: pulumi.Output; readonly helmRollbackId: pulumi.Output; /** * Kubernetes namespace of the release */ readonly namespace: pulumi.Output; /** * Perform pods restart for the resource if applicable */ readonly recreate: pulumi.Output; /** * Name of the Helm release to rollback */ readonly releaseName: pulumi.Output; /** * Revision number to rollback to (defaults to previous revision if not specified) */ readonly revision: pulumi.Output; /** * Time to wait for any individual Kubernetes operation in seconds */ readonly timeout: pulumi.Output; /** * Wait for resources to be ready */ readonly wait: pulumi.Output; /** * Wait for jobs to complete before marking the release as successful */ readonly waitForJobs: pulumi.Output; /** * Create a HelmRollback resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: HelmRollbackArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering HelmRollback resources. */ export interface HelmRollbackState { /** * Environment (Endpoint) identifier */ endpointId?: pulumi.Input; /** * Force resource update through delete/recreate if needed */ force?: pulumi.Input; helmRollbackId?: pulumi.Input; /** * Kubernetes namespace of the release */ namespace?: pulumi.Input; /** * Perform pods restart for the resource if applicable */ recreate?: pulumi.Input; /** * Name of the Helm release to rollback */ releaseName?: pulumi.Input; /** * Revision number to rollback to (defaults to previous revision if not specified) */ revision?: pulumi.Input; /** * Time to wait for any individual Kubernetes operation in seconds */ timeout?: pulumi.Input; /** * Wait for resources to be ready */ wait?: pulumi.Input; /** * Wait for jobs to complete before marking the release as successful */ waitForJobs?: pulumi.Input; } /** * The set of arguments for constructing a HelmRollback resource. */ export interface HelmRollbackArgs { /** * Environment (Endpoint) identifier */ endpointId: pulumi.Input; /** * Force resource update through delete/recreate if needed */ force?: pulumi.Input; helmRollbackId?: pulumi.Input; /** * Kubernetes namespace of the release */ namespace?: pulumi.Input; /** * Perform pods restart for the resource if applicable */ recreate?: pulumi.Input; /** * Name of the Helm release to rollback */ releaseName: pulumi.Input; /** * Revision number to rollback to (defaults to previous revision if not specified) */ revision?: pulumi.Input; /** * Time to wait for any individual Kubernetes operation in seconds */ timeout?: pulumi.Input; /** * Wait for resources to be ready */ wait?: pulumi.Input; /** * Wait for jobs to complete before marking the release as successful */ waitForJobs?: pulumi.Input; } //# sourceMappingURL=helmRollback.d.ts.map