import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class KubernetesHelm extends pulumi.CustomResource { /** * Get an existing KubernetesHelm 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?: KubernetesHelmState, opts?: pulumi.CustomResourceOptions): KubernetesHelm; /** * Returns true if the given object is an instance of KubernetesHelm. 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 KubernetesHelm; /** * Name of the Helm chart to install. */ readonly chart: pulumi.Output; /** * Identifier of the Portainer Kubernetes environment where the Helm chart is installed. */ readonly environmentId: pulumi.Output; readonly kubernetesHelmId: pulumi.Output; /** * Helm release name used to install the chart. */ readonly name: pulumi.Output; /** * Kubernetes namespace in which the Helm release is created. */ readonly namespace: pulumi.Output; /** * URL of the Helm chart repository hosting the chart. */ readonly repo: pulumi.Output; readonly timeouts: pulumi.Output; /** * Optional Helm values document (YAML) used to customise the release. */ readonly values: pulumi.Output; /** * Create a KubernetesHelm 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: KubernetesHelmArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering KubernetesHelm resources. */ export interface KubernetesHelmState { /** * Name of the Helm chart to install. */ chart?: pulumi.Input; /** * Identifier of the Portainer Kubernetes environment where the Helm chart is installed. */ environmentId?: pulumi.Input; kubernetesHelmId?: pulumi.Input; /** * Helm release name used to install the chart. */ name?: pulumi.Input; /** * Kubernetes namespace in which the Helm release is created. */ namespace?: pulumi.Input; /** * URL of the Helm chart repository hosting the chart. */ repo?: pulumi.Input; timeouts?: pulumi.Input; /** * Optional Helm values document (YAML) used to customise the release. */ values?: pulumi.Input; } /** * The set of arguments for constructing a KubernetesHelm resource. */ export interface KubernetesHelmArgs { /** * Name of the Helm chart to install. */ chart: pulumi.Input; /** * Identifier of the Portainer Kubernetes environment where the Helm chart is installed. */ environmentId: pulumi.Input; kubernetesHelmId?: pulumi.Input; /** * Helm release name used to install the chart. */ name?: pulumi.Input; /** * Kubernetes namespace in which the Helm release is created. */ namespace: pulumi.Input; /** * URL of the Helm chart repository hosting the chart. */ repo: pulumi.Input; timeouts?: pulumi.Input; /** * Optional Helm values document (YAML) used to customise the release. */ values?: pulumi.Input; } //# sourceMappingURL=kubernetesHelm.d.ts.map