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

nutanix.VmShutdownActionV2

Explore with Pulumi AI

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

    Collaborative reboot or shutdown of a Virtual Machine through the ACPI support in the operating system. Also, Collaborative reboot or shutdown of a Virtual Machine, requesting Nutanix Guest Tools to trigger a reboot or shutdown from within the VM.

    Create VmShutdownActionV2 Resource

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

    Constructor syntax

    new VmShutdownActionV2(name: string, args: VmShutdownActionV2Args, opts?: CustomResourceOptions);
    @overload
    def VmShutdownActionV2(resource_name: str,
                           args: VmShutdownActionV2Args,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def VmShutdownActionV2(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           action: Optional[str] = None,
                           ext_id: Optional[str] = None,
                           guest_power_state_transition_configs: Optional[Sequence[VmShutdownActionV2GuestPowerStateTransitionConfigArgs]] = None)
    func NewVmShutdownActionV2(ctx *Context, name string, args VmShutdownActionV2Args, opts ...ResourceOption) (*VmShutdownActionV2, error)
    public VmShutdownActionV2(string name, VmShutdownActionV2Args args, CustomResourceOptions? opts = null)
    public VmShutdownActionV2(String name, VmShutdownActionV2Args args)
    public VmShutdownActionV2(String name, VmShutdownActionV2Args args, CustomResourceOptions options)
    
    type: nutanix:VmShutdownActionV2
    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 VmShutdownActionV2Args
    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 VmShutdownActionV2Args
    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 VmShutdownActionV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VmShutdownActionV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VmShutdownActionV2Args
    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 vmShutdownActionV2Resource = new Nutanix.VmShutdownActionV2("vmShutdownActionV2Resource", new()
    {
        Action = "string",
        ExtId = "string",
        GuestPowerStateTransitionConfigs = new[]
        {
            new Nutanix.Inputs.VmShutdownActionV2GuestPowerStateTransitionConfigArgs
            {
                ShouldEnableScriptExec = false,
                ShouldFailOnScriptFailure = false,
            },
        },
    });
    
    example, err := nutanix.NewVmShutdownActionV2(ctx, "vmShutdownActionV2Resource", &nutanix.VmShutdownActionV2Args{
    	Action: pulumi.String("string"),
    	ExtId:  pulumi.String("string"),
    	GuestPowerStateTransitionConfigs: nutanix.VmShutdownActionV2GuestPowerStateTransitionConfigArray{
    		&nutanix.VmShutdownActionV2GuestPowerStateTransitionConfigArgs{
    			ShouldEnableScriptExec:    pulumi.Bool(false),
    			ShouldFailOnScriptFailure: pulumi.Bool(false),
    		},
    	},
    })
    
    var vmShutdownActionV2Resource = new VmShutdownActionV2("vmShutdownActionV2Resource", VmShutdownActionV2Args.builder()
        .action("string")
        .extId("string")
        .guestPowerStateTransitionConfigs(VmShutdownActionV2GuestPowerStateTransitionConfigArgs.builder()
            .shouldEnableScriptExec(false)
            .shouldFailOnScriptFailure(false)
            .build())
        .build());
    
    vm_shutdown_action_v2_resource = nutanix.VmShutdownActionV2("vmShutdownActionV2Resource",
        action="string",
        ext_id="string",
        guest_power_state_transition_configs=[{
            "should_enable_script_exec": False,
            "should_fail_on_script_failure": False,
        }])
    
    const vmShutdownActionV2Resource = new nutanix.VmShutdownActionV2("vmShutdownActionV2Resource", {
        action: "string",
        extId: "string",
        guestPowerStateTransitionConfigs: [{
            shouldEnableScriptExec: false,
            shouldFailOnScriptFailure: false,
        }],
    });
    
    type: nutanix:VmShutdownActionV2
    properties:
        action: string
        extId: string
        guestPowerStateTransitionConfigs:
            - shouldEnableScriptExec: false
              shouldFailOnScriptFailure: false
    

    VmShutdownActionV2 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 VmShutdownActionV2 resource accepts the following input properties:

    Action string
    It supports "shutdown", "guest_shutdown", "reboot", "guest_reboot".
    ExtId string
    The globally unique identifier of a VM. It should be of type UUID.
    GuestPowerStateTransitionConfigs List<PiersKarsenbarg.Nutanix.Inputs.VmShutdownActionV2GuestPowerStateTransitionConfig>
    Additional configuration for Nutanix Gust Tools power state transition. It should be only used with guest_shutdown or guest_reboot.
    Action string
    It supports "shutdown", "guest_shutdown", "reboot", "guest_reboot".
    ExtId string
    The globally unique identifier of a VM. It should be of type UUID.
    GuestPowerStateTransitionConfigs []VmShutdownActionV2GuestPowerStateTransitionConfigArgs
    Additional configuration for Nutanix Gust Tools power state transition. It should be only used with guest_shutdown or guest_reboot.
    action String
    It supports "shutdown", "guest_shutdown", "reboot", "guest_reboot".
    extId String
    The globally unique identifier of a VM. It should be of type UUID.
    guestPowerStateTransitionConfigs List<VmShutdownActionV2GuestPowerStateTransitionConfig>
    Additional configuration for Nutanix Gust Tools power state transition. It should be only used with guest_shutdown or guest_reboot.
    action string
    It supports "shutdown", "guest_shutdown", "reboot", "guest_reboot".
    extId string
    The globally unique identifier of a VM. It should be of type UUID.
    guestPowerStateTransitionConfigs VmShutdownActionV2GuestPowerStateTransitionConfig[]
    Additional configuration for Nutanix Gust Tools power state transition. It should be only used with guest_shutdown or guest_reboot.
    action str
    It supports "shutdown", "guest_shutdown", "reboot", "guest_reboot".
    ext_id str
    The globally unique identifier of a VM. It should be of type UUID.
    guest_power_state_transition_configs Sequence[VmShutdownActionV2GuestPowerStateTransitionConfigArgs]
    Additional configuration for Nutanix Gust Tools power state transition. It should be only used with guest_shutdown or guest_reboot.
    action String
    It supports "shutdown", "guest_shutdown", "reboot", "guest_reboot".
    extId String
    The globally unique identifier of a VM. It should be of type UUID.
    guestPowerStateTransitionConfigs List<Property Map>
    Additional configuration for Nutanix Gust Tools power state transition. It should be only used with guest_shutdown or guest_reboot.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing VmShutdownActionV2 Resource

    Get an existing VmShutdownActionV2 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?: VmShutdownActionV2State, opts?: CustomResourceOptions): VmShutdownActionV2
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            ext_id: Optional[str] = None,
            guest_power_state_transition_configs: Optional[Sequence[VmShutdownActionV2GuestPowerStateTransitionConfigArgs]] = None) -> VmShutdownActionV2
    func GetVmShutdownActionV2(ctx *Context, name string, id IDInput, state *VmShutdownActionV2State, opts ...ResourceOption) (*VmShutdownActionV2, error)
    public static VmShutdownActionV2 Get(string name, Input<string> id, VmShutdownActionV2State? state, CustomResourceOptions? opts = null)
    public static VmShutdownActionV2 get(String name, Output<String> id, VmShutdownActionV2State state, CustomResourceOptions options)
    resources:  _:    type: nutanix:VmShutdownActionV2    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:
    Action string
    It supports "shutdown", "guest_shutdown", "reboot", "guest_reboot".
    ExtId string
    The globally unique identifier of a VM. It should be of type UUID.
    GuestPowerStateTransitionConfigs List<PiersKarsenbarg.Nutanix.Inputs.VmShutdownActionV2GuestPowerStateTransitionConfig>
    Additional configuration for Nutanix Gust Tools power state transition. It should be only used with guest_shutdown or guest_reboot.
    Action string
    It supports "shutdown", "guest_shutdown", "reboot", "guest_reboot".
    ExtId string
    The globally unique identifier of a VM. It should be of type UUID.
    GuestPowerStateTransitionConfigs []VmShutdownActionV2GuestPowerStateTransitionConfigArgs
    Additional configuration for Nutanix Gust Tools power state transition. It should be only used with guest_shutdown or guest_reboot.
    action String
    It supports "shutdown", "guest_shutdown", "reboot", "guest_reboot".
    extId String
    The globally unique identifier of a VM. It should be of type UUID.
    guestPowerStateTransitionConfigs List<VmShutdownActionV2GuestPowerStateTransitionConfig>
    Additional configuration for Nutanix Gust Tools power state transition. It should be only used with guest_shutdown or guest_reboot.
    action string
    It supports "shutdown", "guest_shutdown", "reboot", "guest_reboot".
    extId string
    The globally unique identifier of a VM. It should be of type UUID.
    guestPowerStateTransitionConfigs VmShutdownActionV2GuestPowerStateTransitionConfig[]
    Additional configuration for Nutanix Gust Tools power state transition. It should be only used with guest_shutdown or guest_reboot.
    action str
    It supports "shutdown", "guest_shutdown", "reboot", "guest_reboot".
    ext_id str
    The globally unique identifier of a VM. It should be of type UUID.
    guest_power_state_transition_configs Sequence[VmShutdownActionV2GuestPowerStateTransitionConfigArgs]
    Additional configuration for Nutanix Gust Tools power state transition. It should be only used with guest_shutdown or guest_reboot.
    action String
    It supports "shutdown", "guest_shutdown", "reboot", "guest_reboot".
    extId String
    The globally unique identifier of a VM. It should be of type UUID.
    guestPowerStateTransitionConfigs List<Property Map>
    Additional configuration for Nutanix Gust Tools power state transition. It should be only used with guest_shutdown or guest_reboot.

    Supporting Types

    VmShutdownActionV2GuestPowerStateTransitionConfig, VmShutdownActionV2GuestPowerStateTransitionConfigArgs

    ShouldEnableScriptExec bool
    Indicates whether to run the set script before the VM shutdowns/restarts.
    ShouldFailOnScriptFailure bool

    Indicates whether to abort VM shutdown/restart if the script fails.

    See detailed information in Nutanix VMs Power Action V4.

    ShouldEnableScriptExec bool
    Indicates whether to run the set script before the VM shutdowns/restarts.
    ShouldFailOnScriptFailure bool

    Indicates whether to abort VM shutdown/restart if the script fails.

    See detailed information in Nutanix VMs Power Action V4.

    shouldEnableScriptExec Boolean
    Indicates whether to run the set script before the VM shutdowns/restarts.
    shouldFailOnScriptFailure Boolean

    Indicates whether to abort VM shutdown/restart if the script fails.

    See detailed information in Nutanix VMs Power Action V4.

    shouldEnableScriptExec boolean
    Indicates whether to run the set script before the VM shutdowns/restarts.
    shouldFailOnScriptFailure boolean

    Indicates whether to abort VM shutdown/restart if the script fails.

    See detailed information in Nutanix VMs Power Action V4.

    should_enable_script_exec bool
    Indicates whether to run the set script before the VM shutdowns/restarts.
    should_fail_on_script_failure bool

    Indicates whether to abort VM shutdown/restart if the script fails.

    See detailed information in Nutanix VMs Power Action V4.

    shouldEnableScriptExec Boolean
    Indicates whether to run the set script before the VM shutdowns/restarts.
    shouldFailOnScriptFailure Boolean

    Indicates whether to abort VM shutdown/restart if the script fails.

    See detailed information in Nutanix VMs Power Action V4.

    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