1. Packages
  2. Nutanix
  3. API Docs
  4. NgtInstallationV2
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

nutanix.NgtInstallationV2

Explore with Pulumi AI

nutanix logo
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

    Provides Nutanix resource to Installs Nutanix Guest Tools in a Virtual Machine by using the provided credentials.

    Create NgtInstallationV2 Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NgtInstallationV2(name: string, args: NgtInstallationV2Args, opts?: CustomResourceOptions);
    @overload
    def NgtInstallationV2(resource_name: str,
                          args: NgtInstallationV2Args,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def NgtInstallationV2(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          ext_id: Optional[str] = None,
                          capablities: Optional[Sequence[str]] = None,
                          credential: Optional[NgtInstallationV2CredentialArgs] = None,
                          is_enabled: Optional[bool] = None,
                          reboot_preference: Optional[NgtInstallationV2RebootPreferenceArgs] = None)
    func NewNgtInstallationV2(ctx *Context, name string, args NgtInstallationV2Args, opts ...ResourceOption) (*NgtInstallationV2, error)
    public NgtInstallationV2(string name, NgtInstallationV2Args args, CustomResourceOptions? opts = null)
    public NgtInstallationV2(String name, NgtInstallationV2Args args)
    public NgtInstallationV2(String name, NgtInstallationV2Args args, CustomResourceOptions options)
    
    type: nutanix:NgtInstallationV2
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args NgtInstallationV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args NgtInstallationV2Args
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args NgtInstallationV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NgtInstallationV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NgtInstallationV2Args
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var ngtInstallationV2Resource = new Nutanix.NgtInstallationV2("ngtInstallationV2Resource", new()
    {
        ExtId = "string",
        Capablities = new[]
        {
            "string",
        },
        Credential = new Nutanix.Inputs.NgtInstallationV2CredentialArgs
        {
            Password = "string",
            Username = "string",
        },
        IsEnabled = false,
        RebootPreference = new Nutanix.Inputs.NgtInstallationV2RebootPreferenceArgs
        {
            ScheduleType = "string",
            Schedule = new Nutanix.Inputs.NgtInstallationV2RebootPreferenceScheduleArgs
            {
                StartTime = "string",
            },
        },
    });
    
    example, err := nutanix.NewNgtInstallationV2(ctx, "ngtInstallationV2Resource", &nutanix.NgtInstallationV2Args{
    	ExtId: pulumi.String("string"),
    	Capablities: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Credential: &nutanix.NgtInstallationV2CredentialArgs{
    		Password: pulumi.String("string"),
    		Username: pulumi.String("string"),
    	},
    	IsEnabled: pulumi.Bool(false),
    	RebootPreference: &nutanix.NgtInstallationV2RebootPreferenceArgs{
    		ScheduleType: pulumi.String("string"),
    		Schedule: &nutanix.NgtInstallationV2RebootPreferenceScheduleArgs{
    			StartTime: pulumi.String("string"),
    		},
    	},
    })
    
    var ngtInstallationV2Resource = new NgtInstallationV2("ngtInstallationV2Resource", NgtInstallationV2Args.builder()
        .extId("string")
        .capablities("string")
        .credential(NgtInstallationV2CredentialArgs.builder()
            .password("string")
            .username("string")
            .build())
        .isEnabled(false)
        .rebootPreference(NgtInstallationV2RebootPreferenceArgs.builder()
            .scheduleType("string")
            .schedule(NgtInstallationV2RebootPreferenceScheduleArgs.builder()
                .startTime("string")
                .build())
            .build())
        .build());
    
    ngt_installation_v2_resource = nutanix.NgtInstallationV2("ngtInstallationV2Resource",
        ext_id="string",
        capablities=["string"],
        credential={
            "password": "string",
            "username": "string",
        },
        is_enabled=False,
        reboot_preference={
            "schedule_type": "string",
            "schedule": {
                "start_time": "string",
            },
        })
    
    const ngtInstallationV2Resource = new nutanix.NgtInstallationV2("ngtInstallationV2Resource", {
        extId: "string",
        capablities: ["string"],
        credential: {
            password: "string",
            username: "string",
        },
        isEnabled: false,
        rebootPreference: {
            scheduleType: "string",
            schedule: {
                startTime: "string",
            },
        },
    });
    
    type: nutanix:NgtInstallationV2
    properties:
        capablities:
            - string
        credential:
            password: string
            username: string
        extId: string
        isEnabled: false
        rebootPreference:
            schedule:
                startTime: string
            scheduleType: string
    

    NgtInstallationV2 Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The NgtInstallationV2 resource accepts the following input properties:

    ExtId string
    uuid of the Virtual Machine.
    Capablities List<string>
    The list of the application names that are enabled on the guest VM. [SELF_SERVICE_RESTORE, VSS_SNAPSHOT]
    Credential PiersKarsenbarg.Nutanix.Inputs.NgtInstallationV2Credential
    Sign in credentials for the server.
    IsEnabled bool
    Indicates whether Nutanix Guest Tools is enabled or not.
    RebootPreference PiersKarsenbarg.Nutanix.Inputs.NgtInstallationV2RebootPreference
    The restart schedule after installing or upgrading Nutanix Guest Tools.
    ExtId string
    uuid of the Virtual Machine.
    Capablities []string
    The list of the application names that are enabled on the guest VM. [SELF_SERVICE_RESTORE, VSS_SNAPSHOT]
    Credential NgtInstallationV2CredentialArgs
    Sign in credentials for the server.
    IsEnabled bool
    Indicates whether Nutanix Guest Tools is enabled or not.
    RebootPreference NgtInstallationV2RebootPreferenceArgs
    The restart schedule after installing or upgrading Nutanix Guest Tools.
    extId String
    uuid of the Virtual Machine.
    capablities List<String>
    The list of the application names that are enabled on the guest VM. [SELF_SERVICE_RESTORE, VSS_SNAPSHOT]
    credential NgtInstallationV2Credential
    Sign in credentials for the server.
    isEnabled Boolean
    Indicates whether Nutanix Guest Tools is enabled or not.
    rebootPreference NgtInstallationV2RebootPreference
    The restart schedule after installing or upgrading Nutanix Guest Tools.
    extId string
    uuid of the Virtual Machine.
    capablities string[]
    The list of the application names that are enabled on the guest VM. [SELF_SERVICE_RESTORE, VSS_SNAPSHOT]
    credential NgtInstallationV2Credential
    Sign in credentials for the server.
    isEnabled boolean
    Indicates whether Nutanix Guest Tools is enabled or not.
    rebootPreference NgtInstallationV2RebootPreference
    The restart schedule after installing or upgrading Nutanix Guest Tools.
    ext_id str
    uuid of the Virtual Machine.
    capablities Sequence[str]
    The list of the application names that are enabled on the guest VM. [SELF_SERVICE_RESTORE, VSS_SNAPSHOT]
    credential NgtInstallationV2CredentialArgs
    Sign in credentials for the server.
    is_enabled bool
    Indicates whether Nutanix Guest Tools is enabled or not.
    reboot_preference NgtInstallationV2RebootPreferenceArgs
    The restart schedule after installing or upgrading Nutanix Guest Tools.
    extId String
    uuid of the Virtual Machine.
    capablities List<String>
    The list of the application names that are enabled on the guest VM. [SELF_SERVICE_RESTORE, VSS_SNAPSHOT]
    credential Property Map
    Sign in credentials for the server.
    isEnabled Boolean
    Indicates whether Nutanix Guest Tools is enabled or not.
    rebootPreference Property Map
    The restart schedule after installing or upgrading Nutanix Guest Tools.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NgtInstallationV2 resource produces the following output properties:

    AvailableVersion string
    Version of Nutanix Guest Tools available on the cluster.
    GuestOsVersion string
    Version of the operating system on the VM.
    Id string
    The provider-assigned unique ID for this managed resource.
    IsInstalled bool
    Indicates whether Nutanix Guest Tools is installed on the VM or not.
    IsIsoInserted bool
    Indicates whether Nutanix Guest Tools ISO is inserted or not.
    IsReachable bool
    Indicates whether the communication from VM to CVM is active or not.
    IsVmMobilityDriversInstalled bool
    Indicates whether the VM mobility drivers are installed on the VM or not.
    IsVssSnapshotCapable bool
    Indicates whether the VM is configured to take VSS snapshots through NGT or not.
    Version string
    Version of Nutanix Guest Tools installed on the VM.
    AvailableVersion string
    Version of Nutanix Guest Tools available on the cluster.
    GuestOsVersion string
    Version of the operating system on the VM.
    Id string
    The provider-assigned unique ID for this managed resource.
    IsInstalled bool
    Indicates whether Nutanix Guest Tools is installed on the VM or not.
    IsIsoInserted bool
    Indicates whether Nutanix Guest Tools ISO is inserted or not.
    IsReachable bool
    Indicates whether the communication from VM to CVM is active or not.
    IsVmMobilityDriversInstalled bool
    Indicates whether the VM mobility drivers are installed on the VM or not.
    IsVssSnapshotCapable bool
    Indicates whether the VM is configured to take VSS snapshots through NGT or not.
    Version string
    Version of Nutanix Guest Tools installed on the VM.
    availableVersion String
    Version of Nutanix Guest Tools available on the cluster.
    guestOsVersion String
    Version of the operating system on the VM.
    id String
    The provider-assigned unique ID for this managed resource.
    isInstalled Boolean
    Indicates whether Nutanix Guest Tools is installed on the VM or not.
    isIsoInserted Boolean
    Indicates whether Nutanix Guest Tools ISO is inserted or not.
    isReachable Boolean
    Indicates whether the communication from VM to CVM is active or not.
    isVmMobilityDriversInstalled Boolean
    Indicates whether the VM mobility drivers are installed on the VM or not.
    isVssSnapshotCapable Boolean
    Indicates whether the VM is configured to take VSS snapshots through NGT or not.
    version String
    Version of Nutanix Guest Tools installed on the VM.
    availableVersion string
    Version of Nutanix Guest Tools available on the cluster.
    guestOsVersion string
    Version of the operating system on the VM.
    id string
    The provider-assigned unique ID for this managed resource.
    isInstalled boolean
    Indicates whether Nutanix Guest Tools is installed on the VM or not.
    isIsoInserted boolean
    Indicates whether Nutanix Guest Tools ISO is inserted or not.
    isReachable boolean
    Indicates whether the communication from VM to CVM is active or not.
    isVmMobilityDriversInstalled boolean
    Indicates whether the VM mobility drivers are installed on the VM or not.
    isVssSnapshotCapable boolean
    Indicates whether the VM is configured to take VSS snapshots through NGT or not.
    version string
    Version of Nutanix Guest Tools installed on the VM.
    available_version str
    Version of Nutanix Guest Tools available on the cluster.
    guest_os_version str
    Version of the operating system on the VM.
    id str
    The provider-assigned unique ID for this managed resource.
    is_installed bool
    Indicates whether Nutanix Guest Tools is installed on the VM or not.
    is_iso_inserted bool
    Indicates whether Nutanix Guest Tools ISO is inserted or not.
    is_reachable bool
    Indicates whether the communication from VM to CVM is active or not.
    is_vm_mobility_drivers_installed bool
    Indicates whether the VM mobility drivers are installed on the VM or not.
    is_vss_snapshot_capable bool
    Indicates whether the VM is configured to take VSS snapshots through NGT or not.
    version str
    Version of Nutanix Guest Tools installed on the VM.
    availableVersion String
    Version of Nutanix Guest Tools available on the cluster.
    guestOsVersion String
    Version of the operating system on the VM.
    id String
    The provider-assigned unique ID for this managed resource.
    isInstalled Boolean
    Indicates whether Nutanix Guest Tools is installed on the VM or not.
    isIsoInserted Boolean
    Indicates whether Nutanix Guest Tools ISO is inserted or not.
    isReachable Boolean
    Indicates whether the communication from VM to CVM is active or not.
    isVmMobilityDriversInstalled Boolean
    Indicates whether the VM mobility drivers are installed on the VM or not.
    isVssSnapshotCapable Boolean
    Indicates whether the VM is configured to take VSS snapshots through NGT or not.
    version String
    Version of Nutanix Guest Tools installed on the VM.

    Look up Existing NgtInstallationV2 Resource

    Get an existing NgtInstallationV2 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: NgtInstallationV2State, opts?: CustomResourceOptions): NgtInstallationV2
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            available_version: Optional[str] = None,
            capablities: Optional[Sequence[str]] = None,
            credential: Optional[NgtInstallationV2CredentialArgs] = None,
            ext_id: Optional[str] = None,
            guest_os_version: Optional[str] = None,
            is_enabled: Optional[bool] = None,
            is_installed: Optional[bool] = None,
            is_iso_inserted: Optional[bool] = None,
            is_reachable: Optional[bool] = None,
            is_vm_mobility_drivers_installed: Optional[bool] = None,
            is_vss_snapshot_capable: Optional[bool] = None,
            reboot_preference: Optional[NgtInstallationV2RebootPreferenceArgs] = None,
            version: Optional[str] = None) -> NgtInstallationV2
    func GetNgtInstallationV2(ctx *Context, name string, id IDInput, state *NgtInstallationV2State, opts ...ResourceOption) (*NgtInstallationV2, error)
    public static NgtInstallationV2 Get(string name, Input<string> id, NgtInstallationV2State? state, CustomResourceOptions? opts = null)
    public static NgtInstallationV2 get(String name, Output<String> id, NgtInstallationV2State state, CustomResourceOptions options)
    resources:  _:    type: nutanix:NgtInstallationV2    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AvailableVersion string
    Version of Nutanix Guest Tools available on the cluster.
    Capablities List<string>
    The list of the application names that are enabled on the guest VM. [SELF_SERVICE_RESTORE, VSS_SNAPSHOT]
    Credential PiersKarsenbarg.Nutanix.Inputs.NgtInstallationV2Credential
    Sign in credentials for the server.
    ExtId string
    uuid of the Virtual Machine.
    GuestOsVersion string
    Version of the operating system on the VM.
    IsEnabled bool
    Indicates whether Nutanix Guest Tools is enabled or not.
    IsInstalled bool
    Indicates whether Nutanix Guest Tools is installed on the VM or not.
    IsIsoInserted bool
    Indicates whether Nutanix Guest Tools ISO is inserted or not.
    IsReachable bool
    Indicates whether the communication from VM to CVM is active or not.
    IsVmMobilityDriversInstalled bool
    Indicates whether the VM mobility drivers are installed on the VM or not.
    IsVssSnapshotCapable bool
    Indicates whether the VM is configured to take VSS snapshots through NGT or not.
    RebootPreference PiersKarsenbarg.Nutanix.Inputs.NgtInstallationV2RebootPreference
    The restart schedule after installing or upgrading Nutanix Guest Tools.
    Version string
    Version of Nutanix Guest Tools installed on the VM.
    AvailableVersion string
    Version of Nutanix Guest Tools available on the cluster.
    Capablities []string
    The list of the application names that are enabled on the guest VM. [SELF_SERVICE_RESTORE, VSS_SNAPSHOT]
    Credential NgtInstallationV2CredentialArgs
    Sign in credentials for the server.
    ExtId string
    uuid of the Virtual Machine.
    GuestOsVersion string
    Version of the operating system on the VM.
    IsEnabled bool
    Indicates whether Nutanix Guest Tools is enabled or not.
    IsInstalled bool
    Indicates whether Nutanix Guest Tools is installed on the VM or not.
    IsIsoInserted bool
    Indicates whether Nutanix Guest Tools ISO is inserted or not.
    IsReachable bool
    Indicates whether the communication from VM to CVM is active or not.
    IsVmMobilityDriversInstalled bool
    Indicates whether the VM mobility drivers are installed on the VM or not.
    IsVssSnapshotCapable bool
    Indicates whether the VM is configured to take VSS snapshots through NGT or not.
    RebootPreference NgtInstallationV2RebootPreferenceArgs
    The restart schedule after installing or upgrading Nutanix Guest Tools.
    Version string
    Version of Nutanix Guest Tools installed on the VM.
    availableVersion String
    Version of Nutanix Guest Tools available on the cluster.
    capablities List<String>
    The list of the application names that are enabled on the guest VM. [SELF_SERVICE_RESTORE, VSS_SNAPSHOT]
    credential NgtInstallationV2Credential
    Sign in credentials for the server.
    extId String
    uuid of the Virtual Machine.
    guestOsVersion String
    Version of the operating system on the VM.
    isEnabled Boolean
    Indicates whether Nutanix Guest Tools is enabled or not.
    isInstalled Boolean
    Indicates whether Nutanix Guest Tools is installed on the VM or not.
    isIsoInserted Boolean
    Indicates whether Nutanix Guest Tools ISO is inserted or not.
    isReachable Boolean
    Indicates whether the communication from VM to CVM is active or not.
    isVmMobilityDriversInstalled Boolean
    Indicates whether the VM mobility drivers are installed on the VM or not.
    isVssSnapshotCapable Boolean
    Indicates whether the VM is configured to take VSS snapshots through NGT or not.
    rebootPreference NgtInstallationV2RebootPreference
    The restart schedule after installing or upgrading Nutanix Guest Tools.
    version String
    Version of Nutanix Guest Tools installed on the VM.
    availableVersion string
    Version of Nutanix Guest Tools available on the cluster.
    capablities string[]
    The list of the application names that are enabled on the guest VM. [SELF_SERVICE_RESTORE, VSS_SNAPSHOT]
    credential NgtInstallationV2Credential
    Sign in credentials for the server.
    extId string
    uuid of the Virtual Machine.
    guestOsVersion string
    Version of the operating system on the VM.
    isEnabled boolean
    Indicates whether Nutanix Guest Tools is enabled or not.
    isInstalled boolean
    Indicates whether Nutanix Guest Tools is installed on the VM or not.
    isIsoInserted boolean
    Indicates whether Nutanix Guest Tools ISO is inserted or not.
    isReachable boolean
    Indicates whether the communication from VM to CVM is active or not.
    isVmMobilityDriversInstalled boolean
    Indicates whether the VM mobility drivers are installed on the VM or not.
    isVssSnapshotCapable boolean
    Indicates whether the VM is configured to take VSS snapshots through NGT or not.
    rebootPreference NgtInstallationV2RebootPreference
    The restart schedule after installing or upgrading Nutanix Guest Tools.
    version string
    Version of Nutanix Guest Tools installed on the VM.
    available_version str
    Version of Nutanix Guest Tools available on the cluster.
    capablities Sequence[str]
    The list of the application names that are enabled on the guest VM. [SELF_SERVICE_RESTORE, VSS_SNAPSHOT]
    credential NgtInstallationV2CredentialArgs
    Sign in credentials for the server.
    ext_id str
    uuid of the Virtual Machine.
    guest_os_version str
    Version of the operating system on the VM.
    is_enabled bool
    Indicates whether Nutanix Guest Tools is enabled or not.
    is_installed bool
    Indicates whether Nutanix Guest Tools is installed on the VM or not.
    is_iso_inserted bool
    Indicates whether Nutanix Guest Tools ISO is inserted or not.
    is_reachable bool
    Indicates whether the communication from VM to CVM is active or not.
    is_vm_mobility_drivers_installed bool
    Indicates whether the VM mobility drivers are installed on the VM or not.
    is_vss_snapshot_capable bool
    Indicates whether the VM is configured to take VSS snapshots through NGT or not.
    reboot_preference NgtInstallationV2RebootPreferenceArgs
    The restart schedule after installing or upgrading Nutanix Guest Tools.
    version str
    Version of Nutanix Guest Tools installed on the VM.
    availableVersion String
    Version of Nutanix Guest Tools available on the cluster.
    capablities List<String>
    The list of the application names that are enabled on the guest VM. [SELF_SERVICE_RESTORE, VSS_SNAPSHOT]
    credential Property Map
    Sign in credentials for the server.
    extId String
    uuid of the Virtual Machine.
    guestOsVersion String
    Version of the operating system on the VM.
    isEnabled Boolean
    Indicates whether Nutanix Guest Tools is enabled or not.
    isInstalled Boolean
    Indicates whether Nutanix Guest Tools is installed on the VM or not.
    isIsoInserted Boolean
    Indicates whether Nutanix Guest Tools ISO is inserted or not.
    isReachable Boolean
    Indicates whether the communication from VM to CVM is active or not.
    isVmMobilityDriversInstalled Boolean
    Indicates whether the VM mobility drivers are installed on the VM or not.
    isVssSnapshotCapable Boolean
    Indicates whether the VM is configured to take VSS snapshots through NGT or not.
    rebootPreference Property Map
    The restart schedule after installing or upgrading Nutanix Guest Tools.
    version String
    Version of Nutanix Guest Tools installed on the VM.

    Supporting Types

    NgtInstallationV2Credential, NgtInstallationV2CredentialArgs

    Password string
    • (Required) password to sign in to server
    Username string
    • (Required) username to sign in to server
    Password string
    • (Required) password to sign in to server
    Username string
    • (Required) username to sign in to server
    password String
    • (Required) password to sign in to server
    username String
    • (Required) username to sign in to server
    password string
    • (Required) password to sign in to server
    username string
    • (Required) username to sign in to server
    password str
    • (Required) password to sign in to server
    username str
    • (Required) username to sign in to server
    password String
    • (Required) password to sign in to server
    username String
    • (Required) username to sign in to server

    NgtInstallationV2RebootPreference, NgtInstallationV2RebootPreferenceArgs

    ScheduleType string
    • Schedule type for restart.
    • LATER : Schedule a restart for a specific time.
    • SKIP : Do not schedule a restart.
    • IMMEDIATE : Schedule an immediate restart.
    Schedule PiersKarsenbarg.Nutanix.Inputs.NgtInstallationV2RebootPreferenceSchedule
    • Restart schedule.
    ScheduleType string
    • Schedule type for restart.
    • LATER : Schedule a restart for a specific time.
    • SKIP : Do not schedule a restart.
    • IMMEDIATE : Schedule an immediate restart.
    Schedule NgtInstallationV2RebootPreferenceSchedule
    • Restart schedule.
    scheduleType String
    • Schedule type for restart.
    • LATER : Schedule a restart for a specific time.
    • SKIP : Do not schedule a restart.
    • IMMEDIATE : Schedule an immediate restart.
    schedule NgtInstallationV2RebootPreferenceSchedule
    • Restart schedule.
    scheduleType string
    • Schedule type for restart.
    • LATER : Schedule a restart for a specific time.
    • SKIP : Do not schedule a restart.
    • IMMEDIATE : Schedule an immediate restart.
    schedule NgtInstallationV2RebootPreferenceSchedule
    • Restart schedule.
    schedule_type str
    • Schedule type for restart.
    • LATER : Schedule a restart for a specific time.
    • SKIP : Do not schedule a restart.
    • IMMEDIATE : Schedule an immediate restart.
    schedule NgtInstallationV2RebootPreferenceSchedule
    • Restart schedule.
    scheduleType String
    • Schedule type for restart.
    • LATER : Schedule a restart for a specific time.
    • SKIP : Do not schedule a restart.
    • IMMEDIATE : Schedule an immediate restart.
    schedule Property Map
    • Restart schedule.

    NgtInstallationV2RebootPreferenceSchedule, NgtInstallationV2RebootPreferenceScheduleArgs

    StartTime string
    • The start time for a scheduled restart.
    StartTime string
    • The start time for a scheduled restart.
    startTime String
    • The start time for a scheduled restart.
    startTime string
    • The start time for a scheduled restart.
    start_time str
    • The start time for a scheduled restart.
    startTime String
    • The start time for a scheduled restart.

    Package Details

    Repository
    nutanix pierskarsenbarg/pulumi-nutanix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the nutanix Terraform Provider.
    nutanix logo
    Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg