import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides Nutanix resource to Trigger an in-guest upgrade of Nutanix Guest Tools. * * ## Example * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const example = new nutanix.NgtUpgradeV2("example", { * extId: "ab520e1d-4950-1db1-917f-a9e2ea35b8e3", * rebootPreference: { * scheduleType: "IMMEDIATE", * }, * }); * ``` * */ export declare class NgtUpgradeV2 extends pulumi.CustomResource { /** * Get an existing NgtUpgradeV2 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?: NgtUpgradeV2State, opts?: pulumi.CustomResourceOptions): NgtUpgradeV2; /** * Returns true if the given object is an instance of NgtUpgradeV2. 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 NgtUpgradeV2; /** * Version of Nutanix Guest Tools available on the cluster. */ readonly availableVersion: pulumi.Output; /** * The list of the application names that are enabled on the guest VM. [`SELF_SERVICE_RESTORE`, `VSS_SNAPSHOT`] */ readonly capablities: pulumi.Output; /** * uuid of the Virtual Machine. */ readonly extId: pulumi.Output; /** * Version of the operating system on the VM. */ readonly guestOsVersion: pulumi.Output; /** * Indicates whether Nutanix Guest Tools is enabled or not. */ readonly isEnabled: pulumi.Output; /** * Indicates whether Nutanix Guest Tools is installed on the VM or not. */ readonly isInstalled: pulumi.Output; /** * Indicates whether Nutanix Guest Tools ISO is inserted or not. */ readonly isIsoInserted: pulumi.Output; /** * Indicates whether the communication from VM to CVM is active or not. */ readonly isReachable: pulumi.Output; /** * Indicates whether the VM mobility drivers are installed on the VM or not. */ readonly isVmMobilityDriversInstalled: pulumi.Output; /** * Indicates whether the VM is configured to take VSS snapshots through NGT or not. */ readonly isVssSnapshotCapable: pulumi.Output; /** * The restart schedule after installing or upgrading Nutanix Guest Tools. */ readonly rebootPreference: pulumi.Output; /** * Version of Nutanix Guest Tools installed on the VM. */ readonly version: pulumi.Output; /** * Create a NgtUpgradeV2 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: NgtUpgradeV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NgtUpgradeV2 resources. */ export interface NgtUpgradeV2State { /** * Version of Nutanix Guest Tools available on the cluster. */ availableVersion?: pulumi.Input; /** * The list of the application names that are enabled on the guest VM. [`SELF_SERVICE_RESTORE`, `VSS_SNAPSHOT`] */ capablities?: pulumi.Input[] | undefined>; /** * uuid of the Virtual Machine. */ extId?: pulumi.Input; /** * Version of the operating system on the VM. */ guestOsVersion?: pulumi.Input; /** * Indicates whether Nutanix Guest Tools is enabled or not. */ isEnabled?: pulumi.Input; /** * Indicates whether Nutanix Guest Tools is installed on the VM or not. */ isInstalled?: pulumi.Input; /** * Indicates whether Nutanix Guest Tools ISO is inserted or not. */ isIsoInserted?: pulumi.Input; /** * Indicates whether the communication from VM to CVM is active or not. */ isReachable?: pulumi.Input; /** * Indicates whether the VM mobility drivers are installed on the VM or not. */ isVmMobilityDriversInstalled?: pulumi.Input; /** * Indicates whether the VM is configured to take VSS snapshots through NGT or not. */ isVssSnapshotCapable?: pulumi.Input; /** * The restart schedule after installing or upgrading Nutanix Guest Tools. */ rebootPreference?: pulumi.Input; /** * Version of Nutanix Guest Tools installed on the VM. */ version?: pulumi.Input; } /** * The set of arguments for constructing a NgtUpgradeV2 resource. */ export interface NgtUpgradeV2Args { /** * uuid of the Virtual Machine. */ extId: pulumi.Input; /** * The restart schedule after installing or upgrading Nutanix Guest Tools. */ rebootPreference?: pulumi.Input; } //# sourceMappingURL=ngtUpgradeV2.d.ts.map