import * as pulumi from "@pulumi/pulumi"; /** * Manages the DNS configuration for a specific node. * * ## Import * * Instances can be imported using the `node_name`, e.g., * * bash * * ```sh * $ pulumi import proxmoxve:index/dNS:DNS first_node first-node * ``` */ export declare class DNS extends pulumi.CustomResource { /** * Get an existing DNS 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?: DNSState, opts?: pulumi.CustomResourceOptions): DNS; /** * Returns true if the given object is an instance of DNS. 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 DNS; /** * The DNS search domain. */ readonly domain: pulumi.Output; /** * A node name. */ readonly nodeName: pulumi.Output; /** * The DNS servers. */ readonly servers: pulumi.Output; /** * Create a DNS 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: DNSArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DNS resources. */ export interface DNSState { /** * The DNS search domain. */ domain?: pulumi.Input; /** * A node name. */ nodeName?: pulumi.Input; /** * The DNS servers. */ servers?: pulumi.Input[]>; } /** * The set of arguments for constructing a DNS resource. */ export interface DNSArgs { /** * The DNS search domain. */ domain: pulumi.Input; /** * A node name. */ nodeName: pulumi.Input; /** * The DNS servers. */ servers?: pulumi.Input[]>; }