import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides Nutanix resource to Installs Nutanix Guest Tools in a Virtual Machine by using the provided credentials. * * ## Example * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const example = new nutanix.NgtInstallationV2("example", { * extId: "ab520e1d-4950-1db1-917f-a9e2ea35b8e3", * credential: { * username: "username", * password: "pass.1234567890", * }, * rebootPreference: { * scheduleType: "IMMEDIATE", * }, * capablities: ["VSS_SNAPSHOT"], * }); * ``` * */ export declare class NgtInstallationV2 extends pulumi.CustomResource { /** * Get an existing NgtInstallationV2 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?: NgtInstallationV2State, opts?: pulumi.CustomResourceOptions): NgtInstallationV2; /** * Returns true if the given object is an instance of NgtInstallationV2. 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 NgtInstallationV2; /** * 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; /** * Sign in credentials for the server. */ readonly credential: 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 NgtInstallationV2 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: NgtInstallationV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NgtInstallationV2 resources. */ export interface NgtInstallationV2State { /** * 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>; /** * Sign in credentials for the server. */ credential?: pulumi.Input; /** * 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 NgtInstallationV2 resource. */ export interface NgtInstallationV2Args { /** * The list of the application names that are enabled on the guest VM. [`SELF_SERVICE_RESTORE`, `VSS_SNAPSHOT`] */ capablities?: pulumi.Input[] | undefined>; /** * Sign in credentials for the server. */ credential?: pulumi.Input; /** * uuid of the Virtual Machine. */ extId: pulumi.Input; /** * Indicates whether Nutanix Guest Tools is enabled or not. */ isEnabled?: pulumi.Input; /** * The restart schedule after installing or upgrading Nutanix Guest Tools. */ rebootPreference?: pulumi.Input; } //# sourceMappingURL=ngtInstallationV2.d.ts.map