import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
/**
 * Manages the host entries on a specific node.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
 *
 * const firstNodeHostEntries = new proxmoxve.HostsLegacy("first_node_host_entries", {
 *     nodeName: "first-node",
 *     entries: [{
 *         address: "127.0.0.1",
 *         hostnames: [
 *             "localhost",
 *             "localhost.localdomain",
 *         ],
 *     }],
 * });
 * ```
 *
 * ## Important Notes
 *
 * Be careful not to use this resource multiple times for the same node.
 *
 * ## Import
 *
 * Instances can be imported using the `nodeName`, e.g.,
 *
 * ```sh
 * $ pulumi import proxmoxve:index/hostsLegacy:HostsLegacy first_node_host_entries first-node
 * ```
 */
export declare class HostsLegacy extends pulumi.CustomResource {
    /**
     * Get an existing HostsLegacy 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?: HostsLegacyState, opts?: pulumi.CustomResourceOptions): HostsLegacy;
    /**
     * Returns true if the given object is an instance of HostsLegacy.  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 HostsLegacy;
    /**
     * The IP addresses.
     */
    readonly addresses: pulumi.Output<string[]>;
    /**
     * The SHA1 digest.
     */
    readonly digest: pulumi.Output<string>;
    /**
     * The host entries (conversion of `addresses` and `hostnames` into
     * objects).
     */
    readonly entries: pulumi.Output<outputs.HostsLegacyEntry[]>;
    /**
     * A host entry (multiple blocks supported).
     */
    readonly entry: pulumi.Output<outputs.HostsLegacyEntry[]>;
    /**
     * The hostnames associated with each of the IP addresses.
     */
    readonly hostnames: pulumi.Output<string[][]>;
    /**
     * A node name.
     */
    readonly nodeName: pulumi.Output<string>;
    /**
     * Create a HostsLegacy 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: HostsLegacyArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering HostsLegacy resources.
 */
export interface HostsLegacyState {
    /**
     * The IP addresses.
     */
    addresses?: pulumi.Input<pulumi.Input<string>[] | undefined>;
    /**
     * The SHA1 digest.
     */
    digest?: pulumi.Input<string | undefined>;
    /**
     * The host entries (conversion of `addresses` and `hostnames` into
     * objects).
     */
    entries?: pulumi.Input<pulumi.Input<inputs.HostsLegacyEntry>[] | undefined>;
    /**
     * A host entry (multiple blocks supported).
     */
    entry?: pulumi.Input<pulumi.Input<inputs.HostsLegacyEntry>[] | undefined>;
    /**
     * The hostnames associated with each of the IP addresses.
     */
    hostnames?: pulumi.Input<pulumi.Input<pulumi.Input<string>[]>[] | undefined>;
    /**
     * A node name.
     */
    nodeName?: pulumi.Input<string | undefined>;
}
/**
 * The set of arguments for constructing a HostsLegacy resource.
 */
export interface HostsLegacyArgs {
    /**
     * A host entry (multiple blocks supported).
     */
    entry: pulumi.Input<pulumi.Input<inputs.HostsLegacyEntry>[]>;
    /**
     * A node name.
     */
    nodeName: pulumi.Input<string>;
}
//# sourceMappingURL=hostsLegacy.d.ts.map