import * as pulumi from "@pulumi/pulumi"; /** * Manages the time for a specific node. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as proxmoxve from "@muhlba91/pulumi-proxmoxve"; * * const firstNodeTime = new proxmoxve.TimeLegacy("first_node_time", { * nodeName: "first-node", * timeZone: "UTC", * }); * ``` * * ## Import * * Instances can be imported using the `nodeName`, e.g., * * ```sh * $ pulumi import proxmoxve:index/timeLegacy:TimeLegacy first_node first-node * ``` */ export declare class TimeLegacy extends pulumi.CustomResource { /** * Get an existing TimeLegacy 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?: TimeLegacyState, opts?: pulumi.CustomResourceOptions): TimeLegacy; /** * Returns true if the given object is an instance of TimeLegacy. 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 TimeLegacy; /** * The node's local time. */ readonly localTime: pulumi.Output; /** * A node name. */ readonly nodeName: pulumi.Output; /** * The node's time zone. */ readonly timeZone: pulumi.Output; /** * The node's time formatted as UTC. */ readonly utcTime: pulumi.Output; /** * Create a TimeLegacy 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: TimeLegacyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering TimeLegacy resources. */ export interface TimeLegacyState { /** * The node's local time. */ localTime?: pulumi.Input; /** * A node name. */ nodeName?: pulumi.Input; /** * The node's time zone. */ timeZone?: pulumi.Input; /** * The node's time formatted as UTC. */ utcTime?: pulumi.Input; } /** * The set of arguments for constructing a TimeLegacy resource. */ export interface TimeLegacyArgs { /** * A node name. */ nodeName: pulumi.Input; /** * The node's time zone. */ timeZone: pulumi.Input; } //# sourceMappingURL=timeLegacy.d.ts.map