import * as pulumi from "@pulumi/pulumi";
/**
 * Manages an ACME plugin in a Proxmox VE cluster.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
 *
 * const example = new proxmoxve.acme.dns.Plugin("example", {
 *     plugin: "test",
 *     api: "aws",
 *     data: {
 *         AWS_ACCESS_KEY_ID: "EXAMPLE",
 *         AWS_SECRET_ACCESS_KEY: "EXAMPLE",
 *     },
 * });
 * ```
 *
 * ## Import
 *
 * !/usr/bin/env sh
 * ACME accounts can be imported using their name, e.g.:
 *
 * ```sh
 * $ pulumi import proxmoxve:acme/dns/plugin:Plugin example test
 * ```
 */
export declare class Plugin extends pulumi.CustomResource {
    /**
     * Get an existing Plugin 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<pulumi.ID>, state?: PluginState, opts?: pulumi.CustomResourceOptions): Plugin;
    /**
     * Returns true if the given object is an instance of Plugin.  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 Plugin;
    /**
     * API plugin name.
     */
    readonly api: pulumi.Output<string>;
    /**
     * DNS plugin data.
     */
    readonly data: pulumi.Output<{
        [key: string]: string;
    } | undefined>;
    /**
     * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
     * DNS plugin data, supplied as a [write-only argument](https://developer.hashicorp.com/terraform/language/resources/ephemeral/write-only) so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with `data`. Pair with `dataWoVersion` to push rotated values.
     */
    readonly dataWo: pulumi.Output<{
        [key: string]: string;
    } | undefined>;
    /**
     * Version counter for `dataWo`. Because write-only values are not stored in state, Terraform cannot detect when `dataWo` changes; increment this value to signal a rotation and force the new `dataWo` to be sent.
     */
    readonly dataWoVersion: pulumi.Output<number | undefined>;
    /**
     * SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
     */
    readonly digest: pulumi.Output<string>;
    /**
     * Flag to disable the config.
     */
    readonly disable: pulumi.Output<boolean | undefined>;
    /**
     * ACME plugin ID name.
     */
    readonly plugin: pulumi.Output<string>;
    /**
     * Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
     */
    readonly validationDelay: pulumi.Output<number>;
    /**
     * Create a Plugin 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: PluginArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering Plugin resources.
 */
export interface PluginState {
    /**
     * API plugin name.
     */
    api?: pulumi.Input<string | undefined>;
    /**
     * DNS plugin data.
     */
    data?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    } | undefined>;
    /**
     * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
     * DNS plugin data, supplied as a [write-only argument](https://developer.hashicorp.com/terraform/language/resources/ephemeral/write-only) so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with `data`. Pair with `dataWoVersion` to push rotated values.
     */
    dataWo?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    } | undefined>;
    /**
     * Version counter for `dataWo`. Because write-only values are not stored in state, Terraform cannot detect when `dataWo` changes; increment this value to signal a rotation and force the new `dataWo` to be sent.
     */
    dataWoVersion?: pulumi.Input<number | undefined>;
    /**
     * SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
     */
    digest?: pulumi.Input<string | undefined>;
    /**
     * Flag to disable the config.
     */
    disable?: pulumi.Input<boolean | undefined>;
    /**
     * ACME plugin ID name.
     */
    plugin?: pulumi.Input<string | undefined>;
    /**
     * Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
     */
    validationDelay?: pulumi.Input<number | undefined>;
}
/**
 * The set of arguments for constructing a Plugin resource.
 */
export interface PluginArgs {
    /**
     * API plugin name.
     */
    api: pulumi.Input<string>;
    /**
     * DNS plugin data.
     */
    data?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    } | undefined>;
    /**
     * **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
     * DNS plugin data, supplied as a [write-only argument](https://developer.hashicorp.com/terraform/language/resources/ephemeral/write-only) so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with `data`. Pair with `dataWoVersion` to push rotated values.
     */
    dataWo?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    } | undefined>;
    /**
     * Version counter for `dataWo`. Because write-only values are not stored in state, Terraform cannot detect when `dataWo` changes; increment this value to signal a rotation and force the new `dataWo` to be sent.
     */
    dataWoVersion?: pulumi.Input<number | undefined>;
    /**
     * SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
     */
    digest?: pulumi.Input<string | undefined>;
    /**
     * Flag to disable the config.
     */
    disable?: pulumi.Input<boolean | undefined>;
    /**
     * ACME plugin ID name.
     */
    plugin: pulumi.Input<string>;
    /**
     * Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
     */
    validationDelay?: pulumi.Input<number | undefined>;
}
//# sourceMappingURL=plugin.d.ts.map