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.AcmeDnsPlugin("example", { * api: "aws", * data: { * AWS_ACCESS_KEY_ID: "EXAMPLE", * AWS_SECRET_ACCESS_KEY: "EXAMPLE", * }, * plugin: "test", * }); * ``` * * ## Import * * #!/usr/bin/env sh * * ACME accounts can be imported using their name, e.g.: * * ```sh * $ pulumi import proxmoxve:index/acmeDnsPlugin:AcmeDnsPlugin example test * ``` */ export declare class AcmeDnsPlugin extends pulumi.CustomResource { /** * Get an existing AcmeDnsPlugin 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?: AcmeDnsPluginState, opts?: pulumi.CustomResourceOptions): AcmeDnsPlugin; /** * Returns true if the given object is an instance of AcmeDnsPlugin. 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 AcmeDnsPlugin; /** * API plugin name. */ readonly api: pulumi.Output; /** * DNS plugin data. */ readonly data: pulumi.Output<{ [key: string]: string; } | 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; /** * Flag to disable the config. */ readonly disable: pulumi.Output; /** * ACME Plugin ID name. */ readonly plugin: pulumi.Output; /** * 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; /** * Create a AcmeDnsPlugin 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: AcmeDnsPluginArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AcmeDnsPlugin resources. */ export interface AcmeDnsPluginState { /** * API plugin name. */ api?: pulumi.Input; /** * DNS plugin data. */ data?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * 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; /** * Flag to disable the config. */ disable?: pulumi.Input; /** * ACME Plugin ID name. */ plugin?: pulumi.Input; /** * Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800). */ validationDelay?: pulumi.Input; } /** * The set of arguments for constructing a AcmeDnsPlugin resource. */ export interface AcmeDnsPluginArgs { /** * API plugin name. */ api: pulumi.Input; /** * DNS plugin data. */ data?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * 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; /** * Flag to disable the config. */ disable?: pulumi.Input; /** * ACME Plugin ID name. */ plugin: pulumi.Input; /** * Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800). */ validationDelay?: pulumi.Input; }