import * as pulumi from "@pulumi/pulumi"; /** * Provides Nutanix resource toInserts the Nutanix Guest Tools installation and configuration ISO into a virtual machine. * * ## Example * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * //############################################# * // ------------------------------------------------ * // This resource allows inserting a NGT ISO into * // a VM’s CD-ROM device. * // * // You can manage both: * // 1. **Insertion** — via `apply` * // 2. **Ejection** — automatically on `delete` * // You can also eject the NGT ISO by setting `action = "eject"` → triggers eject operation explicitly. * //############################################# * const example = new nutanix.NgtInsertIsoV2("example", { * extId: "ab520e1d-4950-1db1-917f-a9e2ea35b8e3", * capablities: ["VSS_SNAPSHOT"], * isConfigOnly: false, * }); * ``` * */ export declare class NgtInsertIsoV2 extends pulumi.CustomResource { /** * Get an existing NgtInsertIsoV2 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?: NgtInsertIsoV2State, opts?: pulumi.CustomResourceOptions): NgtInsertIsoV2; /** * Returns true if the given object is an instance of NgtInsertIsoV2. 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 NgtInsertIsoV2; /** * Default value: "insert". Accepted values: "insert" → Mounts the specified ISO image to the VM’s CD-ROM, "eject" → Unmounts (ejects) the ISO image from the VM’s CD-ROM. */ readonly action: pulumi.Output; /** * 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; readonly cdromExtId: pulumi.Output; /** * uuid of the Virtual Machine. */ readonly extId: pulumi.Output; /** * Version of the operating system on the VM. */ readonly guestOsVersion: pulumi.Output; /** * Indicates that the Nutanix Guest Tools are already installed on the guest VM, and the ISO is being inserted to update the configuration of these tools. */ readonly isConfigOnly: 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; /** * Version of Nutanix Guest Tools installed on the VM. */ readonly version: pulumi.Output; readonly vmExtId: pulumi.Output; /** * Create a NgtInsertIsoV2 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: NgtInsertIsoV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NgtInsertIsoV2 resources. */ export interface NgtInsertIsoV2State { /** * Default value: "insert". Accepted values: "insert" → Mounts the specified ISO image to the VM’s CD-ROM, "eject" → Unmounts (ejects) the ISO image from the VM’s CD-ROM. */ action?: pulumi.Input; /** * 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>; cdromExtId?: pulumi.Input; /** * uuid of the Virtual Machine. */ extId?: pulumi.Input; /** * Version of the operating system on the VM. */ guestOsVersion?: pulumi.Input; /** * Indicates that the Nutanix Guest Tools are already installed on the guest VM, and the ISO is being inserted to update the configuration of these tools. */ isConfigOnly?: 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; /** * Version of Nutanix Guest Tools installed on the VM. */ version?: pulumi.Input; vmExtId?: pulumi.Input; } /** * The set of arguments for constructing a NgtInsertIsoV2 resource. */ export interface NgtInsertIsoV2Args { /** * Default value: "insert". Accepted values: "insert" → Mounts the specified ISO image to the VM’s CD-ROM, "eject" → Unmounts (ejects) the ISO image from the VM’s CD-ROM. */ action?: 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; /** * Indicates that the Nutanix Guest Tools are already installed on the guest VM, and the ISO is being inserted to update the configuration of these tools. */ isConfigOnly?: pulumi.Input; } //# sourceMappingURL=ngtInsertIsoV2.d.ts.map